From 3a4018346bc7a86a5734e9513ec5656acdbc13b1 Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Mon, 31 Mar 2025 12:47:26 +0200 Subject: [PATCH 1/8] Allow more types of commands in FORK branches --- .../src/main/resources/fork.csv-spec | 138 ++ .../xpack/esql/action/ForkIT.java | 80 ++ .../esql/src/main/antlr/EsqlBaseParser.g4 | 12 +- .../xpack/esql/analysis/Analyzer.java | 48 +- .../xpack/esql/parser/EsqlBaseParser.interp | 2 +- .../xpack/esql/parser/EsqlBaseParser.java | 1174 +++++++++-------- .../xpack/esql/plan/logical/Fork.java | 107 +- .../xpack/esql/plan/logical/Merge.java | 13 +- 8 files changed, 1009 insertions(+), 565 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec index b36c7797877f9..2daf4bb96f26e 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec @@ -92,3 +92,141 @@ fork1 | 10052 fork2 | 10099 fork2 | 10100 ; + +forkWithEvals +required_capability: fork + +FROM employees +| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | EVAL x = "abc" | EVAL y = 1) + (WHERE emp_no == 10081 OR emp_no == 10087 | EVAL x = "def" | EVAL z = 2) +| KEEP _fork, emp_no, x, y, z +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | x:keyword | y:integer | z:integer +fork1 | 10048 | abc | 1 | null +fork1 | 10081 | abc | 1 | null +fork2 | 10081 | null | null | 2 +fork2 | 10087 | null | null | 2 +; + +forkWithKeep-Ignore +required_capability: fork + +FROM employees +| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | KEEP emp_no, first_name) + (WHERE emp_no == 10081 OR emp_no == 10087 | KEEP emp_no) +| SORT _fork, emp_no, first_name +; + +_fork:keyword | emp_no:integer | first_name:keyword +1 | 2 | 3 +; + + +forkWithStats +required_capability: fork + +FROM employees +| FORK (WHERE emp_no == 10048 OR emp_no == 10081) + (WHERE emp_no == 10081 OR emp_no == 10087) + (STATS x = COUNT(*), y = MAX(emp_no), z = MIN(emp_no)) + (STATS x = COUNT(*), y = MIN(emp_no)) +| KEEP _fork, emp_no, x, y, z +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | x:long | y:integer | z:integer +fork1 | 10048 | null | null | null +fork1 | 10081 | null | null | null +fork2 | 10081 | null | null | null +fork2 | 10087 | null | null | null +fork3 | null | 100 | 10100 | 10001 +fork4 | null | null | null | null +; + +forkWithDrop-Ignore +required_capability: fork + +FROM employees +| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | DROP last_name ) + (WHERE emp_no == 10081 OR emp_no == 10087 | DROP first_name ) +| KEEP _fork, emp_no, first_name, last_name +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | first_name:keyword | last_name:keyword +1 | 2 | 3 | 4 +; + +forkWithRename-Ignore +required_capability: fork + +FROM employees +| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | RENAME first_name AS x, last_name AS y) + (WHERE emp_no == 10081 OR emp_no == 10087 | RENAME last_name AS x) +| KEEP _fork, emp_no, first_name, last_name +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | first_name:keyword | last_name:keyword +1 | 2 | 3 | 4 +; + +forkWithGrok-Ignore +required_capability: fork + +FROM employees +| WHERE emp_no == 10048 OR emp_no == 10081 +| FORK (EVAL a = CONCAT(first_name, " ", emp_no::keyword, " ", last_name) + | GROK a "%{WORD:x} %{INTEGER:y} %{WORD:z}") + (EVAL b = CONCAT(last_name, " ", emp_no::keyword, " ", first_name) + | GROK b "%{WORD:x} %{INTEGER:y} %{WORD:w}") +| KEEP _fork, emp_no, x, y, z, w +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | x:keyword | y:integer | z:keyword | x:keyword +1 | 2 | 3 | 4 | 5 | 6 +; + +forkWithDissect +FROM employees +| WHERE emp_no == 10048 OR emp_no == 10081 +| FORK (EVAL a = CONCAT(first_name, " ", emp_no::keyword, " ", last_name) + | DISSECT a "%{x} %{y} %{z}" ) + (EVAL b = CONCAT(last_name, " ", emp_no::keyword, " ", first_name) + | DISSECT b "%{x} %{y} %{w}" ) +| KEEP _fork, emp_no, x, y, z, w +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | x:keyword | y:keyword | z:keyword | w:keyword +fork1 | 10048 | Florian | 10048 | Syrotiuk | null +fork1 | 10081 | Zhongwei | 10081 | Rosen | null +fork2 | 10048 | null | null | null | Florian +fork2 | 10081 | null | null | null | Zhongwei +; + +forkWithMixOfCommands +FROM employees +| WHERE emp_no == 10048 OR emp_no == 10081 +| FORK ( EVAL a = CONCAT(first_name, " ", emp_no::keyword, " ", last_name) + | DISSECT a "%{x} %{y} %{z}" + | EVAL y = y::integer ) + ( STATS x = COUNT(*), y = MAX(emp_no), z = MIN(emp_no) ) + ( SORT emp_no ASC | LIMIT 2 | EVAL x = last_name ) + ( EVAL x = "abc" | EVAL y = 1 ) +| KEEP _fork, emp_no, x, y, z, a +| SORT _fork, emp_no +; + +_fork:keyword | emp_no:integer | x:keyword | y:integer | z:keyword | a:keyword +fork1 | 10048 | Florian | 10048 | Syrotiuk | Florian 10048 Syrotiuk +fork1 | 10081 | Zhongwei | 10081 | Rosen | Zhongwei 10081 Rosen +fork2 | null | null | null | null | null +fork3 | 10048 | null | null | null | null +fork3 | 10081 | null | null | null | null +fork4 | 10048 | null | null | null | null +fork4 | 10081 | null | null | null | null +; diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java index 4c9fd5bd62ef0..2cb07543880d3 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java @@ -14,6 +14,7 @@ import org.elasticsearch.xpack.esql.parser.ParsingException; import org.junit.Before; +import java.util.Arrays; import java.util.Iterator; import java.util.List; import java.util.function.Predicate; @@ -501,6 +502,72 @@ public void testSubqueryWithoutLimitOnly() { // this should } } + public void testWithEvalSimple() { + var query = """ + FROM test + | FORK ( EVAL a = 1 ) + ( EVAL a = 2 ) + | KEEP a, _fork + """; + + try (var resp = run(query)) { + assertColumnNames(resp.columns(), List.of("a", "_fork")); + } + } + + public void testWithEvalDifferentOutputs() { + var query = """ + FROM test + | FORK ( EVAL a = 1 ) + ( EVAL b = 2 ) + | KEEP a, b, _fork + """; + try (var resp = run(query)) { + assertColumnNames(resp.columns(), List.of("a", "b", "_fork")); + } + } + + public void testWithStatsSimple() { + var query = """ + FROM test + | FORK (STATS x=COUNT(*), y=VALUES(id)) + (WHERE id == 2) + | KEEP _fork, x, y, id + """; + try (var resp = run(query)) { + assertColumnNames(resp.columns(), List.of("_fork", "x", "y", "id")); + Iterable> expectedValues = List.of( + Arrays.stream(new Object[] { "fork1", 6L, List.of(1, 2, 3, 4, 5, 6), null }).toList(), + Arrays.stream(new Object[] { "fork2", null, null, 2 }).toList() + ); + assertValues(resp.values(), expectedValues); + } + } + + public void testWithMultipleCommandsAndBranches() { + var query = """ + FROM test METADATA _score + | FORK (STATS x=COUNT(*), y=VALUES(id) | MV_EXPAND y ) + (WHERE content:"fox" | EVAL new_score = _score + 20 | SORT new_score DESC) + (WHERE content:"dog" | EVAL new_score = _score + 1 | SORT new_score DESC | LIMIT 2 ) + | KEEP _fork, new_score, _score, x, y + """; + // fails with a syntax error, does not like MV_EXPAND + // run(query); + } + + public void testWithEvalWithConflictingTypes() { + var query = """ + FROM test + | FORK ( EVAL a = 1 ) + ( EVAL a = "aaaa" ) + | KEEP a, _fork + """; + + var e = expectThrows(VerificationException.class, () -> run(query)); + assertTrue(e.getMessage().contains("Column [a] has conflicting data types")); + } + public void testSubqueryWithUnknownField() { var query = """ FROM test @@ -565,6 +632,19 @@ public void testSubqueryWithUnknownFieldInSort() { assertTrue(e.getMessage().contains("Unknown column [bar]")); } + public void testSubqueryWithUnknownFieldInEval() { + var query = """ + FROM test + | FORK + ( EVAL x = baz + 1) + ( WHERE content:"cat" ) + | KEEP _fork, id, content + | SORT _fork, id + """; + var e = expectThrows(VerificationException.class, () -> run(query)); + assertTrue(e.getMessage().contains("Unknown column [baz]")); + } + public void testOneSubQuery() { var query = """ FROM test diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 407021e5db56d..71f3e96f07a88 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -280,9 +280,17 @@ forkSubQueryCommand ; forkSubQueryProcessingCommand - : whereCommand - | sortCommand + : evalCommand + | whereCommand + | keepCommand | limitCommand + | statsCommand + | sortCommand + | dropCommand + | renameCommand + | dissectCommand + | grokCommand + | mvExpandCommand ; rrfCommand diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index 384d556165ecd..2bdfa63445bb1 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -21,6 +21,7 @@ import org.elasticsearch.xpack.esql.core.capabilities.Resolvables; import org.elasticsearch.xpack.esql.core.expression.Alias; import org.elasticsearch.xpack.esql.core.expression.Attribute; +import org.elasticsearch.xpack.esql.core.expression.AttributeSet; import org.elasticsearch.xpack.esql.core.expression.EmptyAttribute; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.Expressions; @@ -695,10 +696,53 @@ private Join resolveLookupJoin(LookupJoin join) { private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { List subPlans = fork.subPlans(); - List newSubPlans = new ArrayList<>(); + List resolvedSubPlans = new ArrayList<>(); + boolean unresolved = false; + + // first resolve the subplans for (var logicalPlan : subPlans) { - newSubPlans.add(logicalPlan.transformUp(LogicalPlan.class, p -> p.childrenResolved() == false ? p : rule(p, context))); + Source source = logicalPlan.source(); + LogicalPlan newSubPlan = logicalPlan.transformUp( + LogicalPlan.class, + p -> p.childrenResolved() == false ? p : rule(p, context) + ); + if (newSubPlan.resolved() == false) { + unresolved = true; + } + resolvedSubPlans.add(newSubPlan); } + + fork = new Fork(fork.source(), fork.child(), resolvedSubPlans); + + // if any of the sub plans is still unresolved we should just return before + // we attempt to align the outputs of the sub plans + if (unresolved) { + return fork; + } + + // we align the outputs of the sub plans such that they have the same columns + boolean changed = false; + List newSubPlans = new ArrayList<>(); + for (var logicalPlan : resolvedSubPlans) { + Source source = logicalPlan.source(); + + AttributeSet missing = fork.outputSet().subtract(logicalPlan.outputSet()); + List aliases = missing.stream() + .map(attr -> new Alias(source, attr.name(), new Literal(source, null, attr.dataType()))) + .collect(Collectors.toList()); + ; + + if (aliases.size() > 0) { + logicalPlan = new Eval(source, logicalPlan, aliases); + changed = true; + } + + newSubPlans.add(logicalPlan); + } + if (changed == false) { + return fork; + } + return new Fork(fork.source(), fork.child(), newSubPlans); } 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 d35df04f6fe34..167816d8a75f1 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 @@ -357,4 +357,4 @@ joinPredicate atn: -[4, 1, 136, 722, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 326, 8, 25, 1, 26, 1, 26, 3, 26, 330, 8, 26, 1, 27, 1, 27, 3, 27, 334, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 339, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 348, 8, 30, 10, 30, 12, 30, 351, 9, 30, 1, 31, 1, 31, 3, 31, 355, 8, 31, 1, 31, 1, 31, 3, 31, 359, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 371, 8, 34, 10, 34, 12, 34, 374, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 384, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 396, 8, 39, 10, 39, 12, 39, 399, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 419, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 425, 8, 44, 10, 44, 12, 44, 428, 9, 44, 3, 44, 430, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 435, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 454, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 461, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 470, 8, 51, 11, 51, 12, 51, 471, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 484, 8, 53, 10, 53, 12, 53, 487, 9, 53, 1, 54, 1, 54, 1, 54, 3, 54, 492, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 503, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 510, 8, 56, 10, 56, 12, 56, 513, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 520, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 525, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 533, 8, 56, 10, 56, 12, 56, 536, 9, 56, 1, 57, 1, 57, 3, 57, 540, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 547, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 552, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 557, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 567, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 573, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 581, 8, 60, 10, 60, 12, 60, 584, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 594, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 599, 8, 61, 10, 61, 12, 61, 602, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 610, 8, 62, 10, 62, 12, 62, 613, 9, 62, 1, 62, 1, 62, 3, 62, 617, 8, 62, 3, 62, 619, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 629, 8, 64, 10, 64, 12, 64, 632, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 653, 8, 66, 10, 66, 12, 66, 656, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 664, 8, 66, 10, 66, 12, 66, 667, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 675, 8, 66, 10, 66, 12, 66, 678, 9, 66, 1, 66, 1, 66, 3, 66, 682, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 688, 8, 68, 1, 69, 3, 69, 691, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 696, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 715, 8, 75, 10, 75, 12, 75, 718, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 748, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 325, 1, 0, 0, 0, 52, 329, 1, 0, 0, 0, 54, 333, 1, 0, 0, 0, 56, 338, 1, 0, 0, 0, 58, 340, 1, 0, 0, 0, 60, 343, 1, 0, 0, 0, 62, 352, 1, 0, 0, 0, 64, 360, 1, 0, 0, 0, 66, 363, 1, 0, 0, 0, 68, 366, 1, 0, 0, 0, 70, 375, 1, 0, 0, 0, 72, 379, 1, 0, 0, 0, 74, 385, 1, 0, 0, 0, 76, 389, 1, 0, 0, 0, 78, 392, 1, 0, 0, 0, 80, 400, 1, 0, 0, 0, 82, 404, 1, 0, 0, 0, 84, 407, 1, 0, 0, 0, 86, 411, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 434, 1, 0, 0, 0, 92, 438, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 449, 1, 0, 0, 0, 98, 462, 1, 0, 0, 0, 100, 465, 1, 0, 0, 0, 102, 469, 1, 0, 0, 0, 104, 473, 1, 0, 0, 0, 106, 477, 1, 0, 0, 0, 108, 491, 1, 0, 0, 0, 110, 493, 1, 0, 0, 0, 112, 524, 1, 0, 0, 0, 114, 551, 1, 0, 0, 0, 116, 553, 1, 0, 0, 0, 118, 566, 1, 0, 0, 0, 120, 572, 1, 0, 0, 0, 122, 593, 1, 0, 0, 0, 124, 603, 1, 0, 0, 0, 126, 622, 1, 0, 0, 0, 128, 624, 1, 0, 0, 0, 130, 635, 1, 0, 0, 0, 132, 681, 1, 0, 0, 0, 134, 683, 1, 0, 0, 0, 136, 687, 1, 0, 0, 0, 138, 690, 1, 0, 0, 0, 140, 695, 1, 0, 0, 0, 142, 699, 1, 0, 0, 0, 144, 701, 1, 0, 0, 0, 146, 703, 1, 0, 0, 0, 148, 708, 1, 0, 0, 0, 150, 710, 1, 0, 0, 0, 152, 719, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 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, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 326, 5, 125, 0, 0, 323, 326, 3, 52, 26, 0, 324, 326, 3, 54, 27, 0, 325, 322, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 51, 1, 0, 0, 0, 327, 330, 5, 74, 0, 0, 328, 330, 5, 92, 0, 0, 329, 327, 1, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 53, 1, 0, 0, 0, 331, 334, 5, 91, 0, 0, 332, 334, 5, 93, 0, 0, 333, 331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 55, 1, 0, 0, 0, 335, 339, 3, 48, 24, 0, 336, 339, 3, 52, 26, 0, 337, 339, 3, 54, 27, 0, 338, 335, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 57, 1, 0, 0, 0, 340, 341, 5, 10, 0, 0, 341, 342, 5, 53, 0, 0, 342, 59, 1, 0, 0, 0, 343, 344, 5, 12, 0, 0, 344, 349, 3, 62, 31, 0, 345, 346, 5, 61, 0, 0, 346, 348, 3, 62, 31, 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, 61, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 3, 112, 56, 0, 353, 355, 7, 2, 0, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 72, 0, 0, 357, 359, 7, 3, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 63, 1, 0, 0, 0, 360, 361, 5, 26, 0, 0, 361, 362, 3, 46, 23, 0, 362, 65, 1, 0, 0, 0, 363, 364, 5, 25, 0, 0, 364, 365, 3, 46, 23, 0, 365, 67, 1, 0, 0, 0, 366, 367, 5, 29, 0, 0, 367, 372, 3, 70, 35, 0, 368, 369, 5, 61, 0, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 69, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 376, 3, 44, 22, 0, 376, 377, 5, 129, 0, 0, 377, 378, 3, 44, 22, 0, 378, 71, 1, 0, 0, 0, 379, 380, 5, 7, 0, 0, 380, 381, 3, 122, 61, 0, 381, 383, 3, 142, 71, 0, 382, 384, 3, 78, 39, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 73, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 122, 61, 0, 387, 388, 3, 142, 71, 0, 388, 75, 1, 0, 0, 0, 389, 390, 5, 24, 0, 0, 390, 391, 3, 42, 21, 0, 391, 77, 1, 0, 0, 0, 392, 397, 3, 80, 40, 0, 393, 394, 5, 61, 0, 0, 394, 396, 3, 80, 40, 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, 79, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 48, 24, 0, 401, 402, 5, 58, 0, 0, 402, 403, 3, 132, 66, 0, 403, 81, 1, 0, 0, 0, 404, 405, 5, 6, 0, 0, 405, 406, 3, 84, 42, 0, 406, 83, 1, 0, 0, 0, 407, 408, 5, 94, 0, 0, 408, 409, 3, 2, 1, 0, 409, 410, 5, 95, 0, 0, 410, 85, 1, 0, 0, 0, 411, 412, 5, 30, 0, 0, 412, 413, 5, 133, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 5, 5, 0, 0, 415, 418, 5, 37, 0, 0, 416, 417, 5, 35, 0, 0, 417, 419, 3, 44, 22, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 429, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 90, 45, 0, 422, 423, 5, 61, 0, 0, 423, 425, 3, 90, 45, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 89, 1, 0, 0, 0, 431, 432, 3, 44, 22, 0, 432, 433, 5, 58, 0, 0, 433, 435, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 3, 44, 22, 0, 437, 91, 1, 0, 0, 0, 438, 439, 5, 23, 0, 0, 439, 440, 3, 24, 12, 0, 440, 441, 5, 35, 0, 0, 441, 442, 3, 46, 23, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 15, 0, 0, 444, 447, 3, 38, 19, 0, 445, 446, 5, 55, 0, 0, 446, 448, 3, 14, 7, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 95, 1, 0, 0, 0, 449, 450, 5, 4, 0, 0, 450, 453, 3, 42, 21, 0, 451, 452, 5, 35, 0, 0, 452, 454, 3, 42, 21, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 460, 1, 0, 0, 0, 455, 456, 5, 129, 0, 0, 456, 457, 3, 42, 21, 0, 457, 458, 5, 61, 0, 0, 458, 459, 3, 42, 21, 0, 459, 461, 1, 0, 0, 0, 460, 455, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 97, 1, 0, 0, 0, 462, 463, 5, 27, 0, 0, 463, 464, 3, 46, 23, 0, 464, 99, 1, 0, 0, 0, 465, 466, 5, 18, 0, 0, 466, 467, 3, 102, 51, 0, 467, 101, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 103, 1, 0, 0, 0, 473, 474, 5, 96, 0, 0, 474, 475, 3, 106, 53, 0, 475, 476, 5, 97, 0, 0, 476, 105, 1, 0, 0, 0, 477, 478, 6, 53, -1, 0, 478, 479, 3, 108, 54, 0, 479, 485, 1, 0, 0, 0, 480, 481, 10, 1, 0, 0, 481, 482, 5, 51, 0, 0, 482, 484, 3, 108, 54, 0, 483, 480, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 107, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 492, 3, 8, 4, 0, 489, 492, 3, 60, 30, 0, 490, 492, 3, 58, 29, 0, 491, 488, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 490, 1, 0, 0, 0, 492, 109, 1, 0, 0, 0, 493, 494, 5, 28, 0, 0, 494, 111, 1, 0, 0, 0, 495, 496, 6, 56, -1, 0, 496, 497, 5, 70, 0, 0, 497, 525, 3, 112, 56, 8, 498, 525, 3, 118, 59, 0, 499, 525, 3, 114, 57, 0, 500, 502, 3, 118, 59, 0, 501, 503, 5, 70, 0, 0, 502, 501, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 5, 66, 0, 0, 505, 506, 5, 96, 0, 0, 506, 511, 3, 118, 59, 0, 507, 508, 5, 61, 0, 0, 508, 510, 3, 118, 59, 0, 509, 507, 1, 0, 0, 0, 510, 513, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 514, 515, 5, 97, 0, 0, 515, 525, 1, 0, 0, 0, 516, 517, 3, 118, 59, 0, 517, 519, 5, 67, 0, 0, 518, 520, 5, 70, 0, 0, 519, 518, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 5, 71, 0, 0, 522, 525, 1, 0, 0, 0, 523, 525, 3, 116, 58, 0, 524, 495, 1, 0, 0, 0, 524, 498, 1, 0, 0, 0, 524, 499, 1, 0, 0, 0, 524, 500, 1, 0, 0, 0, 524, 516, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 534, 1, 0, 0, 0, 526, 527, 10, 5, 0, 0, 527, 528, 5, 56, 0, 0, 528, 533, 3, 112, 56, 6, 529, 530, 10, 4, 0, 0, 530, 531, 5, 73, 0, 0, 531, 533, 3, 112, 56, 5, 532, 526, 1, 0, 0, 0, 532, 529, 1, 0, 0, 0, 533, 536, 1, 0, 0, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 113, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 537, 539, 3, 118, 59, 0, 538, 540, 5, 70, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 5, 69, 0, 0, 542, 543, 3, 142, 71, 0, 543, 552, 1, 0, 0, 0, 544, 546, 3, 118, 59, 0, 545, 547, 5, 70, 0, 0, 546, 545, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 75, 0, 0, 549, 550, 3, 142, 71, 0, 550, 552, 1, 0, 0, 0, 551, 537, 1, 0, 0, 0, 551, 544, 1, 0, 0, 0, 552, 115, 1, 0, 0, 0, 553, 556, 3, 42, 21, 0, 554, 555, 5, 59, 0, 0, 555, 557, 3, 10, 5, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 5, 60, 0, 0, 559, 560, 3, 132, 66, 0, 560, 117, 1, 0, 0, 0, 561, 567, 3, 120, 60, 0, 562, 563, 3, 120, 60, 0, 563, 564, 3, 144, 72, 0, 564, 565, 3, 120, 60, 0, 565, 567, 1, 0, 0, 0, 566, 561, 1, 0, 0, 0, 566, 562, 1, 0, 0, 0, 567, 119, 1, 0, 0, 0, 568, 569, 6, 60, -1, 0, 569, 573, 3, 122, 61, 0, 570, 571, 7, 4, 0, 0, 571, 573, 3, 120, 60, 3, 572, 568, 1, 0, 0, 0, 572, 570, 1, 0, 0, 0, 573, 582, 1, 0, 0, 0, 574, 575, 10, 2, 0, 0, 575, 576, 7, 5, 0, 0, 576, 581, 3, 120, 60, 3, 577, 578, 10, 1, 0, 0, 578, 579, 7, 4, 0, 0, 579, 581, 3, 120, 60, 2, 580, 574, 1, 0, 0, 0, 580, 577, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 121, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 586, 6, 61, -1, 0, 586, 594, 3, 132, 66, 0, 587, 594, 3, 42, 21, 0, 588, 594, 3, 124, 62, 0, 589, 590, 5, 96, 0, 0, 590, 591, 3, 112, 56, 0, 591, 592, 5, 97, 0, 0, 592, 594, 1, 0, 0, 0, 593, 585, 1, 0, 0, 0, 593, 587, 1, 0, 0, 0, 593, 588, 1, 0, 0, 0, 593, 589, 1, 0, 0, 0, 594, 600, 1, 0, 0, 0, 595, 596, 10, 1, 0, 0, 596, 597, 5, 59, 0, 0, 597, 599, 3, 10, 5, 0, 598, 595, 1, 0, 0, 0, 599, 602, 1, 0, 0, 0, 600, 598, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 123, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 603, 604, 3, 126, 63, 0, 604, 618, 5, 96, 0, 0, 605, 619, 5, 86, 0, 0, 606, 611, 3, 112, 56, 0, 607, 608, 5, 61, 0, 0, 608, 610, 3, 112, 56, 0, 609, 607, 1, 0, 0, 0, 610, 613, 1, 0, 0, 0, 611, 609, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 616, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 614, 615, 5, 61, 0, 0, 615, 617, 3, 128, 64, 0, 616, 614, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 619, 1, 0, 0, 0, 618, 605, 1, 0, 0, 0, 618, 606, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 5, 97, 0, 0, 621, 125, 1, 0, 0, 0, 622, 623, 3, 56, 28, 0, 623, 127, 1, 0, 0, 0, 624, 625, 5, 89, 0, 0, 625, 630, 3, 130, 65, 0, 626, 627, 5, 61, 0, 0, 627, 629, 3, 130, 65, 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, 633, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 90, 0, 0, 634, 129, 1, 0, 0, 0, 635, 636, 3, 142, 71, 0, 636, 637, 5, 60, 0, 0, 637, 638, 3, 132, 66, 0, 638, 131, 1, 0, 0, 0, 639, 682, 5, 71, 0, 0, 640, 641, 3, 140, 70, 0, 641, 642, 5, 98, 0, 0, 642, 682, 1, 0, 0, 0, 643, 682, 3, 138, 69, 0, 644, 682, 3, 140, 70, 0, 645, 682, 3, 134, 67, 0, 646, 682, 3, 52, 26, 0, 647, 682, 3, 142, 71, 0, 648, 649, 5, 94, 0, 0, 649, 654, 3, 136, 68, 0, 650, 651, 5, 61, 0, 0, 651, 653, 3, 136, 68, 0, 652, 650, 1, 0, 0, 0, 653, 656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 657, 1, 0, 0, 0, 656, 654, 1, 0, 0, 0, 657, 658, 5, 95, 0, 0, 658, 682, 1, 0, 0, 0, 659, 660, 5, 94, 0, 0, 660, 665, 3, 134, 67, 0, 661, 662, 5, 61, 0, 0, 662, 664, 3, 134, 67, 0, 663, 661, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 668, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 668, 669, 5, 95, 0, 0, 669, 682, 1, 0, 0, 0, 670, 671, 5, 94, 0, 0, 671, 676, 3, 142, 71, 0, 672, 673, 5, 61, 0, 0, 673, 675, 3, 142, 71, 0, 674, 672, 1, 0, 0, 0, 675, 678, 1, 0, 0, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 679, 1, 0, 0, 0, 678, 676, 1, 0, 0, 0, 679, 680, 5, 95, 0, 0, 680, 682, 1, 0, 0, 0, 681, 639, 1, 0, 0, 0, 681, 640, 1, 0, 0, 0, 681, 643, 1, 0, 0, 0, 681, 644, 1, 0, 0, 0, 681, 645, 1, 0, 0, 0, 681, 646, 1, 0, 0, 0, 681, 647, 1, 0, 0, 0, 681, 648, 1, 0, 0, 0, 681, 659, 1, 0, 0, 0, 681, 670, 1, 0, 0, 0, 682, 133, 1, 0, 0, 0, 683, 684, 7, 6, 0, 0, 684, 135, 1, 0, 0, 0, 685, 688, 3, 138, 69, 0, 686, 688, 3, 140, 70, 0, 687, 685, 1, 0, 0, 0, 687, 686, 1, 0, 0, 0, 688, 137, 1, 0, 0, 0, 689, 691, 7, 4, 0, 0, 690, 689, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 5, 54, 0, 0, 693, 139, 1, 0, 0, 0, 694, 696, 7, 4, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 53, 0, 0, 698, 141, 1, 0, 0, 0, 699, 700, 5, 52, 0, 0, 700, 143, 1, 0, 0, 0, 701, 702, 7, 7, 0, 0, 702, 145, 1, 0, 0, 0, 703, 704, 7, 8, 0, 0, 704, 705, 5, 111, 0, 0, 705, 706, 3, 148, 74, 0, 706, 707, 3, 150, 75, 0, 707, 147, 1, 0, 0, 0, 708, 709, 3, 24, 12, 0, 709, 149, 1, 0, 0, 0, 710, 711, 5, 35, 0, 0, 711, 716, 3, 152, 76, 0, 712, 713, 5, 61, 0, 0, 713, 715, 3, 152, 76, 0, 714, 712, 1, 0, 0, 0, 715, 718, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 151, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 719, 720, 3, 118, 59, 0, 720, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 325, 329, 333, 338, 349, 354, 358, 372, 383, 397, 418, 426, 429, 434, 447, 453, 460, 471, 485, 491, 502, 511, 519, 524, 532, 534, 539, 546, 551, 556, 566, 572, 580, 582, 593, 600, 611, 616, 618, 630, 654, 665, 676, 681, 687, 690, 695, 716] \ No newline at end of file +[4, 1, 136, 730, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 326, 8, 25, 1, 26, 1, 26, 3, 26, 330, 8, 26, 1, 27, 1, 27, 3, 27, 334, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 339, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 348, 8, 30, 10, 30, 12, 30, 351, 9, 30, 1, 31, 1, 31, 3, 31, 355, 8, 31, 1, 31, 1, 31, 3, 31, 359, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 371, 8, 34, 10, 34, 12, 34, 374, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 384, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 396, 8, 39, 10, 39, 12, 39, 399, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 419, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 425, 8, 44, 10, 44, 12, 44, 428, 9, 44, 3, 44, 430, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 435, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 454, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 461, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 470, 8, 51, 11, 51, 12, 51, 471, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 484, 8, 53, 10, 53, 12, 53, 487, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 500, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 511, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 518, 8, 56, 10, 56, 12, 56, 521, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 528, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 533, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 541, 8, 56, 10, 56, 12, 56, 544, 9, 56, 1, 57, 1, 57, 3, 57, 548, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 555, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 560, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 565, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 575, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 581, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 589, 8, 60, 10, 60, 12, 60, 592, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 602, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 607, 8, 61, 10, 61, 12, 61, 610, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 618, 8, 62, 10, 62, 12, 62, 621, 9, 62, 1, 62, 1, 62, 3, 62, 625, 8, 62, 3, 62, 627, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 637, 8, 64, 10, 64, 12, 64, 640, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 661, 8, 66, 10, 66, 12, 66, 664, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 672, 8, 66, 10, 66, 12, 66, 675, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 683, 8, 66, 10, 66, 12, 66, 686, 9, 66, 1, 66, 1, 66, 3, 66, 690, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 696, 8, 68, 1, 69, 3, 69, 699, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 704, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 723, 8, 75, 10, 75, 12, 75, 726, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 764, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 325, 1, 0, 0, 0, 52, 329, 1, 0, 0, 0, 54, 333, 1, 0, 0, 0, 56, 338, 1, 0, 0, 0, 58, 340, 1, 0, 0, 0, 60, 343, 1, 0, 0, 0, 62, 352, 1, 0, 0, 0, 64, 360, 1, 0, 0, 0, 66, 363, 1, 0, 0, 0, 68, 366, 1, 0, 0, 0, 70, 375, 1, 0, 0, 0, 72, 379, 1, 0, 0, 0, 74, 385, 1, 0, 0, 0, 76, 389, 1, 0, 0, 0, 78, 392, 1, 0, 0, 0, 80, 400, 1, 0, 0, 0, 82, 404, 1, 0, 0, 0, 84, 407, 1, 0, 0, 0, 86, 411, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 434, 1, 0, 0, 0, 92, 438, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 449, 1, 0, 0, 0, 98, 462, 1, 0, 0, 0, 100, 465, 1, 0, 0, 0, 102, 469, 1, 0, 0, 0, 104, 473, 1, 0, 0, 0, 106, 477, 1, 0, 0, 0, 108, 499, 1, 0, 0, 0, 110, 501, 1, 0, 0, 0, 112, 532, 1, 0, 0, 0, 114, 559, 1, 0, 0, 0, 116, 561, 1, 0, 0, 0, 118, 574, 1, 0, 0, 0, 120, 580, 1, 0, 0, 0, 122, 601, 1, 0, 0, 0, 124, 611, 1, 0, 0, 0, 126, 630, 1, 0, 0, 0, 128, 632, 1, 0, 0, 0, 130, 643, 1, 0, 0, 0, 132, 689, 1, 0, 0, 0, 134, 691, 1, 0, 0, 0, 136, 695, 1, 0, 0, 0, 138, 698, 1, 0, 0, 0, 140, 703, 1, 0, 0, 0, 142, 707, 1, 0, 0, 0, 144, 709, 1, 0, 0, 0, 146, 711, 1, 0, 0, 0, 148, 716, 1, 0, 0, 0, 150, 718, 1, 0, 0, 0, 152, 727, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 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, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 326, 5, 125, 0, 0, 323, 326, 3, 52, 26, 0, 324, 326, 3, 54, 27, 0, 325, 322, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 51, 1, 0, 0, 0, 327, 330, 5, 74, 0, 0, 328, 330, 5, 92, 0, 0, 329, 327, 1, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 53, 1, 0, 0, 0, 331, 334, 5, 91, 0, 0, 332, 334, 5, 93, 0, 0, 333, 331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 55, 1, 0, 0, 0, 335, 339, 3, 48, 24, 0, 336, 339, 3, 52, 26, 0, 337, 339, 3, 54, 27, 0, 338, 335, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 57, 1, 0, 0, 0, 340, 341, 5, 10, 0, 0, 341, 342, 5, 53, 0, 0, 342, 59, 1, 0, 0, 0, 343, 344, 5, 12, 0, 0, 344, 349, 3, 62, 31, 0, 345, 346, 5, 61, 0, 0, 346, 348, 3, 62, 31, 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, 61, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 3, 112, 56, 0, 353, 355, 7, 2, 0, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 72, 0, 0, 357, 359, 7, 3, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 63, 1, 0, 0, 0, 360, 361, 5, 26, 0, 0, 361, 362, 3, 46, 23, 0, 362, 65, 1, 0, 0, 0, 363, 364, 5, 25, 0, 0, 364, 365, 3, 46, 23, 0, 365, 67, 1, 0, 0, 0, 366, 367, 5, 29, 0, 0, 367, 372, 3, 70, 35, 0, 368, 369, 5, 61, 0, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 69, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 376, 3, 44, 22, 0, 376, 377, 5, 129, 0, 0, 377, 378, 3, 44, 22, 0, 378, 71, 1, 0, 0, 0, 379, 380, 5, 7, 0, 0, 380, 381, 3, 122, 61, 0, 381, 383, 3, 142, 71, 0, 382, 384, 3, 78, 39, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 73, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 122, 61, 0, 387, 388, 3, 142, 71, 0, 388, 75, 1, 0, 0, 0, 389, 390, 5, 24, 0, 0, 390, 391, 3, 42, 21, 0, 391, 77, 1, 0, 0, 0, 392, 397, 3, 80, 40, 0, 393, 394, 5, 61, 0, 0, 394, 396, 3, 80, 40, 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, 79, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 48, 24, 0, 401, 402, 5, 58, 0, 0, 402, 403, 3, 132, 66, 0, 403, 81, 1, 0, 0, 0, 404, 405, 5, 6, 0, 0, 405, 406, 3, 84, 42, 0, 406, 83, 1, 0, 0, 0, 407, 408, 5, 94, 0, 0, 408, 409, 3, 2, 1, 0, 409, 410, 5, 95, 0, 0, 410, 85, 1, 0, 0, 0, 411, 412, 5, 30, 0, 0, 412, 413, 5, 133, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 5, 5, 0, 0, 415, 418, 5, 37, 0, 0, 416, 417, 5, 35, 0, 0, 417, 419, 3, 44, 22, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 429, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 90, 45, 0, 422, 423, 5, 61, 0, 0, 423, 425, 3, 90, 45, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 89, 1, 0, 0, 0, 431, 432, 3, 44, 22, 0, 432, 433, 5, 58, 0, 0, 433, 435, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 3, 44, 22, 0, 437, 91, 1, 0, 0, 0, 438, 439, 5, 23, 0, 0, 439, 440, 3, 24, 12, 0, 440, 441, 5, 35, 0, 0, 441, 442, 3, 46, 23, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 15, 0, 0, 444, 447, 3, 38, 19, 0, 445, 446, 5, 55, 0, 0, 446, 448, 3, 14, 7, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 95, 1, 0, 0, 0, 449, 450, 5, 4, 0, 0, 450, 453, 3, 42, 21, 0, 451, 452, 5, 35, 0, 0, 452, 454, 3, 42, 21, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 460, 1, 0, 0, 0, 455, 456, 5, 129, 0, 0, 456, 457, 3, 42, 21, 0, 457, 458, 5, 61, 0, 0, 458, 459, 3, 42, 21, 0, 459, 461, 1, 0, 0, 0, 460, 455, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 97, 1, 0, 0, 0, 462, 463, 5, 27, 0, 0, 463, 464, 3, 46, 23, 0, 464, 99, 1, 0, 0, 0, 465, 466, 5, 18, 0, 0, 466, 467, 3, 102, 51, 0, 467, 101, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 103, 1, 0, 0, 0, 473, 474, 5, 96, 0, 0, 474, 475, 3, 106, 53, 0, 475, 476, 5, 97, 0, 0, 476, 105, 1, 0, 0, 0, 477, 478, 6, 53, -1, 0, 478, 479, 3, 108, 54, 0, 479, 485, 1, 0, 0, 0, 480, 481, 10, 1, 0, 0, 481, 482, 5, 51, 0, 0, 482, 484, 3, 108, 54, 0, 483, 480, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 107, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 500, 3, 34, 17, 0, 489, 500, 3, 8, 4, 0, 490, 500, 3, 64, 32, 0, 491, 500, 3, 58, 29, 0, 492, 500, 3, 36, 18, 0, 493, 500, 3, 60, 30, 0, 494, 500, 3, 66, 33, 0, 495, 500, 3, 68, 34, 0, 496, 500, 3, 72, 36, 0, 497, 500, 3, 74, 37, 0, 498, 500, 3, 76, 38, 0, 499, 488, 1, 0, 0, 0, 499, 489, 1, 0, 0, 0, 499, 490, 1, 0, 0, 0, 499, 491, 1, 0, 0, 0, 499, 492, 1, 0, 0, 0, 499, 493, 1, 0, 0, 0, 499, 494, 1, 0, 0, 0, 499, 495, 1, 0, 0, 0, 499, 496, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 499, 498, 1, 0, 0, 0, 500, 109, 1, 0, 0, 0, 501, 502, 5, 28, 0, 0, 502, 111, 1, 0, 0, 0, 503, 504, 6, 56, -1, 0, 504, 505, 5, 70, 0, 0, 505, 533, 3, 112, 56, 8, 506, 533, 3, 118, 59, 0, 507, 533, 3, 114, 57, 0, 508, 510, 3, 118, 59, 0, 509, 511, 5, 70, 0, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 66, 0, 0, 513, 514, 5, 96, 0, 0, 514, 519, 3, 118, 59, 0, 515, 516, 5, 61, 0, 0, 516, 518, 3, 118, 59, 0, 517, 515, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 522, 523, 5, 97, 0, 0, 523, 533, 1, 0, 0, 0, 524, 525, 3, 118, 59, 0, 525, 527, 5, 67, 0, 0, 526, 528, 5, 70, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 5, 71, 0, 0, 530, 533, 1, 0, 0, 0, 531, 533, 3, 116, 58, 0, 532, 503, 1, 0, 0, 0, 532, 506, 1, 0, 0, 0, 532, 507, 1, 0, 0, 0, 532, 508, 1, 0, 0, 0, 532, 524, 1, 0, 0, 0, 532, 531, 1, 0, 0, 0, 533, 542, 1, 0, 0, 0, 534, 535, 10, 5, 0, 0, 535, 536, 5, 56, 0, 0, 536, 541, 3, 112, 56, 6, 537, 538, 10, 4, 0, 0, 538, 539, 5, 73, 0, 0, 539, 541, 3, 112, 56, 5, 540, 534, 1, 0, 0, 0, 540, 537, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 113, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 547, 3, 118, 59, 0, 546, 548, 5, 70, 0, 0, 547, 546, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 5, 69, 0, 0, 550, 551, 3, 142, 71, 0, 551, 560, 1, 0, 0, 0, 552, 554, 3, 118, 59, 0, 553, 555, 5, 70, 0, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 5, 75, 0, 0, 557, 558, 3, 142, 71, 0, 558, 560, 1, 0, 0, 0, 559, 545, 1, 0, 0, 0, 559, 552, 1, 0, 0, 0, 560, 115, 1, 0, 0, 0, 561, 564, 3, 42, 21, 0, 562, 563, 5, 59, 0, 0, 563, 565, 3, 10, 5, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 5, 60, 0, 0, 567, 568, 3, 132, 66, 0, 568, 117, 1, 0, 0, 0, 569, 575, 3, 120, 60, 0, 570, 571, 3, 120, 60, 0, 571, 572, 3, 144, 72, 0, 572, 573, 3, 120, 60, 0, 573, 575, 1, 0, 0, 0, 574, 569, 1, 0, 0, 0, 574, 570, 1, 0, 0, 0, 575, 119, 1, 0, 0, 0, 576, 577, 6, 60, -1, 0, 577, 581, 3, 122, 61, 0, 578, 579, 7, 4, 0, 0, 579, 581, 3, 120, 60, 3, 580, 576, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 590, 1, 0, 0, 0, 582, 583, 10, 2, 0, 0, 583, 584, 7, 5, 0, 0, 584, 589, 3, 120, 60, 3, 585, 586, 10, 1, 0, 0, 586, 587, 7, 4, 0, 0, 587, 589, 3, 120, 60, 2, 588, 582, 1, 0, 0, 0, 588, 585, 1, 0, 0, 0, 589, 592, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 121, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 593, 594, 6, 61, -1, 0, 594, 602, 3, 132, 66, 0, 595, 602, 3, 42, 21, 0, 596, 602, 3, 124, 62, 0, 597, 598, 5, 96, 0, 0, 598, 599, 3, 112, 56, 0, 599, 600, 5, 97, 0, 0, 600, 602, 1, 0, 0, 0, 601, 593, 1, 0, 0, 0, 601, 595, 1, 0, 0, 0, 601, 596, 1, 0, 0, 0, 601, 597, 1, 0, 0, 0, 602, 608, 1, 0, 0, 0, 603, 604, 10, 1, 0, 0, 604, 605, 5, 59, 0, 0, 605, 607, 3, 10, 5, 0, 606, 603, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 123, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 3, 126, 63, 0, 612, 626, 5, 96, 0, 0, 613, 627, 5, 86, 0, 0, 614, 619, 3, 112, 56, 0, 615, 616, 5, 61, 0, 0, 616, 618, 3, 112, 56, 0, 617, 615, 1, 0, 0, 0, 618, 621, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 624, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 5, 61, 0, 0, 623, 625, 3, 128, 64, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 613, 1, 0, 0, 0, 626, 614, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 97, 0, 0, 629, 125, 1, 0, 0, 0, 630, 631, 3, 56, 28, 0, 631, 127, 1, 0, 0, 0, 632, 633, 5, 89, 0, 0, 633, 638, 3, 130, 65, 0, 634, 635, 5, 61, 0, 0, 635, 637, 3, 130, 65, 0, 636, 634, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 641, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 5, 90, 0, 0, 642, 129, 1, 0, 0, 0, 643, 644, 3, 142, 71, 0, 644, 645, 5, 60, 0, 0, 645, 646, 3, 132, 66, 0, 646, 131, 1, 0, 0, 0, 647, 690, 5, 71, 0, 0, 648, 649, 3, 140, 70, 0, 649, 650, 5, 98, 0, 0, 650, 690, 1, 0, 0, 0, 651, 690, 3, 138, 69, 0, 652, 690, 3, 140, 70, 0, 653, 690, 3, 134, 67, 0, 654, 690, 3, 52, 26, 0, 655, 690, 3, 142, 71, 0, 656, 657, 5, 94, 0, 0, 657, 662, 3, 136, 68, 0, 658, 659, 5, 61, 0, 0, 659, 661, 3, 136, 68, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 665, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 666, 5, 95, 0, 0, 666, 690, 1, 0, 0, 0, 667, 668, 5, 94, 0, 0, 668, 673, 3, 134, 67, 0, 669, 670, 5, 61, 0, 0, 670, 672, 3, 134, 67, 0, 671, 669, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 676, 677, 5, 95, 0, 0, 677, 690, 1, 0, 0, 0, 678, 679, 5, 94, 0, 0, 679, 684, 3, 142, 71, 0, 680, 681, 5, 61, 0, 0, 681, 683, 3, 142, 71, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 687, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 688, 5, 95, 0, 0, 688, 690, 1, 0, 0, 0, 689, 647, 1, 0, 0, 0, 689, 648, 1, 0, 0, 0, 689, 651, 1, 0, 0, 0, 689, 652, 1, 0, 0, 0, 689, 653, 1, 0, 0, 0, 689, 654, 1, 0, 0, 0, 689, 655, 1, 0, 0, 0, 689, 656, 1, 0, 0, 0, 689, 667, 1, 0, 0, 0, 689, 678, 1, 0, 0, 0, 690, 133, 1, 0, 0, 0, 691, 692, 7, 6, 0, 0, 692, 135, 1, 0, 0, 0, 693, 696, 3, 138, 69, 0, 694, 696, 3, 140, 70, 0, 695, 693, 1, 0, 0, 0, 695, 694, 1, 0, 0, 0, 696, 137, 1, 0, 0, 0, 697, 699, 7, 4, 0, 0, 698, 697, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 54, 0, 0, 701, 139, 1, 0, 0, 0, 702, 704, 7, 4, 0, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 53, 0, 0, 706, 141, 1, 0, 0, 0, 707, 708, 5, 52, 0, 0, 708, 143, 1, 0, 0, 0, 709, 710, 7, 7, 0, 0, 710, 145, 1, 0, 0, 0, 711, 712, 7, 8, 0, 0, 712, 713, 5, 111, 0, 0, 713, 714, 3, 148, 74, 0, 714, 715, 3, 150, 75, 0, 715, 147, 1, 0, 0, 0, 716, 717, 3, 24, 12, 0, 717, 149, 1, 0, 0, 0, 718, 719, 5, 35, 0, 0, 719, 724, 3, 152, 76, 0, 720, 721, 5, 61, 0, 0, 721, 723, 3, 152, 76, 0, 722, 720, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 151, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 728, 3, 118, 59, 0, 728, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 325, 329, 333, 338, 349, 354, 358, 372, 383, 397, 418, 426, 429, 434, 447, 453, 460, 471, 485, 499, 510, 519, 527, 532, 540, 542, 547, 554, 559, 564, 574, 580, 588, 590, 601, 608, 619, 624, 626, 638, 662, 673, 684, 689, 695, 698, 703, 724] \ 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 615997d8e6bd3..0e34c72c3b906 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 @@ -4003,15 +4003,39 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio @SuppressWarnings("CheckReturnValue") public static class ForkSubQueryProcessingCommandContext extends ParserRuleContext { + public EvalCommandContext evalCommand() { + return getRuleContext(EvalCommandContext.class,0); + } public WhereCommandContext whereCommand() { return getRuleContext(WhereCommandContext.class,0); } - public SortCommandContext sortCommand() { - return getRuleContext(SortCommandContext.class,0); + public KeepCommandContext keepCommand() { + return getRuleContext(KeepCommandContext.class,0); } public LimitCommandContext limitCommand() { return getRuleContext(LimitCommandContext.class,0); } + public StatsCommandContext statsCommand() { + return getRuleContext(StatsCommandContext.class,0); + } + public SortCommandContext sortCommand() { + return getRuleContext(SortCommandContext.class,0); + } + public DropCommandContext dropCommand() { + return getRuleContext(DropCommandContext.class,0); + } + public RenameCommandContext renameCommand() { + return getRuleContext(RenameCommandContext.class,0); + } + public DissectCommandContext dissectCommand() { + return getRuleContext(DissectCommandContext.class,0); + } + public GrokCommandContext grokCommand() { + return getRuleContext(GrokCommandContext.class,0); + } + public MvExpandCommandContext mvExpandCommand() { + return getRuleContext(MvExpandCommandContext.class,0); + } @SuppressWarnings("this-escape") public ForkSubQueryProcessingCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -4036,30 +4060,86 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 108, RULE_forkSubQueryProcessingCommand); try { - setState(491); + setState(499); _errHandler.sync(this); switch (_input.LA(1)) { - case WHERE: + case EVAL: enterOuterAlt(_localctx, 1); { setState(488); - whereCommand(); + evalCommand(); } break; - case SORT: + case WHERE: enterOuterAlt(_localctx, 2); { setState(489); - sortCommand(); + whereCommand(); } break; - case LIMIT: + case KEEP: enterOuterAlt(_localctx, 3); { setState(490); + keepCommand(); + } + break; + case LIMIT: + enterOuterAlt(_localctx, 4); + { + setState(491); limitCommand(); } break; + case STATS: + enterOuterAlt(_localctx, 5); + { + setState(492); + statsCommand(); + } + break; + case SORT: + enterOuterAlt(_localctx, 6); + { + setState(493); + sortCommand(); + } + break; + case DROP: + enterOuterAlt(_localctx, 7); + { + setState(494); + dropCommand(); + } + break; + case RENAME: + enterOuterAlt(_localctx, 8); + { + setState(495); + renameCommand(); + } + break; + case DISSECT: + enterOuterAlt(_localctx, 9); + { + setState(496); + dissectCommand(); + } + break; + case GROK: + enterOuterAlt(_localctx, 10); + { + setState(497); + grokCommand(); + } + break; + case MV_EXPAND: + enterOuterAlt(_localctx, 11); + { + setState(498); + mvExpandCommand(); + } + break; default: throw new NoViableAltException(this); } @@ -4104,7 +4184,7 @@ public final RrfCommandContext rrfCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(493); + setState(501); match(DEV_RRF); } } @@ -4320,7 +4400,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(524); + setState(532); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: @@ -4329,9 +4409,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(496); + setState(504); match(NOT); - setState(497); + setState(505); booleanExpression(8); } break; @@ -4340,7 +4420,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(498); + setState(506); valueExpression(); } break; @@ -4349,7 +4429,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(499); + setState(507); regexBooleanExpression(); } break; @@ -4358,41 +4438,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(500); + setState(508); valueExpression(); - setState(502); + setState(510); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(501); + setState(509); match(NOT); } } - setState(504); + setState(512); match(IN); - setState(505); + setState(513); match(LP); - setState(506); + setState(514); valueExpression(); - setState(511); + setState(519); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(507); + setState(515); match(COMMA); - setState(508); + setState(516); valueExpression(); } } - setState(513); + setState(521); _errHandler.sync(this); _la = _input.LA(1); } - setState(514); + setState(522); match(RP); } break; @@ -4401,21 +4481,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(516); + setState(524); valueExpression(); - setState(517); + setState(525); match(IS); - setState(519); + setState(527); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(518); + setState(526); match(NOT); } } - setState(521); + setState(529); match(NULL); } break; @@ -4424,13 +4504,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(523); + setState(531); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(534); + setState(542); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4438,7 +4518,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(532); + setState(540); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: @@ -4446,11 +4526,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(526); + setState(534); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(527); + setState(535); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(528); + setState(536); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4459,18 +4539,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(529); + setState(537); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(530); + setState(538); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(531); + setState(539); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(536); + setState(544); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } @@ -4525,48 +4605,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 114, RULE_regexBooleanExpression); int _la; try { - setState(551); + setState(559); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(537); + setState(545); valueExpression(); - setState(539); + setState(547); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(538); + setState(546); match(NOT); } } - setState(541); + setState(549); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(542); + setState(550); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(544); + setState(552); valueExpression(); - setState(546); + setState(554); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(545); + setState(553); match(NOT); } } - setState(548); + setState(556); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(549); + setState(557); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -4626,23 +4706,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(553); + setState(561); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(556); + setState(564); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(554); + setState(562); match(CAST_OP); - setState(555); + setState(563); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(558); + setState(566); match(COLON); - setState(559); + setState(567); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -4726,14 +4806,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 118, RULE_valueExpression); try { - setState(566); + setState(574); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(561); + setState(569); operatorExpression(0); } break; @@ -4741,11 +4821,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(562); + setState(570); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(563); + setState(571); comparisonOperator(); - setState(564); + setState(572); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -4870,7 +4950,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(572); + setState(580); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: @@ -4879,7 +4959,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(569); + setState(577); primaryExpression(0); } break; @@ -4888,7 +4968,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(570); + setState(578); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4899,13 +4979,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(571); + setState(579); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(582); + setState(590); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,51,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4913,7 +4993,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(580); + setState(588); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: @@ -4921,9 +5001,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(574); + setState(582); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(575); + setState(583); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & 7L) != 0)) ) { @@ -4934,7 +5014,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(576); + setState(584); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -4943,9 +5023,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(577); + setState(585); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(578); + setState(586); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4956,14 +5036,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(579); + setState(587); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(584); + setState(592); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } @@ -5121,7 +5201,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(593); + setState(601); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: @@ -5130,7 +5210,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(586); + setState(594); constant(); } break; @@ -5139,7 +5219,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(587); + setState(595); qualifiedName(); } break; @@ -5148,7 +5228,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(588); + setState(596); functionExpression(); } break; @@ -5157,17 +5237,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(589); + setState(597); match(LP); - setState(590); + setState(598); booleanExpression(0); - setState(591); + setState(599); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(600); + setState(608); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,53,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5178,16 +5258,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(595); + setState(603); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(596); + setState(604); match(CAST_OP); - setState(597); + setState(605); dataType(); } } } - setState(602); + setState(610); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,53,_ctx); } @@ -5253,16 +5333,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(603); + setState(611); functionName(); - setState(604); + setState(612); match(LP); - setState(618); + setState(626); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(605); + setState(613); match(ASTERISK); } break; @@ -5285,34 +5365,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(606); + setState(614); booleanExpression(0); - setState(611); + setState(619); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(607); + setState(615); match(COMMA); - setState(608); + setState(616); booleanExpression(0); } } } - setState(613); + setState(621); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } - setState(616); + setState(624); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(614); + setState(622); match(COMMA); - setState(615); + setState(623); mapExpression(); } } @@ -5325,7 +5405,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(620); + setState(628); match(RP); } } @@ -5371,7 +5451,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(622); + setState(630); identifierOrParameter(); } } @@ -5427,27 +5507,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(624); + setState(632); match(LEFT_BRACES); - setState(625); + setState(633); entryExpression(); - setState(630); + setState(638); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(626); + setState(634); match(COMMA); - setState(627); + setState(635); entryExpression(); } } - setState(632); + setState(640); _errHandler.sync(this); _la = _input.LA(1); } - setState(633); + setState(641); match(RIGHT_BRACES); } } @@ -5499,11 +5579,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(635); + setState(643); ((EntryExpressionContext)_localctx).key = string(); - setState(636); + setState(644); match(COLON); - setState(637); + setState(645); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -5774,14 +5854,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 132, RULE_constant); int _la; try { - setState(681); + setState(689); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(639); + setState(647); match(NULL); } break; @@ -5789,9 +5869,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(640); + setState(648); integerValue(); - setState(641); + setState(649); match(UNQUOTED_IDENTIFIER); } break; @@ -5799,7 +5879,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(643); + setState(651); decimalValue(); } break; @@ -5807,7 +5887,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(644); + setState(652); integerValue(); } break; @@ -5815,7 +5895,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(645); + setState(653); booleanValue(); } break; @@ -5823,7 +5903,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(646); + setState(654); parameter(); } break; @@ -5831,7 +5911,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(647); + setState(655); string(); } break; @@ -5839,27 +5919,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(648); + setState(656); match(OPENING_BRACKET); - setState(649); + setState(657); numericValue(); - setState(654); + setState(662); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(650); + setState(658); match(COMMA); - setState(651); + setState(659); numericValue(); } } - setState(656); + setState(664); _errHandler.sync(this); _la = _input.LA(1); } - setState(657); + setState(665); match(CLOSING_BRACKET); } break; @@ -5867,27 +5947,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(659); + setState(667); match(OPENING_BRACKET); - setState(660); + setState(668); booleanValue(); - setState(665); + setState(673); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(661); + setState(669); match(COMMA); - setState(662); + setState(670); booleanValue(); } } - setState(667); + setState(675); _errHandler.sync(this); _la = _input.LA(1); } - setState(668); + setState(676); match(CLOSING_BRACKET); } break; @@ -5895,27 +5975,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(670); + setState(678); match(OPENING_BRACKET); - setState(671); + setState(679); string(); - setState(676); + setState(684); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(672); + setState(680); match(COMMA); - setState(673); + setState(681); string(); } } - setState(678); + setState(686); _errHandler.sync(this); _la = _input.LA(1); } - setState(679); + setState(687); match(CLOSING_BRACKET); } break; @@ -5963,7 +6043,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(683); + setState(691); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -6018,20 +6098,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 136, RULE_numericValue); try { - setState(687); + setState(695); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(685); + setState(693); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(686); + setState(694); integerValue(); } break; @@ -6080,12 +6160,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(690); + setState(698); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(689); + setState(697); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6098,7 +6178,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(692); + setState(700); match(DECIMAL_LITERAL); } } @@ -6145,12 +6225,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(695); + setState(703); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(694); + setState(702); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6163,7 +6243,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(697); + setState(705); match(INTEGER_LITERAL); } } @@ -6207,7 +6287,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(699); + setState(707); match(QUOTED_STRING); } } @@ -6257,7 +6337,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(701); + setState(709); _la = _input.LA(1); if ( !(((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -6320,7 +6400,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(703); + setState(711); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 6815744L) != 0)) ) { @@ -6331,11 +6411,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(704); + setState(712); match(JOIN); - setState(705); + setState(713); joinTarget(); - setState(706); + setState(714); joinCondition(); } } @@ -6382,7 +6462,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(708); + setState(716); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6437,25 +6517,25 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(710); + setState(718); match(ON); - setState(711); + setState(719); joinPredicate(); - setState(716); + setState(724); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,65,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(712); + setState(720); match(COMMA); - setState(713); + setState(721); joinPredicate(); } } } - setState(718); + setState(726); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,65,_ctx); } @@ -6503,7 +6583,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(719); + setState(727); valueExpression(); } } @@ -6611,7 +6691,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u0088\u02d2\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0088\u02da\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"+ @@ -6675,386 +6755,394 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "0\u00010\u00010\u00030\u01c6\b0\u00010\u00010\u00010\u00010\u00010\u0003"+ "0\u01cd\b0\u00011\u00011\u00011\u00012\u00012\u00012\u00013\u00043\u01d6"+ "\b3\u000b3\f3\u01d7\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u0001"+ - "5\u00015\u00015\u00055\u01e4\b5\n5\f5\u01e7\t5\u00016\u00016\u00016\u0003"+ - "6\u01ec\b6\u00017\u00017\u00018\u00018\u00018\u00018\u00018\u00018\u0001"+ - "8\u00038\u01f7\b8\u00018\u00018\u00018\u00018\u00018\u00058\u01fe\b8\n"+ - "8\f8\u0201\t8\u00018\u00018\u00018\u00018\u00018\u00038\u0208\b8\u0001"+ - "8\u00018\u00018\u00038\u020d\b8\u00018\u00018\u00018\u00018\u00018\u0001"+ - "8\u00058\u0215\b8\n8\f8\u0218\t8\u00019\u00019\u00039\u021c\b9\u00019"+ - "\u00019\u00019\u00019\u00019\u00039\u0223\b9\u00019\u00019\u00019\u0003"+ - "9\u0228\b9\u0001:\u0001:\u0001:\u0003:\u022d\b:\u0001:\u0001:\u0001:\u0001"+ - ";\u0001;\u0001;\u0001;\u0001;\u0003;\u0237\b;\u0001<\u0001<\u0001<\u0001"+ - "<\u0003<\u023d\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u0245"+ - "\b<\n<\f<\u0248\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ - "=\u0003=\u0252\b=\u0001=\u0001=\u0001=\u0005=\u0257\b=\n=\f=\u025a\t="+ - "\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0262\b>\n>\f>\u0265"+ - "\t>\u0001>\u0001>\u0003>\u0269\b>\u0003>\u026b\b>\u0001>\u0001>\u0001"+ - "?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u0275\b@\n@\f@\u0278\t@\u0001"+ - "@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u028d"+ - "\bB\nB\fB\u0290\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u0298"+ - "\bB\nB\fB\u029b\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02a3"+ - "\bB\nB\fB\u02a6\tB\u0001B\u0001B\u0003B\u02aa\bB\u0001C\u0001C\u0001D"+ - "\u0001D\u0003D\u02b0\bD\u0001E\u0003E\u02b3\bE\u0001E\u0001E\u0001F\u0003"+ - "F\u02b8\bF\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001"+ - "I\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0005K\u02cb"+ - "\bK\nK\fK\u02ce\tK\u0001L\u0001L\u0001L\u0000\u0005\u0002jpxzM\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\u0098\u0000\t\u0002\u0000"+ - "44hh\u0001\u0000bc\u0002\u000099>>\u0002\u0000AADD\u0001\u0000TU\u0001"+ - "\u0000VX\u0002\u0000@@LL\u0002\u0000MMOS\u0002\u0000\u0013\u0013\u0015"+ - "\u0016\u02ec\u0000\u009a\u0001\u0000\u0000\u0000\u0002\u009d\u0001\u0000"+ - "\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006\u00c9\u0001\u0000"+ - "\u0000\u0000\b\u00cb\u0001\u0000\u0000\u0000\n\u00ce\u0001\u0000\u0000"+ - "\u0000\f\u00d0\u0001\u0000\u0000\u0000\u000e\u00d3\u0001\u0000\u0000\u0000"+ - "\u0010\u00de\u0001\u0000\u0000\u0000\u0012\u00e2\u0001\u0000\u0000\u0000"+ - "\u0014\u00e5\u0001\u0000\u0000\u0000\u0016\u00e8\u0001\u0000\u0000\u0000"+ - "\u0018\u00ff\u0001\u0000\u0000\u0000\u001a\u0101\u0001\u0000\u0000\u0000"+ - "\u001c\u0103\u0001\u0000\u0000\u0000\u001e\u0105\u0001\u0000\u0000\u0000"+ - " \u0107\u0001\u0000\u0000\u0000\"\u0110\u0001\u0000\u0000\u0000$\u0113"+ - "\u0001\u0000\u0000\u0000&\u011b\u0001\u0000\u0000\u0000(\u0123\u0001\u0000"+ - "\u0000\u0000*\u0128\u0001\u0000\u0000\u0000,\u0130\u0001\u0000\u0000\u0000"+ - ".\u0138\u0001\u0000\u0000\u00000\u0140\u0001\u0000\u0000\u00002\u0145"+ - "\u0001\u0000\u0000\u00004\u0149\u0001\u0000\u0000\u00006\u014d\u0001\u0000"+ - "\u0000\u00008\u0152\u0001\u0000\u0000\u0000:\u0154\u0001\u0000\u0000\u0000"+ - "<\u0157\u0001\u0000\u0000\u0000>\u0160\u0001\u0000\u0000\u0000@\u0168"+ - "\u0001\u0000\u0000\u0000B\u016b\u0001\u0000\u0000\u0000D\u016e\u0001\u0000"+ - "\u0000\u0000F\u0177\u0001\u0000\u0000\u0000H\u017b\u0001\u0000\u0000\u0000"+ - "J\u0181\u0001\u0000\u0000\u0000L\u0185\u0001\u0000\u0000\u0000N\u0188"+ - "\u0001\u0000\u0000\u0000P\u0190\u0001\u0000\u0000\u0000R\u0194\u0001\u0000"+ - "\u0000\u0000T\u0197\u0001\u0000\u0000\u0000V\u019b\u0001\u0000\u0000\u0000"+ - "X\u019e\u0001\u0000\u0000\u0000Z\u01b2\u0001\u0000\u0000\u0000\\\u01b6"+ - "\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000\u0000\u0000`\u01c1\u0001\u0000"+ - "\u0000\u0000b\u01ce\u0001\u0000\u0000\u0000d\u01d1\u0001\u0000\u0000\u0000"+ - "f\u01d5\u0001\u0000\u0000\u0000h\u01d9\u0001\u0000\u0000\u0000j\u01dd"+ - "\u0001\u0000\u0000\u0000l\u01eb\u0001\u0000\u0000\u0000n\u01ed\u0001\u0000"+ - "\u0000\u0000p\u020c\u0001\u0000\u0000\u0000r\u0227\u0001\u0000\u0000\u0000"+ - "t\u0229\u0001\u0000\u0000\u0000v\u0236\u0001\u0000\u0000\u0000x\u023c"+ - "\u0001\u0000\u0000\u0000z\u0251\u0001\u0000\u0000\u0000|\u025b\u0001\u0000"+ - "\u0000\u0000~\u026e\u0001\u0000\u0000\u0000\u0080\u0270\u0001\u0000\u0000"+ - "\u0000\u0082\u027b\u0001\u0000\u0000\u0000\u0084\u02a9\u0001\u0000\u0000"+ - "\u0000\u0086\u02ab\u0001\u0000\u0000\u0000\u0088\u02af\u0001\u0000\u0000"+ - "\u0000\u008a\u02b2\u0001\u0000\u0000\u0000\u008c\u02b7\u0001\u0000\u0000"+ - "\u0000\u008e\u02bb\u0001\u0000\u0000\u0000\u0090\u02bd\u0001\u0000\u0000"+ - "\u0000\u0092\u02bf\u0001\u0000\u0000\u0000\u0094\u02c4\u0001\u0000\u0000"+ - "\u0000\u0096\u02c6\u0001\u0000\u0000\u0000\u0098\u02cf\u0001\u0000\u0000"+ - "\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b\u009c\u0005\u0000\u0000"+ - "\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d\u009e\u0006\u0001\uffff"+ - "\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000\u009f\u00a5\u0001\u0000"+ - "\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2\u00053\u0000"+ - "\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001\u0000\u0000"+ - "\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000"+ - "\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001\u0000\u0000"+ - "\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003R)\u0000\u00a9"+ - "\u00af\u0003\u0012\t\u0000\u00aa\u00af\u0003\f\u0006\u0000\u00ab\u00af"+ - "\u0003V+\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad\u00af\u0003\u0014"+ - "\n\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000"+ - "\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000"+ - "\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005\u0001\u0000\u0000"+ - "\u0000\u00b0\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003\b\u0004\u0000"+ - "\u00b2\u00ca\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000\u00b4\u00ca"+ - "\u0003$\u0012\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca\u0003B"+ - "!\u0000\u00b7\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9\u00ca"+ - "\u0003J%\u0000\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000\u00bc"+ - "\u00ca\u0003\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be\u00ca"+ - "\u0003^/\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003\\"+ - ".\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000"+ - "\u00c3\u00c4\u0004\u0003\u0005\u0000\u00c4\u00ca\u0003b1\u0000\u00c5\u00c6"+ - "\u0004\u0003\u0006\u0000\u00c6\u00ca\u0003d2\u0000\u00c7\u00c8\u0004\u0003"+ - "\u0007\u0000\u00c8\u00ca\u0003n7\u0000\u00c9\u00b0\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b1\u0001\u0000\u0000\u0000\u00c9\u00b2\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b3\u0001\u0000\u0000\u0000\u00c9\u00b4\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b5\u0001\u0000\u0000\u0000\u00c9\u00b6\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b7\u0001\u0000\u0000\u0000\u00c9\u00b8\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b9\u0001\u0000\u0000\u0000\u00c9\u00ba\u0001\u0000\u0000\u0000"+ - "\u00c9\u00bb\u0001\u0000\u0000\u0000\u00c9\u00bc\u0001\u0000\u0000\u0000"+ - "\u00c9\u00bd\u0001\u0000\u0000\u0000\u00c9\u00bf\u0001\u0000\u0000\u0000"+ - "\u00c9\u00c1\u0001\u0000\u0000\u0000\u00c9\u00c3\u0001\u0000\u0000\u0000"+ - "\u00c9\u00c5\u0001\u0000\u0000\u0000\u00c9\u00c7\u0001\u0000\u0000\u0000"+ - "\u00ca\u0007\u0001\u0000\u0000\u0000\u00cb\u00cc\u0005\u000e\u0000\u0000"+ - "\u00cc\u00cd\u0003p8\u0000\u00cd\t\u0001\u0000\u0000\u0000\u00ce\u00cf"+ - "\u00030\u0018\u0000\u00cf\u000b\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005"+ - "\u000b\u0000\u0000\u00d1\u00d2\u0003\u000e\u0007\u0000\u00d2\r\u0001\u0000"+ - "\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\u000f\u0001\u0000\u0000\u0000"+ - "\u00da\u00d8\u0001\u0000\u0000\u0000\u00db\u00dc\u0003*\u0015\u0000\u00dc"+ - "\u00dd\u0005:\u0000\u0000\u00dd\u00df\u0001\u0000\u0000\u0000\u00de\u00db"+ - "\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0"+ - "\u0001\u0000\u0000\u0000\u00e0\u00e1\u0003p8\u0000\u00e1\u0011\u0001\u0000"+ - "\u0000\u0000\u00e2\u00e3\u0005\u0010\u0000\u0000\u00e3\u00e4\u0003\u0016"+ - "\u000b\u0000\u00e4\u0013\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005\u0011"+ - "\u0000\u0000\u00e6\u00e7\u0003\u0016\u000b\u0000\u00e7\u0015\u0001\u0000"+ - "\u0000\u0000\u00e8\u00ed\u0003\u0018\f\u0000\u00e9\u00ea\u0005=\u0000"+ - "\u0000\u00ea\u00ec\u0003\u0018\f\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000"+ - "\u00ec\u00ef\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000"+ - "\u00ed\u00ee\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000"+ - "\u00ef\u00ed\u0001\u0000\u0000\u0000\u00f0\u00f2\u0003 \u0010\u0000\u00f1"+ - "\u00f0\u0001\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2"+ - "\u0017\u0001\u0000\u0000\u0000\u00f3\u00f4\u0003\u001a\r\u0000\u00f4\u00f5"+ - "\u0005<\u0000\u0000\u00f5\u00f7\u0001\u0000\u0000\u0000\u00f6\u00f3\u0001"+ - "\u0000\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001"+ - "\u0000\u0000\u0000\u00f8\u0100\u0003\u001e\u000f\u0000\u00f9\u00fa\u0004"+ - "\f\b\u0000\u00fa\u00fd\u0003\u001e\u000f\u0000\u00fb\u00fc\u0005;\u0000"+ - "\u0000\u00fc\u00fe\u0003\u001c\u000e\u0000\u00fd\u00fb\u0001\u0000\u0000"+ - "\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0100\u0001\u0000\u0000"+ - "\u0000\u00ff\u00f6\u0001\u0000\u0000\u0000\u00ff\u00f9\u0001\u0000\u0000"+ - "\u0000\u0100\u0019\u0001\u0000\u0000\u0000\u0101\u0102\u0007\u0000\u0000"+ - "\u0000\u0102\u001b\u0001\u0000\u0000\u0000\u0103\u0104\u0007\u0000\u0000"+ - "\u0000\u0104\u001d\u0001\u0000\u0000\u0000\u0105\u0106\u0007\u0000\u0000"+ - "\u0000\u0106\u001f\u0001\u0000\u0000\u0000\u0107\u0108\u0005g\u0000\u0000"+ - "\u0108\u010d\u0005h\u0000\u0000\u0109\u010a\u0005=\u0000\u0000\u010a\u010c"+ - "\u0005h\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c\u010f\u0001"+ - "\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010d\u010e\u0001"+ - "\u0000\u0000\u0000\u010e!\u0001\u0000\u0000\u0000\u010f\u010d\u0001\u0000"+ - "\u0000\u0000\u0110\u0111\u0005\b\u0000\u0000\u0111\u0112\u0003\u000e\u0007"+ - "\u0000\u0112#\u0001\u0000\u0000\u0000\u0113\u0115\u0005\r\u0000\u0000"+ - "\u0114\u0116\u0003&\u0013\u0000\u0115\u0114\u0001\u0000\u0000\u0000\u0115"+ - "\u0116\u0001\u0000\u0000\u0000\u0116\u0119\u0001\u0000\u0000\u0000\u0117"+ - "\u0118\u00057\u0000\u0000\u0118\u011a\u0003\u000e\u0007\u0000\u0119\u0117"+ - "\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a%\u0001"+ - "\u0000\u0000\u0000\u011b\u0120\u0003(\u0014\u0000\u011c\u011d\u0005=\u0000"+ - "\u0000\u011d\u011f\u0003(\u0014\u0000\u011e\u011c\u0001\u0000\u0000\u0000"+ - "\u011f\u0122\u0001\u0000\u0000\u0000\u0120\u011e\u0001\u0000\u0000\u0000"+ - "\u0120\u0121\u0001\u0000\u0000\u0000\u0121\'\u0001\u0000\u0000\u0000\u0122"+ - "\u0120\u0001\u0000\u0000\u0000\u0123\u0126\u0003\u0010\b\u0000\u0124\u0125"+ - "\u0005\u000e\u0000\u0000\u0125\u0127\u0003p8\u0000\u0126\u0124\u0001\u0000"+ - "\u0000\u0000\u0126\u0127\u0001\u0000\u0000\u0000\u0127)\u0001\u0000\u0000"+ - "\u0000\u0128\u012d\u00038\u001c\u0000\u0129\u012a\u0005?\u0000\u0000\u012a"+ - "\u012c\u00038\u001c\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u012f"+ - "\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012e"+ - "\u0001\u0000\u0000\u0000\u012e+\u0001\u0000\u0000\u0000\u012f\u012d\u0001"+ - "\u0000\u0000\u0000\u0130\u0135\u00032\u0019\u0000\u0131\u0132\u0005?\u0000"+ - "\u0000\u0132\u0134\u00032\u0019\u0000\u0133\u0131\u0001\u0000\u0000\u0000"+ - "\u0134\u0137\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000"+ - "\u0135\u0136\u0001\u0000\u0000\u0000\u0136-\u0001\u0000\u0000\u0000\u0137"+ - "\u0135\u0001\u0000\u0000\u0000\u0138\u013d\u0003,\u0016\u0000\u0139\u013a"+ - "\u0005=\u0000\u0000\u013a\u013c\u0003,\u0016\u0000\u013b\u0139\u0001\u0000"+ - "\u0000\u0000\u013c\u013f\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000"+ - "\u0000\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e/\u0001\u0000\u0000"+ - "\u0000\u013f\u013d\u0001\u0000\u0000\u0000\u0140\u0141\u0007\u0001\u0000"+ - "\u0000\u01411\u0001\u0000\u0000\u0000\u0142\u0146\u0005}\u0000\u0000\u0143"+ - "\u0146\u00034\u001a\u0000\u0144\u0146\u00036\u001b\u0000\u0145\u0142\u0001"+ - "\u0000\u0000\u0000\u0145\u0143\u0001\u0000\u0000\u0000\u0145\u0144\u0001"+ - "\u0000\u0000\u0000\u01463\u0001\u0000\u0000\u0000\u0147\u014a\u0005J\u0000"+ - "\u0000\u0148\u014a\u0005\\\u0000\u0000\u0149\u0147\u0001\u0000\u0000\u0000"+ - "\u0149\u0148\u0001\u0000\u0000\u0000\u014a5\u0001\u0000\u0000\u0000\u014b"+ - "\u014e\u0005[\u0000\u0000\u014c\u014e\u0005]\u0000\u0000\u014d\u014b\u0001"+ - "\u0000\u0000\u0000\u014d\u014c\u0001\u0000\u0000\u0000\u014e7\u0001\u0000"+ - "\u0000\u0000\u014f\u0153\u00030\u0018\u0000\u0150\u0153\u00034\u001a\u0000"+ - "\u0151\u0153\u00036\u001b\u0000\u0152\u014f\u0001\u0000\u0000\u0000\u0152"+ - "\u0150\u0001\u0000\u0000\u0000\u0152\u0151\u0001\u0000\u0000\u0000\u0153"+ - "9\u0001\u0000\u0000\u0000\u0154\u0155\u0005\n\u0000\u0000\u0155\u0156"+ - "\u00055\u0000\u0000\u0156;\u0001\u0000\u0000\u0000\u0157\u0158\u0005\f"+ - "\u0000\u0000\u0158\u015d\u0003>\u001f\u0000\u0159\u015a\u0005=\u0000\u0000"+ - "\u015a\u015c\u0003>\u001f\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=\u0001\u0000\u0000\u0000\u015f\u015d"+ - "\u0001\u0000\u0000\u0000\u0160\u0162\u0003p8\u0000\u0161\u0163\u0007\u0002"+ - "\u0000\u0000\u0162\u0161\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000"+ - "\u0000\u0000\u0163\u0166\u0001\u0000\u0000\u0000\u0164\u0165\u0005H\u0000"+ - "\u0000\u0165\u0167\u0007\u0003\u0000\u0000\u0166\u0164\u0001\u0000\u0000"+ - "\u0000\u0166\u0167\u0001\u0000\u0000\u0000\u0167?\u0001\u0000\u0000\u0000"+ - "\u0168\u0169\u0005\u001a\u0000\u0000\u0169\u016a\u0003.\u0017\u0000\u016a"+ - "A\u0001\u0000\u0000\u0000\u016b\u016c\u0005\u0019\u0000\u0000\u016c\u016d"+ - "\u0003.\u0017\u0000\u016dC\u0001\u0000\u0000\u0000\u016e\u016f\u0005\u001d"+ - "\u0000\u0000\u016f\u0174\u0003F#\u0000\u0170\u0171\u0005=\u0000\u0000"+ - "\u0171\u0173\u0003F#\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0176"+ - "\u0001\u0000\u0000\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0174\u0175"+ - "\u0001\u0000\u0000\u0000\u0175E\u0001\u0000\u0000\u0000\u0176\u0174\u0001"+ - "\u0000\u0000\u0000\u0177\u0178\u0003,\u0016\u0000\u0178\u0179\u0005\u0081"+ - "\u0000\u0000\u0179\u017a\u0003,\u0016\u0000\u017aG\u0001\u0000\u0000\u0000"+ - "\u017b\u017c\u0005\u0007\u0000\u0000\u017c\u017d\u0003z=\u0000\u017d\u017f"+ - "\u0003\u008eG\u0000\u017e\u0180\u0003N\'\u0000\u017f\u017e\u0001\u0000"+ - "\u0000\u0000\u017f\u0180\u0001\u0000\u0000\u0000\u0180I\u0001\u0000\u0000"+ - "\u0000\u0181\u0182\u0005\t\u0000\u0000\u0182\u0183\u0003z=\u0000\u0183"+ - "\u0184\u0003\u008eG\u0000\u0184K\u0001\u0000\u0000\u0000\u0185\u0186\u0005"+ - "\u0018\u0000\u0000\u0186\u0187\u0003*\u0015\u0000\u0187M\u0001\u0000\u0000"+ - "\u0000\u0188\u018d\u0003P(\u0000\u0189\u018a\u0005=\u0000\u0000\u018a"+ - "\u018c\u0003P(\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\u018eO\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000"+ - "\u0000\u0000\u0190\u0191\u00030\u0018\u0000\u0191\u0192\u0005:\u0000\u0000"+ - "\u0192\u0193\u0003\u0084B\u0000\u0193Q\u0001\u0000\u0000\u0000\u0194\u0195"+ - "\u0005\u0006\u0000\u0000\u0195\u0196\u0003T*\u0000\u0196S\u0001\u0000"+ - "\u0000\u0000\u0197\u0198\u0005^\u0000\u0000\u0198\u0199\u0003\u0002\u0001"+ - "\u0000\u0199\u019a\u0005_\u0000\u0000\u019aU\u0001\u0000\u0000\u0000\u019b"+ - "\u019c\u0005\u001e\u0000\u0000\u019c\u019d\u0005\u0085\u0000\u0000\u019d"+ - "W\u0001\u0000\u0000\u0000\u019e\u019f\u0005\u0005\u0000\u0000\u019f\u01a2"+ - "\u0005%\u0000\u0000\u01a0\u01a1\u0005#\u0000\u0000\u01a1\u01a3\u0003,"+ - "\u0016\u0000\u01a2\u01a0\u0001\u0000\u0000\u0000\u01a2\u01a3\u0001\u0000"+ - "\u0000\u0000\u01a3\u01ad\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005$\u0000"+ - "\u0000\u01a5\u01aa\u0003Z-\u0000\u01a6\u01a7\u0005=\u0000\u0000\u01a7"+ - "\u01a9\u0003Z-\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac\u0001"+ - "\u0000\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab\u0001"+ - "\u0000\u0000\u0000\u01ab\u01ae\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001"+ - "\u0000\u0000\u0000\u01ad\u01a4\u0001\u0000\u0000\u0000\u01ad\u01ae\u0001"+ - "\u0000\u0000\u0000\u01aeY\u0001\u0000\u0000\u0000\u01af\u01b0\u0003,\u0016"+ - "\u0000\u01b0\u01b1\u0005:\u0000\u0000\u01b1\u01b3\u0001\u0000\u0000\u0000"+ - "\u01b2\u01af\u0001\u0000\u0000\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000"+ - "\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b5\u0003,\u0016\u0000\u01b5"+ - "[\u0001\u0000\u0000\u0000\u01b6\u01b7\u0005\u0017\u0000\u0000\u01b7\u01b8"+ - "\u0003\u0018\f\u0000\u01b8\u01b9\u0005#\u0000\u0000\u01b9\u01ba\u0003"+ - ".\u0017\u0000\u01ba]\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005\u000f\u0000"+ - "\u0000\u01bc\u01bf\u0003&\u0013\u0000\u01bd\u01be\u00057\u0000\u0000\u01be"+ - "\u01c0\u0003\u000e\u0007\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf"+ - "\u01c0\u0001\u0000\u0000\u0000\u01c0_\u0001\u0000\u0000\u0000\u01c1\u01c2"+ - "\u0005\u0004\u0000\u0000\u01c2\u01c5\u0003*\u0015\u0000\u01c3\u01c4\u0005"+ - "#\u0000\u0000\u01c4\u01c6\u0003*\u0015\u0000\u01c5\u01c3\u0001\u0000\u0000"+ - "\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6\u01cc\u0001\u0000\u0000"+ - "\u0000\u01c7\u01c8\u0005\u0081\u0000\u0000\u01c8\u01c9\u0003*\u0015\u0000"+ - "\u01c9\u01ca\u0005=\u0000\u0000\u01ca\u01cb\u0003*\u0015\u0000\u01cb\u01cd"+ - "\u0001\u0000\u0000\u0000\u01cc\u01c7\u0001\u0000\u0000\u0000\u01cc\u01cd"+ - "\u0001\u0000\u0000\u0000\u01cda\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005"+ - "\u001b\u0000\u0000\u01cf\u01d0\u0003.\u0017\u0000\u01d0c\u0001\u0000\u0000"+ - "\u0000\u01d1\u01d2\u0005\u0012\u0000\u0000\u01d2\u01d3\u0003f3\u0000\u01d3"+ - "e\u0001\u0000\u0000\u0000\u01d4\u01d6\u0003h4\u0000\u01d5\u01d4\u0001"+ - "\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7\u01d5\u0001"+ - "\u0000\u0000\u0000\u01d7\u01d8\u0001\u0000\u0000\u0000\u01d8g\u0001\u0000"+ - "\u0000\u0000\u01d9\u01da\u0005`\u0000\u0000\u01da\u01db\u0003j5\u0000"+ - "\u01db\u01dc\u0005a\u0000\u0000\u01dci\u0001\u0000\u0000\u0000\u01dd\u01de"+ - "\u00065\uffff\uffff\u0000\u01de\u01df\u0003l6\u0000\u01df\u01e5\u0001"+ - "\u0000\u0000\u0000\u01e0\u01e1\n\u0001\u0000\u0000\u01e1\u01e2\u00053"+ - "\u0000\u0000\u01e2\u01e4\u0003l6\u0000\u01e3\u01e0\u0001\u0000\u0000\u0000"+ - "\u01e4\u01e7\u0001\u0000\u0000\u0000\u01e5\u01e3\u0001\u0000\u0000\u0000"+ - "\u01e5\u01e6\u0001\u0000\u0000\u0000\u01e6k\u0001\u0000\u0000\u0000\u01e7"+ - "\u01e5\u0001\u0000\u0000\u0000\u01e8\u01ec\u0003\b\u0004\u0000\u01e9\u01ec"+ - "\u0003<\u001e\u0000\u01ea\u01ec\u0003:\u001d\u0000\u01eb\u01e8\u0001\u0000"+ - "\u0000\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01eb\u01ea\u0001\u0000"+ - "\u0000\u0000\u01ecm\u0001\u0000\u0000\u0000\u01ed\u01ee\u0005\u001c\u0000"+ - "\u0000\u01eeo\u0001\u0000\u0000\u0000\u01ef\u01f0\u00068\uffff\uffff\u0000"+ - "\u01f0\u01f1\u0005F\u0000\u0000\u01f1\u020d\u0003p8\b\u01f2\u020d\u0003"+ - "v;\u0000\u01f3\u020d\u0003r9\u0000\u01f4\u01f6\u0003v;\u0000\u01f5\u01f7"+ - "\u0005F\u0000\u0000\u01f6\u01f5\u0001\u0000\u0000\u0000\u01f6\u01f7\u0001"+ - "\u0000\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8\u01f9\u0005"+ - "B\u0000\u0000\u01f9\u01fa\u0005`\u0000\u0000\u01fa\u01ff\u0003v;\u0000"+ - "\u01fb\u01fc\u0005=\u0000\u0000\u01fc\u01fe\u0003v;\u0000\u01fd\u01fb"+ - "\u0001\u0000\u0000\u0000\u01fe\u0201\u0001\u0000\u0000\u0000\u01ff\u01fd"+ - "\u0001\u0000\u0000\u0000\u01ff\u0200\u0001\u0000\u0000\u0000\u0200\u0202"+ - "\u0001\u0000\u0000\u0000\u0201\u01ff\u0001\u0000\u0000\u0000\u0202\u0203"+ - "\u0005a\u0000\u0000\u0203\u020d\u0001\u0000\u0000\u0000\u0204\u0205\u0003"+ - "v;\u0000\u0205\u0207\u0005C\u0000\u0000\u0206\u0208\u0005F\u0000\u0000"+ - "\u0207\u0206\u0001\u0000\u0000\u0000\u0207\u0208\u0001\u0000\u0000\u0000"+ - "\u0208\u0209\u0001\u0000\u0000\u0000\u0209\u020a\u0005G\u0000\u0000\u020a"+ - "\u020d\u0001\u0000\u0000\u0000\u020b\u020d\u0003t:\u0000\u020c\u01ef\u0001"+ - "\u0000\u0000\u0000\u020c\u01f2\u0001\u0000\u0000\u0000\u020c\u01f3\u0001"+ - "\u0000\u0000\u0000\u020c\u01f4\u0001\u0000\u0000\u0000\u020c\u0204\u0001"+ - "\u0000\u0000\u0000\u020c\u020b\u0001\u0000\u0000\u0000\u020d\u0216\u0001"+ - "\u0000\u0000\u0000\u020e\u020f\n\u0005\u0000\u0000\u020f\u0210\u00058"+ - "\u0000\u0000\u0210\u0215\u0003p8\u0006\u0211\u0212\n\u0004\u0000\u0000"+ - "\u0212\u0213\u0005I\u0000\u0000\u0213\u0215\u0003p8\u0005\u0214\u020e"+ - "\u0001\u0000\u0000\u0000\u0214\u0211\u0001\u0000\u0000\u0000\u0215\u0218"+ - "\u0001\u0000\u0000\u0000\u0216\u0214\u0001\u0000\u0000\u0000\u0216\u0217"+ - "\u0001\u0000\u0000\u0000\u0217q\u0001\u0000\u0000\u0000\u0218\u0216\u0001"+ - "\u0000\u0000\u0000\u0219\u021b\u0003v;\u0000\u021a\u021c\u0005F\u0000"+ - "\u0000\u021b\u021a\u0001\u0000\u0000\u0000\u021b\u021c\u0001\u0000\u0000"+ - "\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d\u021e\u0005E\u0000\u0000"+ - "\u021e\u021f\u0003\u008eG\u0000\u021f\u0228\u0001\u0000\u0000\u0000\u0220"+ - "\u0222\u0003v;\u0000\u0221\u0223\u0005F\u0000\u0000\u0222\u0221\u0001"+ - "\u0000\u0000\u0000\u0222\u0223\u0001\u0000\u0000\u0000\u0223\u0224\u0001"+ - "\u0000\u0000\u0000\u0224\u0225\u0005K\u0000\u0000\u0225\u0226\u0003\u008e"+ - "G\u0000\u0226\u0228\u0001\u0000\u0000\u0000\u0227\u0219\u0001\u0000\u0000"+ - "\u0000\u0227\u0220\u0001\u0000\u0000\u0000\u0228s\u0001\u0000\u0000\u0000"+ - "\u0229\u022c\u0003*\u0015\u0000\u022a\u022b\u0005;\u0000\u0000\u022b\u022d"+ - "\u0003\n\u0005\u0000\u022c\u022a\u0001\u0000\u0000\u0000\u022c\u022d\u0001"+ - "\u0000\u0000\u0000\u022d\u022e\u0001\u0000\u0000\u0000\u022e\u022f\u0005"+ - "<\u0000\u0000\u022f\u0230\u0003\u0084B\u0000\u0230u\u0001\u0000\u0000"+ - "\u0000\u0231\u0237\u0003x<\u0000\u0232\u0233\u0003x<\u0000\u0233\u0234"+ - "\u0003\u0090H\u0000\u0234\u0235\u0003x<\u0000\u0235\u0237\u0001\u0000"+ - "\u0000\u0000\u0236\u0231\u0001\u0000\u0000\u0000\u0236\u0232\u0001\u0000"+ - "\u0000\u0000\u0237w\u0001\u0000\u0000\u0000\u0238\u0239\u0006<\uffff\uffff"+ - "\u0000\u0239\u023d\u0003z=\u0000\u023a\u023b\u0007\u0004\u0000\u0000\u023b"+ - "\u023d\u0003x<\u0003\u023c\u0238\u0001\u0000\u0000\u0000\u023c\u023a\u0001"+ - "\u0000\u0000\u0000\u023d\u0246\u0001\u0000\u0000\u0000\u023e\u023f\n\u0002"+ - "\u0000\u0000\u023f\u0240\u0007\u0005\u0000\u0000\u0240\u0245\u0003x<\u0003"+ - "\u0241\u0242\n\u0001\u0000\u0000\u0242\u0243\u0007\u0004\u0000\u0000\u0243"+ - "\u0245\u0003x<\u0002\u0244\u023e\u0001\u0000\u0000\u0000\u0244\u0241\u0001"+ - "\u0000\u0000\u0000\u0245\u0248\u0001\u0000\u0000\u0000\u0246\u0244\u0001"+ - "\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000\u0000\u0247y\u0001\u0000"+ - "\u0000\u0000\u0248\u0246\u0001\u0000\u0000\u0000\u0249\u024a\u0006=\uffff"+ - "\uffff\u0000\u024a\u0252\u0003\u0084B\u0000\u024b\u0252\u0003*\u0015\u0000"+ - "\u024c\u0252\u0003|>\u0000\u024d\u024e\u0005`\u0000\u0000\u024e\u024f"+ - "\u0003p8\u0000\u024f\u0250\u0005a\u0000\u0000\u0250\u0252\u0001\u0000"+ - "\u0000\u0000\u0251\u0249\u0001\u0000\u0000\u0000\u0251\u024b\u0001\u0000"+ - "\u0000\u0000\u0251\u024c\u0001\u0000\u0000\u0000\u0251\u024d\u0001\u0000"+ - "\u0000\u0000\u0252\u0258\u0001\u0000\u0000\u0000\u0253\u0254\n\u0001\u0000"+ - "\u0000\u0254\u0255\u0005;\u0000\u0000\u0255\u0257\u0003\n\u0005\u0000"+ - "\u0256\u0253\u0001\u0000\u0000\u0000\u0257\u025a\u0001\u0000\u0000\u0000"+ - "\u0258\u0256\u0001\u0000\u0000\u0000\u0258\u0259\u0001\u0000\u0000\u0000"+ - "\u0259{\u0001\u0000\u0000\u0000\u025a\u0258\u0001\u0000\u0000\u0000\u025b"+ - "\u025c\u0003~?\u0000\u025c\u026a\u0005`\u0000\u0000\u025d\u026b\u0005"+ - "V\u0000\u0000\u025e\u0263\u0003p8\u0000\u025f\u0260\u0005=\u0000\u0000"+ - "\u0260\u0262\u0003p8\u0000\u0261\u025f\u0001\u0000\u0000\u0000\u0262\u0265"+ - "\u0001\u0000\u0000\u0000\u0263\u0261\u0001\u0000\u0000\u0000\u0263\u0264"+ - "\u0001\u0000\u0000\u0000\u0264\u0268\u0001\u0000\u0000\u0000\u0265\u0263"+ - "\u0001\u0000\u0000\u0000\u0266\u0267\u0005=\u0000\u0000\u0267\u0269\u0003"+ - "\u0080@\u0000\u0268\u0266\u0001\u0000\u0000\u0000\u0268\u0269\u0001\u0000"+ - "\u0000\u0000\u0269\u026b\u0001\u0000\u0000\u0000\u026a\u025d\u0001\u0000"+ - "\u0000\u0000\u026a\u025e\u0001\u0000\u0000\u0000\u026a\u026b\u0001\u0000"+ - "\u0000\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u026d\u0005a\u0000"+ - "\u0000\u026d}\u0001\u0000\u0000\u0000\u026e\u026f\u00038\u001c\u0000\u026f"+ - "\u007f\u0001\u0000\u0000\u0000\u0270\u0271\u0005Y\u0000\u0000\u0271\u0276"+ - "\u0003\u0082A\u0000\u0272\u0273\u0005=\u0000\u0000\u0273\u0275\u0003\u0082"+ - "A\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\u0277\u0279\u0001\u0000\u0000\u0000\u0278\u0276\u0001\u0000\u0000"+ - "\u0000\u0279\u027a\u0005Z\u0000\u0000\u027a\u0081\u0001\u0000\u0000\u0000"+ - "\u027b\u027c\u0003\u008eG\u0000\u027c\u027d\u0005<\u0000\u0000\u027d\u027e"+ - "\u0003\u0084B\u0000\u027e\u0083\u0001\u0000\u0000\u0000\u027f\u02aa\u0005"+ - "G\u0000\u0000\u0280\u0281\u0003\u008cF\u0000\u0281\u0282\u0005b\u0000"+ - "\u0000\u0282\u02aa\u0001\u0000\u0000\u0000\u0283\u02aa\u0003\u008aE\u0000"+ - "\u0284\u02aa\u0003\u008cF\u0000\u0285\u02aa\u0003\u0086C\u0000\u0286\u02aa"+ - "\u00034\u001a\u0000\u0287\u02aa\u0003\u008eG\u0000\u0288\u0289\u0005^"+ - "\u0000\u0000\u0289\u028e\u0003\u0088D\u0000\u028a\u028b\u0005=\u0000\u0000"+ - "\u028b\u028d\u0003\u0088D\u0000\u028c\u028a\u0001\u0000\u0000\u0000\u028d"+ - "\u0290\u0001\u0000\u0000\u0000\u028e\u028c\u0001\u0000\u0000\u0000\u028e"+ - "\u028f\u0001\u0000\u0000\u0000\u028f\u0291\u0001\u0000\u0000\u0000\u0290"+ - "\u028e\u0001\u0000\u0000\u0000\u0291\u0292\u0005_\u0000\u0000\u0292\u02aa"+ - "\u0001\u0000\u0000\u0000\u0293\u0294\u0005^\u0000\u0000\u0294\u0299\u0003"+ - "\u0086C\u0000\u0295\u0296\u0005=\u0000\u0000\u0296\u0298\u0003\u0086C"+ - "\u0000\u0297\u0295\u0001\u0000\u0000\u0000\u0298\u029b\u0001\u0000\u0000"+ - "\u0000\u0299\u0297\u0001\u0000\u0000\u0000\u0299\u029a\u0001\u0000\u0000"+ - "\u0000\u029a\u029c\u0001\u0000\u0000\u0000\u029b\u0299\u0001\u0000\u0000"+ - "\u0000\u029c\u029d\u0005_\u0000\u0000\u029d\u02aa\u0001\u0000\u0000\u0000"+ - "\u029e\u029f\u0005^\u0000\u0000\u029f\u02a4\u0003\u008eG\u0000\u02a0\u02a1"+ - "\u0005=\u0000\u0000\u02a1\u02a3\u0003\u008eG\u0000\u02a2\u02a0\u0001\u0000"+ - "\u0000\u0000\u02a3\u02a6\u0001\u0000\u0000\u0000\u02a4\u02a2\u0001\u0000"+ - "\u0000\u0000\u02a4\u02a5\u0001\u0000\u0000\u0000\u02a5\u02a7\u0001\u0000"+ - "\u0000\u0000\u02a6\u02a4\u0001\u0000\u0000\u0000\u02a7\u02a8\u0005_\u0000"+ - "\u0000\u02a8\u02aa\u0001\u0000\u0000\u0000\u02a9\u027f\u0001\u0000\u0000"+ - "\u0000\u02a9\u0280\u0001\u0000\u0000\u0000\u02a9\u0283\u0001\u0000\u0000"+ - "\u0000\u02a9\u0284\u0001\u0000\u0000\u0000\u02a9\u0285\u0001\u0000\u0000"+ - "\u0000\u02a9\u0286\u0001\u0000\u0000\u0000\u02a9\u0287\u0001\u0000\u0000"+ - "\u0000\u02a9\u0288\u0001\u0000\u0000\u0000\u02a9\u0293\u0001\u0000\u0000"+ - "\u0000\u02a9\u029e\u0001\u0000\u0000\u0000\u02aa\u0085\u0001\u0000\u0000"+ - "\u0000\u02ab\u02ac\u0007\u0006\u0000\u0000\u02ac\u0087\u0001\u0000\u0000"+ - "\u0000\u02ad\u02b0\u0003\u008aE\u0000\u02ae\u02b0\u0003\u008cF\u0000\u02af"+ - "\u02ad\u0001\u0000\u0000\u0000\u02af\u02ae\u0001\u0000\u0000\u0000\u02b0"+ - "\u0089\u0001\u0000\u0000\u0000\u02b1\u02b3\u0007\u0004\u0000\u0000\u02b2"+ - "\u02b1\u0001\u0000\u0000\u0000\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3"+ - "\u02b4\u0001\u0000\u0000\u0000\u02b4\u02b5\u00056\u0000\u0000\u02b5\u008b"+ - "\u0001\u0000\u0000\u0000\u02b6\u02b8\u0007\u0004\u0000\u0000\u02b7\u02b6"+ - "\u0001\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02b9"+ - "\u0001\u0000\u0000\u0000\u02b9\u02ba\u00055\u0000\u0000\u02ba\u008d\u0001"+ - "\u0000\u0000\u0000\u02bb\u02bc\u00054\u0000\u0000\u02bc\u008f\u0001\u0000"+ - "\u0000\u0000\u02bd\u02be\u0007\u0007\u0000\u0000\u02be\u0091\u0001\u0000"+ - "\u0000\u0000\u02bf\u02c0\u0007\b\u0000\u0000\u02c0\u02c1\u0005o\u0000"+ - "\u0000\u02c1\u02c2\u0003\u0094J\u0000\u02c2\u02c3\u0003\u0096K\u0000\u02c3"+ - "\u0093\u0001\u0000\u0000\u0000\u02c4\u02c5\u0003\u0018\f\u0000\u02c5\u0095"+ - "\u0001\u0000\u0000\u0000\u02c6\u02c7\u0005#\u0000\u0000\u02c7\u02cc\u0003"+ - "\u0098L\u0000\u02c8\u02c9\u0005=\u0000\u0000\u02c9\u02cb\u0003\u0098L"+ - "\u0000\u02ca\u02c8\u0001\u0000\u0000\u0000\u02cb\u02ce\u0001\u0000\u0000"+ - "\u0000\u02cc\u02ca\u0001\u0000\u0000\u0000\u02cc\u02cd\u0001\u0000\u0000"+ - "\u0000\u02cd\u0097\u0001\u0000\u0000\u0000\u02ce\u02cc\u0001\u0000\u0000"+ - "\u0000\u02cf\u02d0\u0003v;\u0000\u02d0\u0099\u0001\u0000\u0000\u0000B"+ + "5\u00015\u00015\u00055\u01e4\b5\n5\f5\u01e7\t5\u00016\u00016\u00016\u0001"+ + "6\u00016\u00016\u00016\u00016\u00016\u00016\u00016\u00036\u01f4\b6\u0001"+ + "7\u00017\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00038\u01ff"+ + "\b8\u00018\u00018\u00018\u00018\u00018\u00058\u0206\b8\n8\f8\u0209\t8"+ + "\u00018\u00018\u00018\u00018\u00018\u00038\u0210\b8\u00018\u00018\u0001"+ + "8\u00038\u0215\b8\u00018\u00018\u00018\u00018\u00018\u00018\u00058\u021d"+ + "\b8\n8\f8\u0220\t8\u00019\u00019\u00039\u0224\b9\u00019\u00019\u00019"+ + "\u00019\u00019\u00039\u022b\b9\u00019\u00019\u00019\u00039\u0230\b9\u0001"+ + ":\u0001:\u0001:\u0003:\u0235\b:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001"+ + ";\u0001;\u0001;\u0003;\u023f\b;\u0001<\u0001<\u0001<\u0001<\u0003<\u0245"+ + "\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u024d\b<\n<\f<\u0250"+ + "\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0003=\u025a"+ + "\b=\u0001=\u0001=\u0001=\u0005=\u025f\b=\n=\f=\u0262\t=\u0001>\u0001>"+ + "\u0001>\u0001>\u0001>\u0001>\u0005>\u026a\b>\n>\f>\u026d\t>\u0001>\u0001"+ + ">\u0003>\u0271\b>\u0003>\u0273\b>\u0001>\u0001>\u0001?\u0001?\u0001@\u0001"+ + "@\u0001@\u0001@\u0005@\u027d\b@\n@\f@\u0280\t@\u0001@\u0001@\u0001A\u0001"+ + "A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u0295\bB\nB\fB\u0298\tB\u0001"+ + "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02a0\bB\nB\fB\u02a3\tB\u0001"+ + "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02ab\bB\nB\fB\u02ae\tB\u0001"+ + "B\u0001B\u0003B\u02b2\bB\u0001C\u0001C\u0001D\u0001D\u0003D\u02b8\bD\u0001"+ + "E\u0003E\u02bb\bE\u0001E\u0001E\u0001F\u0003F\u02c0\bF\u0001F\u0001F\u0001"+ + "G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001"+ + "J\u0001K\u0001K\u0001K\u0001K\u0005K\u02d3\bK\nK\fK\u02d6\tK\u0001L\u0001"+ + "L\u0001L\u0000\u0005\u0002jpxzM\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+ + "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+ + "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+ + "\u0090\u0092\u0094\u0096\u0098\u0000\t\u0002\u000044hh\u0001\u0000bc\u0002"+ + "\u000099>>\u0002\u0000AADD\u0001\u0000TU\u0001\u0000VX\u0002\u0000@@L"+ + "L\u0002\u0000MMOS\u0002\u0000\u0013\u0013\u0015\u0016\u02fc\u0000\u009a"+ + "\u0001\u0000\u0000\u0000\u0002\u009d\u0001\u0000\u0000\u0000\u0004\u00ae"+ + "\u0001\u0000\u0000\u0000\u0006\u00c9\u0001\u0000\u0000\u0000\b\u00cb\u0001"+ + "\u0000\u0000\u0000\n\u00ce\u0001\u0000\u0000\u0000\f\u00d0\u0001\u0000"+ + "\u0000\u0000\u000e\u00d3\u0001\u0000\u0000\u0000\u0010\u00de\u0001\u0000"+ + "\u0000\u0000\u0012\u00e2\u0001\u0000\u0000\u0000\u0014\u00e5\u0001\u0000"+ + "\u0000\u0000\u0016\u00e8\u0001\u0000\u0000\u0000\u0018\u00ff\u0001\u0000"+ + "\u0000\u0000\u001a\u0101\u0001\u0000\u0000\u0000\u001c\u0103\u0001\u0000"+ + "\u0000\u0000\u001e\u0105\u0001\u0000\u0000\u0000 \u0107\u0001\u0000\u0000"+ + "\u0000\"\u0110\u0001\u0000\u0000\u0000$\u0113\u0001\u0000\u0000\u0000"+ + "&\u011b\u0001\u0000\u0000\u0000(\u0123\u0001\u0000\u0000\u0000*\u0128"+ + "\u0001\u0000\u0000\u0000,\u0130\u0001\u0000\u0000\u0000.\u0138\u0001\u0000"+ + "\u0000\u00000\u0140\u0001\u0000\u0000\u00002\u0145\u0001\u0000\u0000\u0000"+ + "4\u0149\u0001\u0000\u0000\u00006\u014d\u0001\u0000\u0000\u00008\u0152"+ + "\u0001\u0000\u0000\u0000:\u0154\u0001\u0000\u0000\u0000<\u0157\u0001\u0000"+ + "\u0000\u0000>\u0160\u0001\u0000\u0000\u0000@\u0168\u0001\u0000\u0000\u0000"+ + "B\u016b\u0001\u0000\u0000\u0000D\u016e\u0001\u0000\u0000\u0000F\u0177"+ + "\u0001\u0000\u0000\u0000H\u017b\u0001\u0000\u0000\u0000J\u0181\u0001\u0000"+ + "\u0000\u0000L\u0185\u0001\u0000\u0000\u0000N\u0188\u0001\u0000\u0000\u0000"+ + "P\u0190\u0001\u0000\u0000\u0000R\u0194\u0001\u0000\u0000\u0000T\u0197"+ + "\u0001\u0000\u0000\u0000V\u019b\u0001\u0000\u0000\u0000X\u019e\u0001\u0000"+ + "\u0000\u0000Z\u01b2\u0001\u0000\u0000\u0000\\\u01b6\u0001\u0000\u0000"+ + "\u0000^\u01bb\u0001\u0000\u0000\u0000`\u01c1\u0001\u0000\u0000\u0000b"+ + "\u01ce\u0001\u0000\u0000\u0000d\u01d1\u0001\u0000\u0000\u0000f\u01d5\u0001"+ + "\u0000\u0000\u0000h\u01d9\u0001\u0000\u0000\u0000j\u01dd\u0001\u0000\u0000"+ + "\u0000l\u01f3\u0001\u0000\u0000\u0000n\u01f5\u0001\u0000\u0000\u0000p"+ + "\u0214\u0001\u0000\u0000\u0000r\u022f\u0001\u0000\u0000\u0000t\u0231\u0001"+ + "\u0000\u0000\u0000v\u023e\u0001\u0000\u0000\u0000x\u0244\u0001\u0000\u0000"+ + "\u0000z\u0259\u0001\u0000\u0000\u0000|\u0263\u0001\u0000\u0000\u0000~"+ + "\u0276\u0001\u0000\u0000\u0000\u0080\u0278\u0001\u0000\u0000\u0000\u0082"+ + "\u0283\u0001\u0000\u0000\u0000\u0084\u02b1\u0001\u0000\u0000\u0000\u0086"+ + "\u02b3\u0001\u0000\u0000\u0000\u0088\u02b7\u0001\u0000\u0000\u0000\u008a"+ + "\u02ba\u0001\u0000\u0000\u0000\u008c\u02bf\u0001\u0000\u0000\u0000\u008e"+ + "\u02c3\u0001\u0000\u0000\u0000\u0090\u02c5\u0001\u0000\u0000\u0000\u0092"+ + "\u02c7\u0001\u0000\u0000\u0000\u0094\u02cc\u0001\u0000\u0000\u0000\u0096"+ + "\u02ce\u0001\u0000\u0000\u0000\u0098\u02d7\u0001\u0000\u0000\u0000\u009a"+ + "\u009b\u0003\u0002\u0001\u0000\u009b\u009c\u0005\u0000\u0000\u0001\u009c"+ + "\u0001\u0001\u0000\u0000\u0000\u009d\u009e\u0006\u0001\uffff\uffff\u0000"+ + "\u009e\u009f\u0003\u0004\u0002\u0000\u009f\u00a5\u0001\u0000\u0000\u0000"+ + "\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2\u00053\u0000\u0000\u00a2"+ + "\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001\u0000\u0000\u0000\u00a4"+ + "\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000\u0000\u00a5"+ + "\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001\u0000\u0000\u0000\u00a7"+ + "\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003R)\u0000\u00a9\u00af\u0003"+ + "\u0012\t\u0000\u00aa\u00af\u0003\f\u0006\u0000\u00ab\u00af\u0003V+\u0000"+ + "\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad\u00af\u0003\u0014\n\u0000\u00ae"+ + "\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000\u00ae"+ + "\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000\u0000\u00ae"+ + "\u00ac\u0001\u0000\u0000\u0000\u00af\u0005\u0001\u0000\u0000\u0000\u00b0"+ + "\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003\b\u0004\u0000\u00b2\u00ca"+ + "\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000\u00b4\u00ca\u0003$\u0012"+ + "\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca\u0003B!\u0000\u00b7"+ + "\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9\u00ca\u0003J%\u0000"+ + "\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000\u00bc\u00ca\u0003"+ + "\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be\u00ca\u0003^/"+ + "\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003\\.\u0000"+ + "\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000\u00c3\u00c4"+ + "\u0004\u0003\u0005\u0000\u00c4\u00ca\u0003b1\u0000\u00c5\u00c6\u0004\u0003"+ + "\u0006\u0000\u00c6\u00ca\u0003d2\u0000\u00c7\u00c8\u0004\u0003\u0007\u0000"+ + "\u00c8\u00ca\u0003n7\u0000\u00c9\u00b0\u0001\u0000\u0000\u0000\u00c9\u00b1"+ + "\u0001\u0000\u0000\u0000\u00c9\u00b2\u0001\u0000\u0000\u0000\u00c9\u00b3"+ + "\u0001\u0000\u0000\u0000\u00c9\u00b4\u0001\u0000\u0000\u0000\u00c9\u00b5"+ + "\u0001\u0000\u0000\u0000\u00c9\u00b6\u0001\u0000\u0000\u0000\u00c9\u00b7"+ + "\u0001\u0000\u0000\u0000\u00c9\u00b8\u0001\u0000\u0000\u0000\u00c9\u00b9"+ + "\u0001\u0000\u0000\u0000\u00c9\u00ba\u0001\u0000\u0000\u0000\u00c9\u00bb"+ + "\u0001\u0000\u0000\u0000\u00c9\u00bc\u0001\u0000\u0000\u0000\u00c9\u00bd"+ + "\u0001\u0000\u0000\u0000\u00c9\u00bf\u0001\u0000\u0000\u0000\u00c9\u00c1"+ + "\u0001\u0000\u0000\u0000\u00c9\u00c3\u0001\u0000\u0000\u0000\u00c9\u00c5"+ + "\u0001\u0000\u0000\u0000\u00c9\u00c7\u0001\u0000\u0000\u0000\u00ca\u0007"+ + "\u0001\u0000\u0000\u0000\u00cb\u00cc\u0005\u000e\u0000\u0000\u00cc\u00cd"+ + "\u0003p8\u0000\u00cd\t\u0001\u0000\u0000\u0000\u00ce\u00cf\u00030\u0018"+ + "\u0000\u00cf\u000b\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005\u000b\u0000"+ + "\u0000\u00d1\u00d2\u0003\u000e\u0007\u0000\u00d2\r\u0001\u0000\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\u000f\u0001\u0000\u0000\u0000\u00da\u00d8"+ + "\u0001\u0000\u0000\u0000\u00db\u00dc\u0003*\u0015\u0000\u00dc\u00dd\u0005"+ + ":\u0000\u0000\u00dd\u00df\u0001\u0000\u0000\u0000\u00de\u00db\u0001\u0000"+ + "\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0\u0001\u0000"+ + "\u0000\u0000\u00e0\u00e1\u0003p8\u0000\u00e1\u0011\u0001\u0000\u0000\u0000"+ + "\u00e2\u00e3\u0005\u0010\u0000\u0000\u00e3\u00e4\u0003\u0016\u000b\u0000"+ + "\u00e4\u0013\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005\u0011\u0000\u0000"+ + "\u00e6\u00e7\u0003\u0016\u000b\u0000\u00e7\u0015\u0001\u0000\u0000\u0000"+ + "\u00e8\u00ed\u0003\u0018\f\u0000\u00e9\u00ea\u0005=\u0000\u0000\u00ea"+ + "\u00ec\u0003\u0018\f\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000\u00ec\u00ef"+ + "\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000\u00ed\u00ee"+ + "\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000\u00ef\u00ed"+ + "\u0001\u0000\u0000\u0000\u00f0\u00f2\u0003 \u0010\u0000\u00f1\u00f0\u0001"+ + "\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2\u0017\u0001"+ + "\u0000\u0000\u0000\u00f3\u00f4\u0003\u001a\r\u0000\u00f4\u00f5\u0005<"+ + "\u0000\u0000\u00f5\u00f7\u0001\u0000\u0000\u0000\u00f6\u00f3\u0001\u0000"+ + "\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001\u0000"+ + "\u0000\u0000\u00f8\u0100\u0003\u001e\u000f\u0000\u00f9\u00fa\u0004\f\b"+ + "\u0000\u00fa\u00fd\u0003\u001e\u000f\u0000\u00fb\u00fc\u0005;\u0000\u0000"+ + "\u00fc\u00fe\u0003\u001c\u000e\u0000\u00fd\u00fb\u0001\u0000\u0000\u0000"+ + "\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0100\u0001\u0000\u0000\u0000"+ + "\u00ff\u00f6\u0001\u0000\u0000\u0000\u00ff\u00f9\u0001\u0000\u0000\u0000"+ + "\u0100\u0019\u0001\u0000\u0000\u0000\u0101\u0102\u0007\u0000\u0000\u0000"+ + "\u0102\u001b\u0001\u0000\u0000\u0000\u0103\u0104\u0007\u0000\u0000\u0000"+ + "\u0104\u001d\u0001\u0000\u0000\u0000\u0105\u0106\u0007\u0000\u0000\u0000"+ + "\u0106\u001f\u0001\u0000\u0000\u0000\u0107\u0108\u0005g\u0000\u0000\u0108"+ + "\u010d\u0005h\u0000\u0000\u0109\u010a\u0005=\u0000\u0000\u010a\u010c\u0005"+ + "h\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c\u010f\u0001\u0000"+ + "\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010d\u010e\u0001\u0000"+ + "\u0000\u0000\u010e!\u0001\u0000\u0000\u0000\u010f\u010d\u0001\u0000\u0000"+ + "\u0000\u0110\u0111\u0005\b\u0000\u0000\u0111\u0112\u0003\u000e\u0007\u0000"+ + "\u0112#\u0001\u0000\u0000\u0000\u0113\u0115\u0005\r\u0000\u0000\u0114"+ + "\u0116\u0003&\u0013\u0000\u0115\u0114\u0001\u0000\u0000\u0000\u0115\u0116"+ + "\u0001\u0000\u0000\u0000\u0116\u0119\u0001\u0000\u0000\u0000\u0117\u0118"+ + "\u00057\u0000\u0000\u0118\u011a\u0003\u000e\u0007\u0000\u0119\u0117\u0001"+ + "\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a%\u0001\u0000"+ + "\u0000\u0000\u011b\u0120\u0003(\u0014\u0000\u011c\u011d\u0005=\u0000\u0000"+ + "\u011d\u011f\u0003(\u0014\u0000\u011e\u011c\u0001\u0000\u0000\u0000\u011f"+ + "\u0122\u0001\u0000\u0000\u0000\u0120\u011e\u0001\u0000\u0000\u0000\u0120"+ + "\u0121\u0001\u0000\u0000\u0000\u0121\'\u0001\u0000\u0000\u0000\u0122\u0120"+ + "\u0001\u0000\u0000\u0000\u0123\u0126\u0003\u0010\b\u0000\u0124\u0125\u0005"+ + "\u000e\u0000\u0000\u0125\u0127\u0003p8\u0000\u0126\u0124\u0001\u0000\u0000"+ + "\u0000\u0126\u0127\u0001\u0000\u0000\u0000\u0127)\u0001\u0000\u0000\u0000"+ + "\u0128\u012d\u00038\u001c\u0000\u0129\u012a\u0005?\u0000\u0000\u012a\u012c"+ + "\u00038\u001c\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u012f\u0001"+ + "\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012e\u0001"+ + "\u0000\u0000\u0000\u012e+\u0001\u0000\u0000\u0000\u012f\u012d\u0001\u0000"+ + "\u0000\u0000\u0130\u0135\u00032\u0019\u0000\u0131\u0132\u0005?\u0000\u0000"+ + "\u0132\u0134\u00032\u0019\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0134"+ + "\u0137\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0135"+ + "\u0136\u0001\u0000\u0000\u0000\u0136-\u0001\u0000\u0000\u0000\u0137\u0135"+ + "\u0001\u0000\u0000\u0000\u0138\u013d\u0003,\u0016\u0000\u0139\u013a\u0005"+ + "=\u0000\u0000\u013a\u013c\u0003,\u0016\u0000\u013b\u0139\u0001\u0000\u0000"+ + "\u0000\u013c\u013f\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000"+ + "\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e/\u0001\u0000\u0000\u0000"+ + "\u013f\u013d\u0001\u0000\u0000\u0000\u0140\u0141\u0007\u0001\u0000\u0000"+ + "\u01411\u0001\u0000\u0000\u0000\u0142\u0146\u0005}\u0000\u0000\u0143\u0146"+ + "\u00034\u001a\u0000\u0144\u0146\u00036\u001b\u0000\u0145\u0142\u0001\u0000"+ + "\u0000\u0000\u0145\u0143\u0001\u0000\u0000\u0000\u0145\u0144\u0001\u0000"+ + "\u0000\u0000\u01463\u0001\u0000\u0000\u0000\u0147\u014a\u0005J\u0000\u0000"+ + "\u0148\u014a\u0005\\\u0000\u0000\u0149\u0147\u0001\u0000\u0000\u0000\u0149"+ + "\u0148\u0001\u0000\u0000\u0000\u014a5\u0001\u0000\u0000\u0000\u014b\u014e"+ + "\u0005[\u0000\u0000\u014c\u014e\u0005]\u0000\u0000\u014d\u014b\u0001\u0000"+ + "\u0000\u0000\u014d\u014c\u0001\u0000\u0000\u0000\u014e7\u0001\u0000\u0000"+ + "\u0000\u014f\u0153\u00030\u0018\u0000\u0150\u0153\u00034\u001a\u0000\u0151"+ + "\u0153\u00036\u001b\u0000\u0152\u014f\u0001\u0000\u0000\u0000\u0152\u0150"+ + "\u0001\u0000\u0000\u0000\u0152\u0151\u0001\u0000\u0000\u0000\u01539\u0001"+ + "\u0000\u0000\u0000\u0154\u0155\u0005\n\u0000\u0000\u0155\u0156\u00055"+ + "\u0000\u0000\u0156;\u0001\u0000\u0000\u0000\u0157\u0158\u0005\f\u0000"+ + "\u0000\u0158\u015d\u0003>\u001f\u0000\u0159\u015a\u0005=\u0000\u0000\u015a"+ + "\u015c\u0003>\u001f\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=\u0001\u0000\u0000\u0000\u015f\u015d\u0001"+ + "\u0000\u0000\u0000\u0160\u0162\u0003p8\u0000\u0161\u0163\u0007\u0002\u0000"+ + "\u0000\u0162\u0161\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000"+ + "\u0000\u0163\u0166\u0001\u0000\u0000\u0000\u0164\u0165\u0005H\u0000\u0000"+ + "\u0165\u0167\u0007\u0003\u0000\u0000\u0166\u0164\u0001\u0000\u0000\u0000"+ + "\u0166\u0167\u0001\u0000\u0000\u0000\u0167?\u0001\u0000\u0000\u0000\u0168"+ + "\u0169\u0005\u001a\u0000\u0000\u0169\u016a\u0003.\u0017\u0000\u016aA\u0001"+ + "\u0000\u0000\u0000\u016b\u016c\u0005\u0019\u0000\u0000\u016c\u016d\u0003"+ + ".\u0017\u0000\u016dC\u0001\u0000\u0000\u0000\u016e\u016f\u0005\u001d\u0000"+ + "\u0000\u016f\u0174\u0003F#\u0000\u0170\u0171\u0005=\u0000\u0000\u0171"+ + "\u0173\u0003F#\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0176\u0001"+ + "\u0000\u0000\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0174\u0175\u0001"+ + "\u0000\u0000\u0000\u0175E\u0001\u0000\u0000\u0000\u0176\u0174\u0001\u0000"+ + "\u0000\u0000\u0177\u0178\u0003,\u0016\u0000\u0178\u0179\u0005\u0081\u0000"+ + "\u0000\u0179\u017a\u0003,\u0016\u0000\u017aG\u0001\u0000\u0000\u0000\u017b"+ + "\u017c\u0005\u0007\u0000\u0000\u017c\u017d\u0003z=\u0000\u017d\u017f\u0003"+ + "\u008eG\u0000\u017e\u0180\u0003N\'\u0000\u017f\u017e\u0001\u0000\u0000"+ + "\u0000\u017f\u0180\u0001\u0000\u0000\u0000\u0180I\u0001\u0000\u0000\u0000"+ + "\u0181\u0182\u0005\t\u0000\u0000\u0182\u0183\u0003z=\u0000\u0183\u0184"+ + "\u0003\u008eG\u0000\u0184K\u0001\u0000\u0000\u0000\u0185\u0186\u0005\u0018"+ + "\u0000\u0000\u0186\u0187\u0003*\u0015\u0000\u0187M\u0001\u0000\u0000\u0000"+ + "\u0188\u018d\u0003P(\u0000\u0189\u018a\u0005=\u0000\u0000\u018a\u018c"+ + "\u0003P(\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\u018eO\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000"+ + "\u0000\u0190\u0191\u00030\u0018\u0000\u0191\u0192\u0005:\u0000\u0000\u0192"+ + "\u0193\u0003\u0084B\u0000\u0193Q\u0001\u0000\u0000\u0000\u0194\u0195\u0005"+ + "\u0006\u0000\u0000\u0195\u0196\u0003T*\u0000\u0196S\u0001\u0000\u0000"+ + "\u0000\u0197\u0198\u0005^\u0000\u0000\u0198\u0199\u0003\u0002\u0001\u0000"+ + "\u0199\u019a\u0005_\u0000\u0000\u019aU\u0001\u0000\u0000\u0000\u019b\u019c"+ + "\u0005\u001e\u0000\u0000\u019c\u019d\u0005\u0085\u0000\u0000\u019dW\u0001"+ + "\u0000\u0000\u0000\u019e\u019f\u0005\u0005\u0000\u0000\u019f\u01a2\u0005"+ + "%\u0000\u0000\u01a0\u01a1\u0005#\u0000\u0000\u01a1\u01a3\u0003,\u0016"+ + "\u0000\u01a2\u01a0\u0001\u0000\u0000\u0000\u01a2\u01a3\u0001\u0000\u0000"+ + "\u0000\u01a3\u01ad\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005$\u0000\u0000"+ + "\u01a5\u01aa\u0003Z-\u0000\u01a6\u01a7\u0005=\u0000\u0000\u01a7\u01a9"+ + "\u0003Z-\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac\u0001\u0000"+ + "\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab\u0001\u0000"+ + "\u0000\u0000\u01ab\u01ae\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001\u0000"+ + "\u0000\u0000\u01ad\u01a4\u0001\u0000\u0000\u0000\u01ad\u01ae\u0001\u0000"+ + "\u0000\u0000\u01aeY\u0001\u0000\u0000\u0000\u01af\u01b0\u0003,\u0016\u0000"+ + "\u01b0\u01b1\u0005:\u0000\u0000\u01b1\u01b3\u0001\u0000\u0000\u0000\u01b2"+ + "\u01af\u0001\u0000\u0000\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000\u01b3"+ + "\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b5\u0003,\u0016\u0000\u01b5[\u0001"+ + "\u0000\u0000\u0000\u01b6\u01b7\u0005\u0017\u0000\u0000\u01b7\u01b8\u0003"+ + "\u0018\f\u0000\u01b8\u01b9\u0005#\u0000\u0000\u01b9\u01ba\u0003.\u0017"+ + "\u0000\u01ba]\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005\u000f\u0000\u0000"+ + "\u01bc\u01bf\u0003&\u0013\u0000\u01bd\u01be\u00057\u0000\u0000\u01be\u01c0"+ + "\u0003\u000e\u0007\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0"+ + "\u0001\u0000\u0000\u0000\u01c0_\u0001\u0000\u0000\u0000\u01c1\u01c2\u0005"+ + "\u0004\u0000\u0000\u01c2\u01c5\u0003*\u0015\u0000\u01c3\u01c4\u0005#\u0000"+ + "\u0000\u01c4\u01c6\u0003*\u0015\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000"+ + "\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6\u01cc\u0001\u0000\u0000\u0000"+ + "\u01c7\u01c8\u0005\u0081\u0000\u0000\u01c8\u01c9\u0003*\u0015\u0000\u01c9"+ + "\u01ca\u0005=\u0000\u0000\u01ca\u01cb\u0003*\u0015\u0000\u01cb\u01cd\u0001"+ + "\u0000\u0000\u0000\u01cc\u01c7\u0001\u0000\u0000\u0000\u01cc\u01cd\u0001"+ + "\u0000\u0000\u0000\u01cda\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005\u001b"+ + "\u0000\u0000\u01cf\u01d0\u0003.\u0017\u0000\u01d0c\u0001\u0000\u0000\u0000"+ + "\u01d1\u01d2\u0005\u0012\u0000\u0000\u01d2\u01d3\u0003f3\u0000\u01d3e"+ + "\u0001\u0000\u0000\u0000\u01d4\u01d6\u0003h4\u0000\u01d5\u01d4\u0001\u0000"+ + "\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7\u01d5\u0001\u0000"+ + "\u0000\u0000\u01d7\u01d8\u0001\u0000\u0000\u0000\u01d8g\u0001\u0000\u0000"+ + "\u0000\u01d9\u01da\u0005`\u0000\u0000\u01da\u01db\u0003j5\u0000\u01db"+ + "\u01dc\u0005a\u0000\u0000\u01dci\u0001\u0000\u0000\u0000\u01dd\u01de\u0006"+ + "5\uffff\uffff\u0000\u01de\u01df\u0003l6\u0000\u01df\u01e5\u0001\u0000"+ + "\u0000\u0000\u01e0\u01e1\n\u0001\u0000\u0000\u01e1\u01e2\u00053\u0000"+ + "\u0000\u01e2\u01e4\u0003l6\u0000\u01e3\u01e0\u0001\u0000\u0000\u0000\u01e4"+ + "\u01e7\u0001\u0000\u0000\u0000\u01e5\u01e3\u0001\u0000\u0000\u0000\u01e5"+ + "\u01e6\u0001\u0000\u0000\u0000\u01e6k\u0001\u0000\u0000\u0000\u01e7\u01e5"+ + "\u0001\u0000\u0000\u0000\u01e8\u01f4\u0003\"\u0011\u0000\u01e9\u01f4\u0003"+ + "\b\u0004\u0000\u01ea\u01f4\u0003@ \u0000\u01eb\u01f4\u0003:\u001d\u0000"+ + "\u01ec\u01f4\u0003$\u0012\u0000\u01ed\u01f4\u0003<\u001e\u0000\u01ee\u01f4"+ + "\u0003B!\u0000\u01ef\u01f4\u0003D\"\u0000\u01f0\u01f4\u0003H$\u0000\u01f1"+ + "\u01f4\u0003J%\u0000\u01f2\u01f4\u0003L&\u0000\u01f3\u01e8\u0001\u0000"+ + "\u0000\u0000\u01f3\u01e9\u0001\u0000\u0000\u0000\u01f3\u01ea\u0001\u0000"+ + "\u0000\u0000\u01f3\u01eb\u0001\u0000\u0000\u0000\u01f3\u01ec\u0001\u0000"+ + "\u0000\u0000\u01f3\u01ed\u0001\u0000\u0000\u0000\u01f3\u01ee\u0001\u0000"+ + "\u0000\u0000\u01f3\u01ef\u0001\u0000\u0000\u0000\u01f3\u01f0\u0001\u0000"+ + "\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f3\u01f2\u0001\u0000"+ + "\u0000\u0000\u01f4m\u0001\u0000\u0000\u0000\u01f5\u01f6\u0005\u001c\u0000"+ + "\u0000\u01f6o\u0001\u0000\u0000\u0000\u01f7\u01f8\u00068\uffff\uffff\u0000"+ + "\u01f8\u01f9\u0005F\u0000\u0000\u01f9\u0215\u0003p8\b\u01fa\u0215\u0003"+ + "v;\u0000\u01fb\u0215\u0003r9\u0000\u01fc\u01fe\u0003v;\u0000\u01fd\u01ff"+ + "\u0005F\u0000\u0000\u01fe\u01fd\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001"+ + "\u0000\u0000\u0000\u01ff\u0200\u0001\u0000\u0000\u0000\u0200\u0201\u0005"+ + "B\u0000\u0000\u0201\u0202\u0005`\u0000\u0000\u0202\u0207\u0003v;\u0000"+ + "\u0203\u0204\u0005=\u0000\u0000\u0204\u0206\u0003v;\u0000\u0205\u0203"+ + "\u0001\u0000\u0000\u0000\u0206\u0209\u0001\u0000\u0000\u0000\u0207\u0205"+ + "\u0001\u0000\u0000\u0000\u0207\u0208\u0001\u0000\u0000\u0000\u0208\u020a"+ + "\u0001\u0000\u0000\u0000\u0209\u0207\u0001\u0000\u0000\u0000\u020a\u020b"+ + "\u0005a\u0000\u0000\u020b\u0215\u0001\u0000\u0000\u0000\u020c\u020d\u0003"+ + "v;\u0000\u020d\u020f\u0005C\u0000\u0000\u020e\u0210\u0005F\u0000\u0000"+ + "\u020f\u020e\u0001\u0000\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000"+ + "\u0210\u0211\u0001\u0000\u0000\u0000\u0211\u0212\u0005G\u0000\u0000\u0212"+ + "\u0215\u0001\u0000\u0000\u0000\u0213\u0215\u0003t:\u0000\u0214\u01f7\u0001"+ + "\u0000\u0000\u0000\u0214\u01fa\u0001\u0000\u0000\u0000\u0214\u01fb\u0001"+ + "\u0000\u0000\u0000\u0214\u01fc\u0001\u0000\u0000\u0000\u0214\u020c\u0001"+ + "\u0000\u0000\u0000\u0214\u0213\u0001\u0000\u0000\u0000\u0215\u021e\u0001"+ + "\u0000\u0000\u0000\u0216\u0217\n\u0005\u0000\u0000\u0217\u0218\u00058"+ + "\u0000\u0000\u0218\u021d\u0003p8\u0006\u0219\u021a\n\u0004\u0000\u0000"+ + "\u021a\u021b\u0005I\u0000\u0000\u021b\u021d\u0003p8\u0005\u021c\u0216"+ + "\u0001\u0000\u0000\u0000\u021c\u0219\u0001\u0000\u0000\u0000\u021d\u0220"+ + "\u0001\u0000\u0000\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021e\u021f"+ + "\u0001\u0000\u0000\u0000\u021fq\u0001\u0000\u0000\u0000\u0220\u021e\u0001"+ + "\u0000\u0000\u0000\u0221\u0223\u0003v;\u0000\u0222\u0224\u0005F\u0000"+ + "\u0000\u0223\u0222\u0001\u0000\u0000\u0000\u0223\u0224\u0001\u0000\u0000"+ + "\u0000\u0224\u0225\u0001\u0000\u0000\u0000\u0225\u0226\u0005E\u0000\u0000"+ + "\u0226\u0227\u0003\u008eG\u0000\u0227\u0230\u0001\u0000\u0000\u0000\u0228"+ + "\u022a\u0003v;\u0000\u0229\u022b\u0005F\u0000\u0000\u022a\u0229\u0001"+ + "\u0000\u0000\u0000\u022a\u022b\u0001\u0000\u0000\u0000\u022b\u022c\u0001"+ + "\u0000\u0000\u0000\u022c\u022d\u0005K\u0000\u0000\u022d\u022e\u0003\u008e"+ + "G\u0000\u022e\u0230\u0001\u0000\u0000\u0000\u022f\u0221\u0001\u0000\u0000"+ + "\u0000\u022f\u0228\u0001\u0000\u0000\u0000\u0230s\u0001\u0000\u0000\u0000"+ + "\u0231\u0234\u0003*\u0015\u0000\u0232\u0233\u0005;\u0000\u0000\u0233\u0235"+ + "\u0003\n\u0005\u0000\u0234\u0232\u0001\u0000\u0000\u0000\u0234\u0235\u0001"+ + "\u0000\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237\u0005"+ + "<\u0000\u0000\u0237\u0238\u0003\u0084B\u0000\u0238u\u0001\u0000\u0000"+ + "\u0000\u0239\u023f\u0003x<\u0000\u023a\u023b\u0003x<\u0000\u023b\u023c"+ + "\u0003\u0090H\u0000\u023c\u023d\u0003x<\u0000\u023d\u023f\u0001\u0000"+ + "\u0000\u0000\u023e\u0239\u0001\u0000\u0000\u0000\u023e\u023a\u0001\u0000"+ + "\u0000\u0000\u023fw\u0001\u0000\u0000\u0000\u0240\u0241\u0006<\uffff\uffff"+ + "\u0000\u0241\u0245\u0003z=\u0000\u0242\u0243\u0007\u0004\u0000\u0000\u0243"+ + "\u0245\u0003x<\u0003\u0244\u0240\u0001\u0000\u0000\u0000\u0244\u0242\u0001"+ + "\u0000\u0000\u0000\u0245\u024e\u0001\u0000\u0000\u0000\u0246\u0247\n\u0002"+ + "\u0000\u0000\u0247\u0248\u0007\u0005\u0000\u0000\u0248\u024d\u0003x<\u0003"+ + "\u0249\u024a\n\u0001\u0000\u0000\u024a\u024b\u0007\u0004\u0000\u0000\u024b"+ + "\u024d\u0003x<\u0002\u024c\u0246\u0001\u0000\u0000\u0000\u024c\u0249\u0001"+ + "\u0000\u0000\u0000\u024d\u0250\u0001\u0000\u0000\u0000\u024e\u024c\u0001"+ + "\u0000\u0000\u0000\u024e\u024f\u0001\u0000\u0000\u0000\u024fy\u0001\u0000"+ + "\u0000\u0000\u0250\u024e\u0001\u0000\u0000\u0000\u0251\u0252\u0006=\uffff"+ + "\uffff\u0000\u0252\u025a\u0003\u0084B\u0000\u0253\u025a\u0003*\u0015\u0000"+ + "\u0254\u025a\u0003|>\u0000\u0255\u0256\u0005`\u0000\u0000\u0256\u0257"+ + "\u0003p8\u0000\u0257\u0258\u0005a\u0000\u0000\u0258\u025a\u0001\u0000"+ + "\u0000\u0000\u0259\u0251\u0001\u0000\u0000\u0000\u0259\u0253\u0001\u0000"+ + "\u0000\u0000\u0259\u0254\u0001\u0000\u0000\u0000\u0259\u0255\u0001\u0000"+ + "\u0000\u0000\u025a\u0260\u0001\u0000\u0000\u0000\u025b\u025c\n\u0001\u0000"+ + "\u0000\u025c\u025d\u0005;\u0000\u0000\u025d\u025f\u0003\n\u0005\u0000"+ + "\u025e\u025b\u0001\u0000\u0000\u0000\u025f\u0262\u0001\u0000\u0000\u0000"+ + "\u0260\u025e\u0001\u0000\u0000\u0000\u0260\u0261\u0001\u0000\u0000\u0000"+ + "\u0261{\u0001\u0000\u0000\u0000\u0262\u0260\u0001\u0000\u0000\u0000\u0263"+ + "\u0264\u0003~?\u0000\u0264\u0272\u0005`\u0000\u0000\u0265\u0273\u0005"+ + "V\u0000\u0000\u0266\u026b\u0003p8\u0000\u0267\u0268\u0005=\u0000\u0000"+ + "\u0268\u026a\u0003p8\u0000\u0269\u0267\u0001\u0000\u0000\u0000\u026a\u026d"+ + "\u0001\u0000\u0000\u0000\u026b\u0269\u0001\u0000\u0000\u0000\u026b\u026c"+ + "\u0001\u0000\u0000\u0000\u026c\u0270\u0001\u0000\u0000\u0000\u026d\u026b"+ + "\u0001\u0000\u0000\u0000\u026e\u026f\u0005=\u0000\u0000\u026f\u0271\u0003"+ + "\u0080@\u0000\u0270\u026e\u0001\u0000\u0000\u0000\u0270\u0271\u0001\u0000"+ + "\u0000\u0000\u0271\u0273\u0001\u0000\u0000\u0000\u0272\u0265\u0001\u0000"+ + "\u0000\u0000\u0272\u0266\u0001\u0000\u0000\u0000\u0272\u0273\u0001\u0000"+ + "\u0000\u0000\u0273\u0274\u0001\u0000\u0000\u0000\u0274\u0275\u0005a\u0000"+ + "\u0000\u0275}\u0001\u0000\u0000\u0000\u0276\u0277\u00038\u001c\u0000\u0277"+ + "\u007f\u0001\u0000\u0000\u0000\u0278\u0279\u0005Y\u0000\u0000\u0279\u027e"+ + "\u0003\u0082A\u0000\u027a\u027b\u0005=\u0000\u0000\u027b\u027d\u0003\u0082"+ + "A\u0000\u027c\u027a\u0001\u0000\u0000\u0000\u027d\u0280\u0001\u0000\u0000"+ + "\u0000\u027e\u027c\u0001\u0000\u0000\u0000\u027e\u027f\u0001\u0000\u0000"+ + "\u0000\u027f\u0281\u0001\u0000\u0000\u0000\u0280\u027e\u0001\u0000\u0000"+ + "\u0000\u0281\u0282\u0005Z\u0000\u0000\u0282\u0081\u0001\u0000\u0000\u0000"+ + "\u0283\u0284\u0003\u008eG\u0000\u0284\u0285\u0005<\u0000\u0000\u0285\u0286"+ + "\u0003\u0084B\u0000\u0286\u0083\u0001\u0000\u0000\u0000\u0287\u02b2\u0005"+ + "G\u0000\u0000\u0288\u0289\u0003\u008cF\u0000\u0289\u028a\u0005b\u0000"+ + "\u0000\u028a\u02b2\u0001\u0000\u0000\u0000\u028b\u02b2\u0003\u008aE\u0000"+ + "\u028c\u02b2\u0003\u008cF\u0000\u028d\u02b2\u0003\u0086C\u0000\u028e\u02b2"+ + "\u00034\u001a\u0000\u028f\u02b2\u0003\u008eG\u0000\u0290\u0291\u0005^"+ + "\u0000\u0000\u0291\u0296\u0003\u0088D\u0000\u0292\u0293\u0005=\u0000\u0000"+ + "\u0293\u0295\u0003\u0088D\u0000\u0294\u0292\u0001\u0000\u0000\u0000\u0295"+ + "\u0298\u0001\u0000\u0000\u0000\u0296\u0294\u0001\u0000\u0000\u0000\u0296"+ + "\u0297\u0001\u0000\u0000\u0000\u0297\u0299\u0001\u0000\u0000\u0000\u0298"+ + "\u0296\u0001\u0000\u0000\u0000\u0299\u029a\u0005_\u0000\u0000\u029a\u02b2"+ + "\u0001\u0000\u0000\u0000\u029b\u029c\u0005^\u0000\u0000\u029c\u02a1\u0003"+ + "\u0086C\u0000\u029d\u029e\u0005=\u0000\u0000\u029e\u02a0\u0003\u0086C"+ + "\u0000\u029f\u029d\u0001\u0000\u0000\u0000\u02a0\u02a3\u0001\u0000\u0000"+ + "\u0000\u02a1\u029f\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000"+ + "\u0000\u02a2\u02a4\u0001\u0000\u0000\u0000\u02a3\u02a1\u0001\u0000\u0000"+ + "\u0000\u02a4\u02a5\u0005_\u0000\u0000\u02a5\u02b2\u0001\u0000\u0000\u0000"+ + "\u02a6\u02a7\u0005^\u0000\u0000\u02a7\u02ac\u0003\u008eG\u0000\u02a8\u02a9"+ + "\u0005=\u0000\u0000\u02a9\u02ab\u0003\u008eG\u0000\u02aa\u02a8\u0001\u0000"+ + "\u0000\u0000\u02ab\u02ae\u0001\u0000\u0000\u0000\u02ac\u02aa\u0001\u0000"+ + "\u0000\u0000\u02ac\u02ad\u0001\u0000\u0000\u0000\u02ad\u02af\u0001\u0000"+ + "\u0000\u0000\u02ae\u02ac\u0001\u0000\u0000\u0000\u02af\u02b0\u0005_\u0000"+ + "\u0000\u02b0\u02b2\u0001\u0000\u0000\u0000\u02b1\u0287\u0001\u0000\u0000"+ + "\u0000\u02b1\u0288\u0001\u0000\u0000\u0000\u02b1\u028b\u0001\u0000\u0000"+ + "\u0000\u02b1\u028c\u0001\u0000\u0000\u0000\u02b1\u028d\u0001\u0000\u0000"+ + "\u0000\u02b1\u028e\u0001\u0000\u0000\u0000\u02b1\u028f\u0001\u0000\u0000"+ + "\u0000\u02b1\u0290\u0001\u0000\u0000\u0000\u02b1\u029b\u0001\u0000\u0000"+ + "\u0000\u02b1\u02a6\u0001\u0000\u0000\u0000\u02b2\u0085\u0001\u0000\u0000"+ + "\u0000\u02b3\u02b4\u0007\u0006\u0000\u0000\u02b4\u0087\u0001\u0000\u0000"+ + "\u0000\u02b5\u02b8\u0003\u008aE\u0000\u02b6\u02b8\u0003\u008cF\u0000\u02b7"+ + "\u02b5\u0001\u0000\u0000\u0000\u02b7\u02b6\u0001\u0000\u0000\u0000\u02b8"+ + "\u0089\u0001\u0000\u0000\u0000\u02b9\u02bb\u0007\u0004\u0000\u0000\u02ba"+ + "\u02b9\u0001\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb"+ + "\u02bc\u0001\u0000\u0000\u0000\u02bc\u02bd\u00056\u0000\u0000\u02bd\u008b"+ + "\u0001\u0000\u0000\u0000\u02be\u02c0\u0007\u0004\u0000\u0000\u02bf\u02be"+ + "\u0001\u0000\u0000\u0000\u02bf\u02c0\u0001\u0000\u0000\u0000\u02c0\u02c1"+ + "\u0001\u0000\u0000\u0000\u02c1\u02c2\u00055\u0000\u0000\u02c2\u008d\u0001"+ + "\u0000\u0000\u0000\u02c3\u02c4\u00054\u0000\u0000\u02c4\u008f\u0001\u0000"+ + "\u0000\u0000\u02c5\u02c6\u0007\u0007\u0000\u0000\u02c6\u0091\u0001\u0000"+ + "\u0000\u0000\u02c7\u02c8\u0007\b\u0000\u0000\u02c8\u02c9\u0005o\u0000"+ + "\u0000\u02c9\u02ca\u0003\u0094J\u0000\u02ca\u02cb\u0003\u0096K\u0000\u02cb"+ + "\u0093\u0001\u0000\u0000\u0000\u02cc\u02cd\u0003\u0018\f\u0000\u02cd\u0095"+ + "\u0001\u0000\u0000\u0000\u02ce\u02cf\u0005#\u0000\u0000\u02cf\u02d4\u0003"+ + "\u0098L\u0000\u02d0\u02d1\u0005=\u0000\u0000\u02d1\u02d3\u0003\u0098L"+ + "\u0000\u02d2\u02d0\u0001\u0000\u0000\u0000\u02d3\u02d6\u0001\u0000\u0000"+ + "\u0000\u02d4\u02d2\u0001\u0000\u0000\u0000\u02d4\u02d5\u0001\u0000\u0000"+ + "\u0000\u02d5\u0097\u0001\u0000\u0000\u0000\u02d6\u02d4\u0001\u0000\u0000"+ + "\u0000\u02d7\u02d8\u0003v;\u0000\u02d8\u0099\u0001\u0000\u0000\u0000B"+ "\u00a5\u00ae\u00c9\u00d8\u00de\u00ed\u00f1\u00f6\u00fd\u00ff\u010d\u0115"+ "\u0119\u0120\u0126\u012d\u0135\u013d\u0145\u0149\u014d\u0152\u015d\u0162"+ "\u0166\u0174\u017f\u018d\u01a2\u01aa\u01ad\u01b2\u01bf\u01c5\u01cc\u01d7"+ - "\u01e5\u01eb\u01f6\u01ff\u0207\u020c\u0214\u0216\u021b\u0222\u0227\u022c"+ - "\u0236\u023c\u0244\u0246\u0251\u0258\u0263\u0268\u026a\u0276\u028e\u0299"+ - "\u02a4\u02a9\u02af\u02b2\u02b7\u02cc"; + "\u01e5\u01f3\u01fe\u0207\u020f\u0214\u021c\u021e\u0223\u022a\u022f\u0234"+ + "\u023e\u0244\u024c\u024e\u0259\u0260\u026b\u0270\u0272\u027e\u0296\u02a1"+ + "\u02ac\u02b1\u02b7\u02ba\u02bf\u02d4"; 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/plan/logical/Fork.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java index c8037c1cfd49a..debb10e63165b 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java @@ -8,21 +8,31 @@ package org.elasticsearch.xpack.esql.plan.logical; import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.xpack.esql.capabilities.PostAnalysisPlanVerificationAware; +import org.elasticsearch.xpack.esql.common.Failure; +import org.elasticsearch.xpack.esql.common.Failures; import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.core.type.DataType; +import org.elasticsearch.xpack.esql.core.util.Holder; import org.elasticsearch.xpack.esql.plan.logical.join.StubRelation; import java.io.IOException; +import java.util.ArrayList; +import java.util.HashSet; import java.util.List; +import java.util.Map; import java.util.Objects; -import java.util.stream.Stream; +import java.util.Set; +import java.util.function.BiConsumer; +import java.util.stream.Collectors; /** * A Fork is a {@code Plan} with one child, but holds several logical subplans, e.g. * {@code FORK [WHERE content:"fox" ] [WHERE content:"dog"] } */ -public class Fork extends UnaryPlan implements SurrogateLogicalPlan { +public class Fork extends UnaryPlan implements SurrogateLogicalPlan, PostAnalysisPlanVerificationAware { public static final String FORK_FIELD = "_fork"; private final List subPlans; @@ -52,13 +62,28 @@ public List subPlans() { @Override public LogicalPlan surrogate() { - var newChildren = subPlans.stream().map(p -> Merge.replaceStub(child(), p)).toList(); + var newChildren = subPlans.stream().map(p -> surrogateSubPlan(child(), p)).toList(); return new Merge(source(), newChildren); } @Override public boolean expressionsResolved() { - return child().resolved() && subPlans.stream().allMatch(LogicalPlan::resolved); + if (child().resolved() && subPlans.stream().allMatch(LogicalPlan::resolved) == false) { + return false; + } + + // Here we check if all sub plans output the same column names. + // If they don't then FORK was not resolved. + Set firstOutputNames = subPlans.getFirst().outputSet().names(); + Holder resolved = new Holder<>(true); + subPlans.stream().skip(1).forEach(subPlan -> { + Set names = subPlan.outputSet().names(); + if (names.equals(firstOutputNames) == false) { + resolved.set(false); + } + }); + + return resolved.get(); } @Override @@ -80,6 +105,27 @@ public Fork replaceChild(LogicalPlan newChild) { return new Fork(source(), newChild, newSubQueries); } + /** + * Returns the surrogate subplan + */ + private LogicalPlan surrogateSubPlan(LogicalPlan source, LogicalPlan subplan) { + // Replaces the stubbed source with the actual source. + LogicalPlan stubbed = subplan.transformUp(StubRelation.class, stubRelation -> source); + + // align the output + List subplanOutput = new ArrayList<>(); + + for (Attribute mainAttr : output()) { + for (Attribute subAttr : subplan.output()) { + if (mainAttr.name().equals(subAttr.name())) { + subplanOutput.add(subAttr); + } + } + } + + return new Keep(source(), stubbed, subplanOutput); + } + public Fork replaceSubPlans(List subPlans) { return new Fork(source(), child(), subPlans); } @@ -87,11 +133,26 @@ public Fork replaceSubPlans(List subPlans) { @Override public List output() { if (lazyOutput == null) { - lazyOutput = Stream.concat(children().getFirst().output().stream(), subPlans.getFirst().output().stream()).distinct().toList(); + lazyOutput = lazyOutput(); } return lazyOutput; } + private List lazyOutput() { + List output = new ArrayList<>(); + Set names = new HashSet<>(); + + for (var subPlan : subPlans) { + for (var attr : subPlan.output()) { + if (names.contains(attr.name()) == false) { + names.add(attr.name()); + output.add(attr); + } + } + } + return output; + } + @Override public int hashCode() { return Objects.hash(super.hashCode(), subPlans); @@ -111,4 +172,40 @@ public boolean equals(Object o) { Fork other = (Fork) o; return Objects.equals(subPlans, other.subPlans); } + + @Override + public BiConsumer postAnalysisPlanVerification() { + return Fork::checkFork; + } + + private static void checkFork(LogicalPlan plan, Failures failures) { + if (plan instanceof Fork == false) { + return; + } + Fork fork = (Fork) plan; + + Map outputTypes = fork.subPlans() + .getFirst() + .output() + .stream() + .collect(Collectors.toMap(Attribute::name, Attribute::dataType)); + + fork.subPlans().stream().skip(1).forEach(subPlan -> { + for (Attribute attr : subPlan.output()) { + var actual = attr.dataType(); + var expected = outputTypes.get(attr.name()); + if (actual != expected) { + failures.add( + Failure.fail( + attr, + "Column [{}] has conflicting data types in FORK branches: [{}] and [{}]", + attr.name(), + actual, + expected + ) + ); + } + } + }); + } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Merge.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Merge.java index b33a336b2bf86..b74b33321555d 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Merge.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Merge.java @@ -11,26 +11,15 @@ import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; -import org.elasticsearch.xpack.esql.plan.logical.join.StubRelation; import java.io.IOException; import java.util.List; import java.util.Objects; -import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes; - /** * A Merge is a {@code LogicalPlan}, which has several logical subplans/children. */ public class Merge extends LogicalPlan { - - /** - * Replaces the stubbed source with the actual source. - */ - public static LogicalPlan replaceStub(LogicalPlan source, LogicalPlan stubbed) { - return stubbed.transformUp(StubRelation.class, stubRelation -> source); - } - List lazyOutput; public Merge(Source source, List children) { @@ -65,7 +54,7 @@ protected NodeInfo info() { @Override public List output() { if (lazyOutput == null) { - lazyOutput = mergeOutputAttributes(children().get(1).output(), children().getFirst().output()); + lazyOutput = children().getFirst().output(); } return lazyOutput; } From 39583e6d4b2af8f7aae4a7e5b5617b59e54e737c Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Tue, 1 Apr 2025 14:01:57 +0200 Subject: [PATCH 2/8] Add analyzer and statement parser tests --- .../xpack/esql/analysis/AnalyzerTests.java | 118 +++++++++++++++++- .../esql/parser/StatementParserTests.java | 48 ++++--- 2 files changed, 145 insertions(+), 21 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index cd0781e61e168..91e2f9b88bf14 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -40,6 +40,7 @@ import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry; import org.elasticsearch.xpack.esql.expression.function.UnsupportedAttribute; import org.elasticsearch.xpack.esql.expression.function.aggregate.Count; +import org.elasticsearch.xpack.esql.expression.function.aggregate.FilteredExpression; import org.elasticsearch.xpack.esql.expression.function.aggregate.Max; import org.elasticsearch.xpack.esql.expression.function.aggregate.Min; import org.elasticsearch.xpack.esql.expression.function.fulltext.Match; @@ -54,6 +55,7 @@ import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; import org.elasticsearch.xpack.esql.plan.logical.Dedup; +import org.elasticsearch.xpack.esql.plan.logical.Dissect; import org.elasticsearch.xpack.esql.plan.logical.Enrich; import org.elasticsearch.xpack.esql.plan.logical.EsRelation; import org.elasticsearch.xpack.esql.plan.logical.Eval; @@ -3056,7 +3058,114 @@ public void testBasicFork() { stub = as(limit.child(), StubRelation.class); } - public void testBasicForkError() { + public void testForkBranchesWithDifferentSchemas() { + assumeTrue("requires FORK capability", EsqlCapabilities.Cap.FORK.isEnabled()); + + LogicalPlan plan = analyze(""" + from test + | WHERE first_name == "Chris" + | KEEP emp_no, first_name + | FORK ( WHERE emp_no > 3 | SORT emp_no | LIMIT 7 ) + ( WHERE emp_no > 2 | EVAL xyz = "def" ) + ( DISSECT first_name "%{d} %{e} %{f}" + | STATS x = MIN(d::double), y = MAX(e::double) WHERE d::double > 1000 + | EVAL xyz = "abc") + """); + + Limit limit = as(plan, Limit.class); + Fork fork = as(limit.child(), Fork.class); + EsqlProject project = as(fork.child(), EsqlProject.class); + Filter filter = as(project.child(), Filter.class); + assertThat(as(filter.condition(), Equals.class).right(), equalTo(string("Chris"))); + var esRelation = as(filter.child(), EsRelation.class); + assertThat(esRelation.indexPattern(), equalTo("test")); + + var subPlans = fork.subPlans(); + + // fork branch 1 + limit = as(subPlans.get(0), Limit.class); + assertThat(as(limit.limit(), Literal.class).value(), equalTo(MAX_LIMIT)); + Eval eval = as(limit.child(), Eval.class); + assertEquals(eval.fields().size(), 3); + + Set evalFieldNames = eval.fields().stream().map(a -> a.name()).collect(Collectors.toSet()); + assertThat(evalFieldNames, equalTo(Set.of("x", "xyz", "y"))); + + for (Alias a : eval.fields()) { + assertThat(as(a.child(), Literal.class).value(), equalTo(null)); + } + + eval = as(eval.child(), Eval.class); + assertThat(as(eval.fields().get(0), Alias.class), equalTo(alias("_fork", string("fork1")))); + limit = as(eval.child(), Limit.class); + assertThat(as(limit.limit(), Literal.class).value(), equalTo(7)); + var orderBy = as(limit.child(), OrderBy.class); + filter = as(orderBy.child(), Filter.class); + assertThat(as(filter.condition(), GreaterThan.class).right(), equalTo(literal(3))); + var stub = as(filter.child(), StubRelation.class); + + // fork branch 2 + limit = as(subPlans.get(1), Limit.class); + assertThat(as(limit.limit(), Literal.class).value(), equalTo(DEFAULT_LIMIT)); + eval = as(limit.child(), Eval.class); + assertEquals(eval.fields().size(), 2); + evalFieldNames = eval.fields().stream().map(a -> a.name()).collect(Collectors.toSet()); + assertThat(evalFieldNames, equalTo(Set.of("x", "y"))); + + for (Alias a : eval.fields()) { + assertThat(as(a.child(), Literal.class).value(), equalTo(null)); + } + + eval = as(eval.child(), Eval.class); + assertThat(as(eval.fields().get(0), Alias.class), equalTo(alias("_fork", string("fork2")))); + eval = as(eval.child(), Eval.class); + Alias alias = as(eval.fields().get(0), Alias.class); + assertThat(alias.name(), equalTo("xyz")); + assertThat(as(alias.child(), Literal.class), equalTo(string("def"))); + filter = as(eval.child(), Filter.class); + assertThat(as(filter.condition(), GreaterThan.class).right(), equalTo(literal(2))); + stub = as(filter.child(), StubRelation.class); + + // fork branch 3 + limit = as(subPlans.get(2), Limit.class); + assertThat(as(limit.limit(), Literal.class).value(), equalTo(DEFAULT_LIMIT)); + eval = as(limit.child(), Eval.class); + assertEquals(eval.fields().size(), 3); + evalFieldNames = eval.fields().stream().map(a -> a.name()).collect(Collectors.toSet()); + assertThat(evalFieldNames, equalTo(Set.of("emp_no", "xyz", "first_name"))); + + for (Alias a : eval.fields()) { + assertThat(as(a.child(), Literal.class).value(), equalTo(null)); + } + + eval = as(eval.child(), Eval.class); + assertThat(as(eval.fields().get(0), Alias.class), equalTo(alias("_fork", string("fork3")))); + + eval = as(eval.child(), Eval.class); + alias = as(eval.fields().get(0), Alias.class); + assertThat(alias.name(), equalTo("xyz")); + assertThat(as(alias.child(), Literal.class), equalTo(string("abc"))); + + Aggregate aggregate = as(eval.child(), Aggregate.class); + assertEquals(aggregate.aggregates().size(), 2); + alias = as(aggregate.aggregates().get(0), Alias.class); + assertThat(alias.name(), equalTo("x")); + + alias = as(aggregate.aggregates().get(1), Alias.class); + assertThat(alias.name(), equalTo("y")); + FilteredExpression filteredExp = as(alias.child(), FilteredExpression.class); + + GreaterThan greaterThan = as(filteredExp.filter(), GreaterThan.class); + assertThat(as(greaterThan.right(), Literal.class).value(), equalTo(1000)); + + Dissect dissect = as(aggregate.child(), Dissect.class); + assertThat(dissect.parser().pattern(), equalTo("%{d} %{e} %{f}")); + assertThat(as(dissect.input(), FieldAttribute.class).name(), equalTo("first_name")); + + stub = as(dissect.child(), StubRelation.class); + } + + public void testForkError() { assumeTrue("requires FORK capability", EsqlCapabilities.Cap.FORK.isEnabled()); var e = expectThrows(VerificationException.class, () -> analyze(""" @@ -3094,6 +3203,13 @@ public void testBasicForkError() { ( WHERE emp_no > 6 | SORT emp_no | LIMIT 5 ) """)); assertThat(pe.getMessage(), containsString("mismatched input 'me' expecting INTEGER_LITERAL")); + + e = expectThrows(VerificationException.class, () -> analyze(""" + FROM test + | FORK ( WHERE emp_no > 1 ) + ( WHERE emp_no > 2 | SORT emp_no | LIMIT 10 | EVAL x = abc + 2 ) + """)); + assertThat(e.getMessage(), containsString("Unknown column [abc]")); } public void testValidRrf() { 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 679df9be04e53..1fc1474918e89 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 @@ -3220,6 +3220,7 @@ public void testValidFork() { ( WHERE c:"bat" ) ( SORT c ) ( LIMIT 5 ) + ( DISSECT a "%{d} %{e} %{f}" | STATS x = MIN(a), y = MAX(b) WHERE d > 1000 | EVAL xyz = "abc") """); var fork = as(plan, Fork.class); var subPlans = fork.subPlans(); @@ -3274,6 +3275,30 @@ public void testValidFork() { limit = as(eval.child(), Limit.class); assertThat(limit.limit(), instanceOf(Literal.class)); assertThat(((Literal) limit.limit()).value(), equalTo(5)); + + // sixth subplan + eval = as(subPlans.get(5), Eval.class); + assertThat(as(eval.fields().get(0), Alias.class), equalTo(alias("_fork", literalString("fork6")))); + eval = as(eval.child(), Eval.class); + assertThat(as(eval.fields().get(0), Alias.class), equalTo(alias("xyz", literalString("abc")))); + + Aggregate aggregate = as(eval.child(), Aggregate.class); + assertThat(aggregate.aggregates().size(), equalTo(2)); + var alias = as(aggregate.aggregates().get(0), Alias.class); + assertThat(alias.name(), equalTo("x")); + assertThat(as(alias.child(), UnresolvedFunction.class).name(), equalTo("MIN")); + + alias = as(aggregate.aggregates().get(1), Alias.class); + assertThat(alias.name(), equalTo("y")); + var filteredExp = as(alias.child(), FilteredExpression.class); + assertThat(as(filteredExp.delegate(), UnresolvedFunction.class).name(), equalTo("MAX")); + var greaterThan = as(filteredExp.filter(), GreaterThan.class); + assertThat(as(greaterThan.left(), UnresolvedAttribute.class).name(), equalTo("d")); + assertThat(as(greaterThan.right(), Literal.class).value(), equalTo(1000)); + + var dissect = as(aggregate.child(), Dissect.class); + assertThat(as(dissect.input(), UnresolvedAttribute.class).name(), equalTo("a")); + assertThat(dissect.parser().pattern(), equalTo("%{d} %{e} %{f}")); } public void testInvalidFork() { @@ -3285,26 +3310,9 @@ public void testInvalidFork() { expectError("FROM foo* | FORK (WHERE x>1 | LIMIT 5)", "line 1:13: Fork requires at least two branches"); expectError("FROM foo* | WHERE x>1 | FORK (WHERE a:\"baz\")", "Fork requires at least two branches"); - expectError("FROM foo* | FORK (LIMIT 10) (EVAL x = 1)", "line 1:30: mismatched input 'EVAL' expecting {'limit', 'sort', 'where'}"); - expectError("FROM foo* | FORK (EVAL x = 1) (LIMIT 10)", "line 1:19: mismatched input 'EVAL' expecting {'limit', 'sort', 'where'}"); - expectError( - "FROM foo* | FORK (WHERE x>1 |EVAL x = 1) (WHERE x>1)", - "line 1:30: mismatched input 'EVAL' expecting {'limit', 'sort', 'where'}" - ); - expectError( - "FROM foo* | FORK (WHERE x>1 |EVAL x = 1) (WHERE x>1)", - "line 1:30: mismatched input 'EVAL' expecting {'limit', 'sort', 'where'}" - ); - expectError( - "FROM foo* | FORK (WHERE x>1 |STATS count(x) by y) (WHERE x>1)", - "line 1:30: mismatched input 'STATS' expecting {'limit', 'sort', 'where'}" - ); - expectError( - "FROM foo* | FORK ( FORK (WHERE x>1) (WHERE y>1)) (WHERE z>1)", - "line 1:20: mismatched input 'FORK' expecting {'limit', 'sort', 'where'}" - ); - expectError("FROM foo* | FORK ( x+1 ) ( WHERE y>2 )", "line 1:20: mismatched input 'x+1' expecting {'limit', 'sort', 'where'}"); - expectError("FROM foo* | FORK ( LIMIT 10 ) ( y+2 )", "line 1:33: mismatched input 'y+2' expecting {'limit', 'sort', 'where'}"); + expectError("FROM foo* | FORK ( FORK (WHERE x>1) (WHERE y>1)) (WHERE z>1)", "line 1:20: mismatched input 'FORK'"); + expectError("FROM foo* | FORK ( x+1 ) ( WHERE y>2 )", "line 1:20: mismatched input 'x+1'"); + expectError("FROM foo* | FORK ( LIMIT 10 ) ( y+2 )", "line 1:33: mismatched input 'y+2'"); } public void testFieldNamesAsCommands() throws Exception { From 2e638ec9d5bffd86328785865370f9d4c5802380 Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Fri, 4 Apr 2025 14:02:12 +0200 Subject: [PATCH 3/8] Fix tests --- .../esql/qa/testFixtures/src/main/resources/fork.csv-spec | 6 +++--- .../java/org/elasticsearch/xpack/esql/action/ForkIT.java | 2 ++ .../org/elasticsearch/xpack/esql/analysis/Analyzer.java | 5 ++++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec index a941e667a958c..be41cfca37a6f 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec @@ -161,7 +161,7 @@ fork1 | 10081 | null | null | null fork2 | 10081 | null | null | null fork2 | 10087 | null | null | null fork3 | null | 100 | 10100 | 10001 -fork4 | null | null | null | null +fork4 | null | 100 | 10001 | null ; forkWithDrop-Ignore @@ -223,8 +223,8 @@ FROM employees _fork:keyword | emp_no:integer | x:keyword | y:keyword | z:keyword | w:keyword fork1 | 10048 | Florian | 10048 | Syrotiuk | null fork1 | 10081 | Zhongwei | 10081 | Rosen | null -fork2 | 10048 | null | null | null | Florian -fork2 | 10081 | null | null | null | Zhongwei +fork2 | 10048 | Syrotiuk | 10048 | null | Florian +fork2 | 10081 | Rosen | 10081 | null | Zhongwei ; forkWithMixOfCommands diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java index 2cb07543880d3..44f97ea763b91 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java @@ -521,6 +521,7 @@ public void testWithEvalDifferentOutputs() { | FORK ( EVAL a = 1 ) ( EVAL b = 2 ) | KEEP a, b, _fork + | SORT _fork, a """; try (var resp = run(query)) { assertColumnNames(resp.columns(), List.of("a", "b", "_fork")); @@ -533,6 +534,7 @@ public void testWithStatsSimple() { | FORK (STATS x=COUNT(*), y=VALUES(id)) (WHERE id == 2) | KEEP _fork, x, y, id + | SORT _fork, id """; try (var resp = run(query)) { assertColumnNames(resp.columns(), List.of("_fork", "x", "y", "id")); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index 057b6dbf3950d..bb1015636c31c 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -706,7 +706,10 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { } List subPlanColumns = logicalPlan.output().stream().map(Attribute::name).collect(Collectors.toList()); - if (subPlanColumns.equals(forkColumns) == false) { + // We need to add an explicit Keep even if the outputs align + // This is because at the moment the sub plans are executed and optimized separately and the output might change + // during optimizations. Once we add streaming we might not need to add a Keep when the outputs already align. + if (logicalPlan instanceof Keep == false || subPlanColumns.equals(forkColumns) == false) { changed = true; List newOutput = new ArrayList<>(); for (String attrName : forkColumns) { From 1462449db2db0a70aa80fb5c050cd66aba4ba3f1 Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Fri, 4 Apr 2025 16:02:54 +0200 Subject: [PATCH 4/8] Restrict grammar to sub commands that don't throw a parsing error --- .../src/main/resources/fork.csv-spec | 60 +- .../xpack/esql/action/ForkIT.java | 29 +- .../esql/src/main/antlr/EsqlBaseParser.g4 | 4 - .../optimizer/rules/logical/PruneColumns.java | 12 + .../xpack/esql/parser/EsqlBaseParser.interp | 2 +- .../xpack/esql/parser/EsqlBaseParser.java | 1129 ++++++++--------- .../xpack/esql/analysis/AnalyzerTests.java | 37 +- 7 files changed, 605 insertions(+), 668 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec index be41cfca37a6f..44a3e877f65ee 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec @@ -130,19 +130,6 @@ fork2 | 10081 | def | null | 2 fork2 | 10087 | def | null | 2 ; -forkWithKeep-Ignore -required_capability: fork - -FROM employees -| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | KEEP emp_no, first_name) - (WHERE emp_no == 10081 OR emp_no == 10087 | KEEP emp_no) -| SORT _fork, emp_no, first_name -; - -_fork:keyword | emp_no:integer | first_name:keyword -1 | 2 | 3 -; - forkWithStats required_capability: fork @@ -164,52 +151,9 @@ fork3 | null | 100 | 10100 | 10001 fork4 | null | 100 | 10001 | null ; -forkWithDrop-Ignore -required_capability: fork - -FROM employees -| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | DROP last_name ) - (WHERE emp_no == 10081 OR emp_no == 10087 | DROP first_name ) -| KEEP _fork, emp_no, first_name, last_name -| SORT _fork, emp_no -; - -_fork:keyword | emp_no:integer | first_name:keyword | last_name:keyword -1 | 2 | 3 | 4 -; - -forkWithRename-Ignore -required_capability: fork - -FROM employees -| FORK (WHERE emp_no == 10048 OR emp_no == 10081 | RENAME first_name AS x, last_name AS y) - (WHERE emp_no == 10081 OR emp_no == 10087 | RENAME last_name AS x) -| KEEP _fork, emp_no, first_name, last_name -| SORT _fork, emp_no -; - -_fork:keyword | emp_no:integer | first_name:keyword | last_name:keyword -1 | 2 | 3 | 4 -; - -forkWithGrok-Ignore +forkWithDissect required_capability: fork -FROM employees -| WHERE emp_no == 10048 OR emp_no == 10081 -| FORK (EVAL a = CONCAT(first_name, " ", emp_no::keyword, " ", last_name) - | GROK a "%{WORD:x} %{INTEGER:y} %{WORD:z}") - (EVAL b = CONCAT(last_name, " ", emp_no::keyword, " ", first_name) - | GROK b "%{WORD:x} %{INTEGER:y} %{WORD:w}") -| KEEP _fork, emp_no, x, y, z, w -| SORT _fork, emp_no -; - -_fork:keyword | emp_no:integer | x:keyword | y:integer | z:keyword | x:keyword -1 | 2 | 3 | 4 | 5 | 6 -; - -forkWithDissect FROM employees | WHERE emp_no == 10048 OR emp_no == 10081 | FORK (EVAL a = CONCAT(first_name, " ", emp_no::keyword, " ", last_name) @@ -228,6 +172,8 @@ fork2 | 10081 | Rosen | 10081 | null | Zhongwei ; forkWithMixOfCommands +required_capability: fork + FROM employees | WHERE emp_no == 10048 OR emp_no == 10081 | FORK ( EVAL a = CONCAT(first_name, " ", emp_no::keyword, " ", last_name) diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java index 44f97ea763b91..aa2f04afcb75d 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/ForkIT.java @@ -505,19 +505,27 @@ public void testSubqueryWithoutLimitOnly() { // this should public void testWithEvalSimple() { var query = """ FROM test + | WHERE content:"cat" | FORK ( EVAL a = 1 ) ( EVAL a = 2 ) - | KEEP a, _fork + | KEEP a, _fork, id, content """; try (var resp = run(query)) { - assertColumnNames(resp.columns(), List.of("a", "_fork")); + assertColumnNames(resp.columns(), List.of("a", "_fork", "id", "content")); + + Iterable> expectedValues = List.of( + List.of(1, "fork1", 5, "There is also a white cat"), + List.of(2, "fork2", 5, "There is also a white cat") + ); + assertValues(resp.values(), expectedValues); } } public void testWithEvalDifferentOutputs() { var query = """ FROM test + | WHERE id == 2 | FORK ( EVAL a = 1 ) ( EVAL b = 2 ) | KEEP a, b, _fork @@ -525,6 +533,11 @@ public void testWithEvalDifferentOutputs() { """; try (var resp = run(query)) { assertColumnNames(resp.columns(), List.of("a", "b", "_fork")); + Iterable> expectedValues = List.of( + Arrays.stream(new Object[] { 1, null, "fork1" }).toList(), + Arrays.stream(new Object[] { null, 2, "fork2" }).toList() + ); + assertValues(resp.values(), expectedValues); } } @@ -546,18 +559,6 @@ public void testWithStatsSimple() { } } - public void testWithMultipleCommandsAndBranches() { - var query = """ - FROM test METADATA _score - | FORK (STATS x=COUNT(*), y=VALUES(id) | MV_EXPAND y ) - (WHERE content:"fox" | EVAL new_score = _score + 20 | SORT new_score DESC) - (WHERE content:"dog" | EVAL new_score = _score + 1 | SORT new_score DESC | LIMIT 2 ) - | KEEP _fork, new_score, _score, x, y - """; - // fails with a syntax error, does not like MV_EXPAND - // run(query); - } - public void testWithEvalWithConflictingTypes() { var query = """ FROM test diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index a818eef20d2b2..ee47b42e9107b 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -286,11 +286,7 @@ forkSubQueryProcessingCommand | limitCommand | statsCommand | sortCommand - | dropCommand - | renameCommand | dissectCommand - | grokCommand - | mvExpandCommand ; rrfCommand diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumns.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumns.java index ff6721bb1f8db..c5115aeda944c 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumns.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PruneColumns.java @@ -14,9 +14,11 @@ import org.elasticsearch.xpack.esql.core.expression.EmptyAttribute; import org.elasticsearch.xpack.esql.core.expression.Expressions; import org.elasticsearch.xpack.esql.core.expression.NamedExpression; +import org.elasticsearch.xpack.esql.core.util.Holder; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; import org.elasticsearch.xpack.esql.plan.logical.EsRelation; import org.elasticsearch.xpack.esql.plan.logical.Eval; +import org.elasticsearch.xpack.esql.plan.logical.Fork; import org.elasticsearch.xpack.esql.plan.logical.Limit; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.local.LocalRelation; @@ -36,6 +38,8 @@ public final class PruneColumns extends Rule { public LogicalPlan apply(LogicalPlan plan) { // track used references var used = plan.outputSet().asBuilder(); + Holder forkPresent = new Holder<>(false); + // while going top-to-bottom (upstream) var pl = plan.transformDown(p -> { // Note: It is NOT required to do anything special for binary plans like JOINs. It is perfectly fine that transformDown descends @@ -50,6 +54,14 @@ public LogicalPlan apply(LogicalPlan plan) { return p; } + if (p instanceof Fork) { + forkPresent.set(true); + } + // pruning columns for Fork branches can have the side effect of having misaligned outputs + if (forkPresent.get()) { + return p; + } + // remember used boolean recheck; // analyze the unused items against dedicated 'producer' nodes such as Eval and Aggregate 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 a157ad65f3ba0..e7bc72f650716 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 @@ -357,4 +357,4 @@ joinPredicate atn: -[4, 1, 136, 730, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 326, 8, 25, 1, 26, 1, 26, 3, 26, 330, 8, 26, 1, 27, 1, 27, 3, 27, 334, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 339, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 348, 8, 30, 10, 30, 12, 30, 351, 9, 30, 1, 31, 1, 31, 3, 31, 355, 8, 31, 1, 31, 1, 31, 3, 31, 359, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 371, 8, 34, 10, 34, 12, 34, 374, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 384, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 396, 8, 39, 10, 39, 12, 39, 399, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 419, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 425, 8, 44, 10, 44, 12, 44, 428, 9, 44, 3, 44, 430, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 435, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 454, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 461, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 470, 8, 51, 11, 51, 12, 51, 471, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 484, 8, 53, 10, 53, 12, 53, 487, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 500, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 511, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 518, 8, 56, 10, 56, 12, 56, 521, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 528, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 533, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 541, 8, 56, 10, 56, 12, 56, 544, 9, 56, 1, 57, 1, 57, 3, 57, 548, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 555, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 560, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 565, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 575, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 581, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 589, 8, 60, 10, 60, 12, 60, 592, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 602, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 607, 8, 61, 10, 61, 12, 61, 610, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 618, 8, 62, 10, 62, 12, 62, 621, 9, 62, 1, 62, 1, 62, 3, 62, 625, 8, 62, 3, 62, 627, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 637, 8, 64, 10, 64, 12, 64, 640, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 661, 8, 66, 10, 66, 12, 66, 664, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 672, 8, 66, 10, 66, 12, 66, 675, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 683, 8, 66, 10, 66, 12, 66, 686, 9, 66, 1, 66, 1, 66, 3, 66, 690, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 696, 8, 68, 1, 69, 3, 69, 699, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 704, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 723, 8, 75, 10, 75, 12, 75, 726, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 764, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 325, 1, 0, 0, 0, 52, 329, 1, 0, 0, 0, 54, 333, 1, 0, 0, 0, 56, 338, 1, 0, 0, 0, 58, 340, 1, 0, 0, 0, 60, 343, 1, 0, 0, 0, 62, 352, 1, 0, 0, 0, 64, 360, 1, 0, 0, 0, 66, 363, 1, 0, 0, 0, 68, 366, 1, 0, 0, 0, 70, 375, 1, 0, 0, 0, 72, 379, 1, 0, 0, 0, 74, 385, 1, 0, 0, 0, 76, 389, 1, 0, 0, 0, 78, 392, 1, 0, 0, 0, 80, 400, 1, 0, 0, 0, 82, 404, 1, 0, 0, 0, 84, 407, 1, 0, 0, 0, 86, 411, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 434, 1, 0, 0, 0, 92, 438, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 449, 1, 0, 0, 0, 98, 462, 1, 0, 0, 0, 100, 465, 1, 0, 0, 0, 102, 469, 1, 0, 0, 0, 104, 473, 1, 0, 0, 0, 106, 477, 1, 0, 0, 0, 108, 499, 1, 0, 0, 0, 110, 501, 1, 0, 0, 0, 112, 532, 1, 0, 0, 0, 114, 559, 1, 0, 0, 0, 116, 561, 1, 0, 0, 0, 118, 574, 1, 0, 0, 0, 120, 580, 1, 0, 0, 0, 122, 601, 1, 0, 0, 0, 124, 611, 1, 0, 0, 0, 126, 630, 1, 0, 0, 0, 128, 632, 1, 0, 0, 0, 130, 643, 1, 0, 0, 0, 132, 689, 1, 0, 0, 0, 134, 691, 1, 0, 0, 0, 136, 695, 1, 0, 0, 0, 138, 698, 1, 0, 0, 0, 140, 703, 1, 0, 0, 0, 142, 707, 1, 0, 0, 0, 144, 709, 1, 0, 0, 0, 146, 711, 1, 0, 0, 0, 148, 716, 1, 0, 0, 0, 150, 718, 1, 0, 0, 0, 152, 727, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 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, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 326, 5, 125, 0, 0, 323, 326, 3, 52, 26, 0, 324, 326, 3, 54, 27, 0, 325, 322, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 51, 1, 0, 0, 0, 327, 330, 5, 74, 0, 0, 328, 330, 5, 92, 0, 0, 329, 327, 1, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 53, 1, 0, 0, 0, 331, 334, 5, 91, 0, 0, 332, 334, 5, 93, 0, 0, 333, 331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 55, 1, 0, 0, 0, 335, 339, 3, 48, 24, 0, 336, 339, 3, 52, 26, 0, 337, 339, 3, 54, 27, 0, 338, 335, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 57, 1, 0, 0, 0, 340, 341, 5, 10, 0, 0, 341, 342, 5, 53, 0, 0, 342, 59, 1, 0, 0, 0, 343, 344, 5, 12, 0, 0, 344, 349, 3, 62, 31, 0, 345, 346, 5, 61, 0, 0, 346, 348, 3, 62, 31, 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, 61, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 3, 112, 56, 0, 353, 355, 7, 2, 0, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 72, 0, 0, 357, 359, 7, 3, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 63, 1, 0, 0, 0, 360, 361, 5, 26, 0, 0, 361, 362, 3, 46, 23, 0, 362, 65, 1, 0, 0, 0, 363, 364, 5, 25, 0, 0, 364, 365, 3, 46, 23, 0, 365, 67, 1, 0, 0, 0, 366, 367, 5, 29, 0, 0, 367, 372, 3, 70, 35, 0, 368, 369, 5, 61, 0, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 69, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 376, 3, 44, 22, 0, 376, 377, 5, 129, 0, 0, 377, 378, 3, 44, 22, 0, 378, 71, 1, 0, 0, 0, 379, 380, 5, 7, 0, 0, 380, 381, 3, 122, 61, 0, 381, 383, 3, 142, 71, 0, 382, 384, 3, 78, 39, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 73, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 122, 61, 0, 387, 388, 3, 142, 71, 0, 388, 75, 1, 0, 0, 0, 389, 390, 5, 24, 0, 0, 390, 391, 3, 42, 21, 0, 391, 77, 1, 0, 0, 0, 392, 397, 3, 80, 40, 0, 393, 394, 5, 61, 0, 0, 394, 396, 3, 80, 40, 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, 79, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 48, 24, 0, 401, 402, 5, 58, 0, 0, 402, 403, 3, 132, 66, 0, 403, 81, 1, 0, 0, 0, 404, 405, 5, 6, 0, 0, 405, 406, 3, 84, 42, 0, 406, 83, 1, 0, 0, 0, 407, 408, 5, 94, 0, 0, 408, 409, 3, 2, 1, 0, 409, 410, 5, 95, 0, 0, 410, 85, 1, 0, 0, 0, 411, 412, 5, 30, 0, 0, 412, 413, 5, 133, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 5, 5, 0, 0, 415, 418, 5, 37, 0, 0, 416, 417, 5, 35, 0, 0, 417, 419, 3, 44, 22, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 429, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 90, 45, 0, 422, 423, 5, 61, 0, 0, 423, 425, 3, 90, 45, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 89, 1, 0, 0, 0, 431, 432, 3, 44, 22, 0, 432, 433, 5, 58, 0, 0, 433, 435, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 3, 44, 22, 0, 437, 91, 1, 0, 0, 0, 438, 439, 5, 23, 0, 0, 439, 440, 3, 24, 12, 0, 440, 441, 5, 35, 0, 0, 441, 442, 3, 46, 23, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 15, 0, 0, 444, 447, 3, 38, 19, 0, 445, 446, 5, 55, 0, 0, 446, 448, 3, 14, 7, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 95, 1, 0, 0, 0, 449, 450, 5, 4, 0, 0, 450, 453, 3, 42, 21, 0, 451, 452, 5, 35, 0, 0, 452, 454, 3, 42, 21, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 460, 1, 0, 0, 0, 455, 456, 5, 129, 0, 0, 456, 457, 3, 42, 21, 0, 457, 458, 5, 61, 0, 0, 458, 459, 3, 42, 21, 0, 459, 461, 1, 0, 0, 0, 460, 455, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 97, 1, 0, 0, 0, 462, 463, 5, 27, 0, 0, 463, 464, 3, 46, 23, 0, 464, 99, 1, 0, 0, 0, 465, 466, 5, 18, 0, 0, 466, 467, 3, 102, 51, 0, 467, 101, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 103, 1, 0, 0, 0, 473, 474, 5, 96, 0, 0, 474, 475, 3, 106, 53, 0, 475, 476, 5, 97, 0, 0, 476, 105, 1, 0, 0, 0, 477, 478, 6, 53, -1, 0, 478, 479, 3, 108, 54, 0, 479, 485, 1, 0, 0, 0, 480, 481, 10, 1, 0, 0, 481, 482, 5, 51, 0, 0, 482, 484, 3, 108, 54, 0, 483, 480, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 107, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 500, 3, 34, 17, 0, 489, 500, 3, 8, 4, 0, 490, 500, 3, 64, 32, 0, 491, 500, 3, 58, 29, 0, 492, 500, 3, 36, 18, 0, 493, 500, 3, 60, 30, 0, 494, 500, 3, 66, 33, 0, 495, 500, 3, 68, 34, 0, 496, 500, 3, 72, 36, 0, 497, 500, 3, 74, 37, 0, 498, 500, 3, 76, 38, 0, 499, 488, 1, 0, 0, 0, 499, 489, 1, 0, 0, 0, 499, 490, 1, 0, 0, 0, 499, 491, 1, 0, 0, 0, 499, 492, 1, 0, 0, 0, 499, 493, 1, 0, 0, 0, 499, 494, 1, 0, 0, 0, 499, 495, 1, 0, 0, 0, 499, 496, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 499, 498, 1, 0, 0, 0, 500, 109, 1, 0, 0, 0, 501, 502, 5, 28, 0, 0, 502, 111, 1, 0, 0, 0, 503, 504, 6, 56, -1, 0, 504, 505, 5, 70, 0, 0, 505, 533, 3, 112, 56, 8, 506, 533, 3, 118, 59, 0, 507, 533, 3, 114, 57, 0, 508, 510, 3, 118, 59, 0, 509, 511, 5, 70, 0, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 5, 66, 0, 0, 513, 514, 5, 96, 0, 0, 514, 519, 3, 118, 59, 0, 515, 516, 5, 61, 0, 0, 516, 518, 3, 118, 59, 0, 517, 515, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 522, 523, 5, 97, 0, 0, 523, 533, 1, 0, 0, 0, 524, 525, 3, 118, 59, 0, 525, 527, 5, 67, 0, 0, 526, 528, 5, 70, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 5, 71, 0, 0, 530, 533, 1, 0, 0, 0, 531, 533, 3, 116, 58, 0, 532, 503, 1, 0, 0, 0, 532, 506, 1, 0, 0, 0, 532, 507, 1, 0, 0, 0, 532, 508, 1, 0, 0, 0, 532, 524, 1, 0, 0, 0, 532, 531, 1, 0, 0, 0, 533, 542, 1, 0, 0, 0, 534, 535, 10, 5, 0, 0, 535, 536, 5, 56, 0, 0, 536, 541, 3, 112, 56, 6, 537, 538, 10, 4, 0, 0, 538, 539, 5, 73, 0, 0, 539, 541, 3, 112, 56, 5, 540, 534, 1, 0, 0, 0, 540, 537, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 113, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 547, 3, 118, 59, 0, 546, 548, 5, 70, 0, 0, 547, 546, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 5, 69, 0, 0, 550, 551, 3, 142, 71, 0, 551, 560, 1, 0, 0, 0, 552, 554, 3, 118, 59, 0, 553, 555, 5, 70, 0, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 5, 75, 0, 0, 557, 558, 3, 142, 71, 0, 558, 560, 1, 0, 0, 0, 559, 545, 1, 0, 0, 0, 559, 552, 1, 0, 0, 0, 560, 115, 1, 0, 0, 0, 561, 564, 3, 42, 21, 0, 562, 563, 5, 59, 0, 0, 563, 565, 3, 10, 5, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 5, 60, 0, 0, 567, 568, 3, 132, 66, 0, 568, 117, 1, 0, 0, 0, 569, 575, 3, 120, 60, 0, 570, 571, 3, 120, 60, 0, 571, 572, 3, 144, 72, 0, 572, 573, 3, 120, 60, 0, 573, 575, 1, 0, 0, 0, 574, 569, 1, 0, 0, 0, 574, 570, 1, 0, 0, 0, 575, 119, 1, 0, 0, 0, 576, 577, 6, 60, -1, 0, 577, 581, 3, 122, 61, 0, 578, 579, 7, 4, 0, 0, 579, 581, 3, 120, 60, 3, 580, 576, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 590, 1, 0, 0, 0, 582, 583, 10, 2, 0, 0, 583, 584, 7, 5, 0, 0, 584, 589, 3, 120, 60, 3, 585, 586, 10, 1, 0, 0, 586, 587, 7, 4, 0, 0, 587, 589, 3, 120, 60, 2, 588, 582, 1, 0, 0, 0, 588, 585, 1, 0, 0, 0, 589, 592, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 121, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 593, 594, 6, 61, -1, 0, 594, 602, 3, 132, 66, 0, 595, 602, 3, 42, 21, 0, 596, 602, 3, 124, 62, 0, 597, 598, 5, 96, 0, 0, 598, 599, 3, 112, 56, 0, 599, 600, 5, 97, 0, 0, 600, 602, 1, 0, 0, 0, 601, 593, 1, 0, 0, 0, 601, 595, 1, 0, 0, 0, 601, 596, 1, 0, 0, 0, 601, 597, 1, 0, 0, 0, 602, 608, 1, 0, 0, 0, 603, 604, 10, 1, 0, 0, 604, 605, 5, 59, 0, 0, 605, 607, 3, 10, 5, 0, 606, 603, 1, 0, 0, 0, 607, 610, 1, 0, 0, 0, 608, 606, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 123, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 611, 612, 3, 126, 63, 0, 612, 626, 5, 96, 0, 0, 613, 627, 5, 86, 0, 0, 614, 619, 3, 112, 56, 0, 615, 616, 5, 61, 0, 0, 616, 618, 3, 112, 56, 0, 617, 615, 1, 0, 0, 0, 618, 621, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 624, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 5, 61, 0, 0, 623, 625, 3, 128, 64, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 613, 1, 0, 0, 0, 626, 614, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 97, 0, 0, 629, 125, 1, 0, 0, 0, 630, 631, 3, 56, 28, 0, 631, 127, 1, 0, 0, 0, 632, 633, 5, 89, 0, 0, 633, 638, 3, 130, 65, 0, 634, 635, 5, 61, 0, 0, 635, 637, 3, 130, 65, 0, 636, 634, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 641, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 5, 90, 0, 0, 642, 129, 1, 0, 0, 0, 643, 644, 3, 142, 71, 0, 644, 645, 5, 60, 0, 0, 645, 646, 3, 132, 66, 0, 646, 131, 1, 0, 0, 0, 647, 690, 5, 71, 0, 0, 648, 649, 3, 140, 70, 0, 649, 650, 5, 98, 0, 0, 650, 690, 1, 0, 0, 0, 651, 690, 3, 138, 69, 0, 652, 690, 3, 140, 70, 0, 653, 690, 3, 134, 67, 0, 654, 690, 3, 52, 26, 0, 655, 690, 3, 142, 71, 0, 656, 657, 5, 94, 0, 0, 657, 662, 3, 136, 68, 0, 658, 659, 5, 61, 0, 0, 659, 661, 3, 136, 68, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 665, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 666, 5, 95, 0, 0, 666, 690, 1, 0, 0, 0, 667, 668, 5, 94, 0, 0, 668, 673, 3, 134, 67, 0, 669, 670, 5, 61, 0, 0, 670, 672, 3, 134, 67, 0, 671, 669, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 676, 677, 5, 95, 0, 0, 677, 690, 1, 0, 0, 0, 678, 679, 5, 94, 0, 0, 679, 684, 3, 142, 71, 0, 680, 681, 5, 61, 0, 0, 681, 683, 3, 142, 71, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 687, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 688, 5, 95, 0, 0, 688, 690, 1, 0, 0, 0, 689, 647, 1, 0, 0, 0, 689, 648, 1, 0, 0, 0, 689, 651, 1, 0, 0, 0, 689, 652, 1, 0, 0, 0, 689, 653, 1, 0, 0, 0, 689, 654, 1, 0, 0, 0, 689, 655, 1, 0, 0, 0, 689, 656, 1, 0, 0, 0, 689, 667, 1, 0, 0, 0, 689, 678, 1, 0, 0, 0, 690, 133, 1, 0, 0, 0, 691, 692, 7, 6, 0, 0, 692, 135, 1, 0, 0, 0, 693, 696, 3, 138, 69, 0, 694, 696, 3, 140, 70, 0, 695, 693, 1, 0, 0, 0, 695, 694, 1, 0, 0, 0, 696, 137, 1, 0, 0, 0, 697, 699, 7, 4, 0, 0, 698, 697, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 54, 0, 0, 701, 139, 1, 0, 0, 0, 702, 704, 7, 4, 0, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 53, 0, 0, 706, 141, 1, 0, 0, 0, 707, 708, 5, 52, 0, 0, 708, 143, 1, 0, 0, 0, 709, 710, 7, 7, 0, 0, 710, 145, 1, 0, 0, 0, 711, 712, 7, 8, 0, 0, 712, 713, 5, 111, 0, 0, 713, 714, 3, 148, 74, 0, 714, 715, 3, 150, 75, 0, 715, 147, 1, 0, 0, 0, 716, 717, 3, 24, 12, 0, 717, 149, 1, 0, 0, 0, 718, 719, 5, 35, 0, 0, 719, 724, 3, 152, 76, 0, 720, 721, 5, 61, 0, 0, 721, 723, 3, 152, 76, 0, 722, 720, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 151, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 728, 3, 118, 59, 0, 728, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 325, 329, 333, 338, 349, 354, 358, 372, 383, 397, 418, 426, 429, 434, 447, 453, 460, 471, 485, 499, 510, 519, 527, 532, 540, 542, 547, 554, 559, 564, 574, 580, 588, 590, 601, 608, 619, 624, 626, 638, 662, 673, 684, 689, 695, 698, 703, 724] \ No newline at end of file +[4, 1, 136, 726, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 326, 8, 25, 1, 26, 1, 26, 3, 26, 330, 8, 26, 1, 27, 1, 27, 3, 27, 334, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 339, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 348, 8, 30, 10, 30, 12, 30, 351, 9, 30, 1, 31, 1, 31, 3, 31, 355, 8, 31, 1, 31, 1, 31, 3, 31, 359, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 371, 8, 34, 10, 34, 12, 34, 374, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 384, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 396, 8, 39, 10, 39, 12, 39, 399, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 419, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 425, 8, 44, 10, 44, 12, 44, 428, 9, 44, 3, 44, 430, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 435, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 454, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 461, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 470, 8, 51, 11, 51, 12, 51, 471, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 484, 8, 53, 10, 53, 12, 53, 487, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 496, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 507, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 514, 8, 56, 10, 56, 12, 56, 517, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 524, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 529, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 537, 8, 56, 10, 56, 12, 56, 540, 9, 56, 1, 57, 1, 57, 3, 57, 544, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 551, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 556, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 561, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 571, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 577, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 585, 8, 60, 10, 60, 12, 60, 588, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 598, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 603, 8, 61, 10, 61, 12, 61, 606, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 614, 8, 62, 10, 62, 12, 62, 617, 9, 62, 1, 62, 1, 62, 3, 62, 621, 8, 62, 3, 62, 623, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 633, 8, 64, 10, 64, 12, 64, 636, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 657, 8, 66, 10, 66, 12, 66, 660, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 668, 8, 66, 10, 66, 12, 66, 671, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 679, 8, 66, 10, 66, 12, 66, 682, 9, 66, 1, 66, 1, 66, 3, 66, 686, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 692, 8, 68, 1, 69, 3, 69, 695, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 700, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 719, 8, 75, 10, 75, 12, 75, 722, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 756, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 325, 1, 0, 0, 0, 52, 329, 1, 0, 0, 0, 54, 333, 1, 0, 0, 0, 56, 338, 1, 0, 0, 0, 58, 340, 1, 0, 0, 0, 60, 343, 1, 0, 0, 0, 62, 352, 1, 0, 0, 0, 64, 360, 1, 0, 0, 0, 66, 363, 1, 0, 0, 0, 68, 366, 1, 0, 0, 0, 70, 375, 1, 0, 0, 0, 72, 379, 1, 0, 0, 0, 74, 385, 1, 0, 0, 0, 76, 389, 1, 0, 0, 0, 78, 392, 1, 0, 0, 0, 80, 400, 1, 0, 0, 0, 82, 404, 1, 0, 0, 0, 84, 407, 1, 0, 0, 0, 86, 411, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 434, 1, 0, 0, 0, 92, 438, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 449, 1, 0, 0, 0, 98, 462, 1, 0, 0, 0, 100, 465, 1, 0, 0, 0, 102, 469, 1, 0, 0, 0, 104, 473, 1, 0, 0, 0, 106, 477, 1, 0, 0, 0, 108, 495, 1, 0, 0, 0, 110, 497, 1, 0, 0, 0, 112, 528, 1, 0, 0, 0, 114, 555, 1, 0, 0, 0, 116, 557, 1, 0, 0, 0, 118, 570, 1, 0, 0, 0, 120, 576, 1, 0, 0, 0, 122, 597, 1, 0, 0, 0, 124, 607, 1, 0, 0, 0, 126, 626, 1, 0, 0, 0, 128, 628, 1, 0, 0, 0, 130, 639, 1, 0, 0, 0, 132, 685, 1, 0, 0, 0, 134, 687, 1, 0, 0, 0, 136, 691, 1, 0, 0, 0, 138, 694, 1, 0, 0, 0, 140, 699, 1, 0, 0, 0, 142, 703, 1, 0, 0, 0, 144, 705, 1, 0, 0, 0, 146, 707, 1, 0, 0, 0, 148, 712, 1, 0, 0, 0, 150, 714, 1, 0, 0, 0, 152, 723, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 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, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 326, 5, 125, 0, 0, 323, 326, 3, 52, 26, 0, 324, 326, 3, 54, 27, 0, 325, 322, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 51, 1, 0, 0, 0, 327, 330, 5, 74, 0, 0, 328, 330, 5, 92, 0, 0, 329, 327, 1, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 53, 1, 0, 0, 0, 331, 334, 5, 91, 0, 0, 332, 334, 5, 93, 0, 0, 333, 331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 55, 1, 0, 0, 0, 335, 339, 3, 48, 24, 0, 336, 339, 3, 52, 26, 0, 337, 339, 3, 54, 27, 0, 338, 335, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 57, 1, 0, 0, 0, 340, 341, 5, 10, 0, 0, 341, 342, 5, 53, 0, 0, 342, 59, 1, 0, 0, 0, 343, 344, 5, 12, 0, 0, 344, 349, 3, 62, 31, 0, 345, 346, 5, 61, 0, 0, 346, 348, 3, 62, 31, 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, 61, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 3, 112, 56, 0, 353, 355, 7, 2, 0, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 72, 0, 0, 357, 359, 7, 3, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 63, 1, 0, 0, 0, 360, 361, 5, 26, 0, 0, 361, 362, 3, 46, 23, 0, 362, 65, 1, 0, 0, 0, 363, 364, 5, 25, 0, 0, 364, 365, 3, 46, 23, 0, 365, 67, 1, 0, 0, 0, 366, 367, 5, 29, 0, 0, 367, 372, 3, 70, 35, 0, 368, 369, 5, 61, 0, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 69, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 376, 3, 44, 22, 0, 376, 377, 5, 129, 0, 0, 377, 378, 3, 44, 22, 0, 378, 71, 1, 0, 0, 0, 379, 380, 5, 7, 0, 0, 380, 381, 3, 122, 61, 0, 381, 383, 3, 142, 71, 0, 382, 384, 3, 78, 39, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 73, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 122, 61, 0, 387, 388, 3, 142, 71, 0, 388, 75, 1, 0, 0, 0, 389, 390, 5, 24, 0, 0, 390, 391, 3, 42, 21, 0, 391, 77, 1, 0, 0, 0, 392, 397, 3, 80, 40, 0, 393, 394, 5, 61, 0, 0, 394, 396, 3, 80, 40, 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, 79, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 48, 24, 0, 401, 402, 5, 58, 0, 0, 402, 403, 3, 132, 66, 0, 403, 81, 1, 0, 0, 0, 404, 405, 5, 6, 0, 0, 405, 406, 3, 84, 42, 0, 406, 83, 1, 0, 0, 0, 407, 408, 5, 94, 0, 0, 408, 409, 3, 2, 1, 0, 409, 410, 5, 95, 0, 0, 410, 85, 1, 0, 0, 0, 411, 412, 5, 30, 0, 0, 412, 413, 5, 133, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 5, 5, 0, 0, 415, 418, 5, 37, 0, 0, 416, 417, 5, 35, 0, 0, 417, 419, 3, 44, 22, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 429, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 90, 45, 0, 422, 423, 5, 61, 0, 0, 423, 425, 3, 90, 45, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 89, 1, 0, 0, 0, 431, 432, 3, 44, 22, 0, 432, 433, 5, 58, 0, 0, 433, 435, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 3, 44, 22, 0, 437, 91, 1, 0, 0, 0, 438, 439, 5, 23, 0, 0, 439, 440, 3, 24, 12, 0, 440, 441, 5, 35, 0, 0, 441, 442, 3, 46, 23, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 15, 0, 0, 444, 447, 3, 38, 19, 0, 445, 446, 5, 55, 0, 0, 446, 448, 3, 14, 7, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 95, 1, 0, 0, 0, 449, 450, 5, 4, 0, 0, 450, 453, 3, 42, 21, 0, 451, 452, 5, 35, 0, 0, 452, 454, 3, 42, 21, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 460, 1, 0, 0, 0, 455, 456, 5, 129, 0, 0, 456, 457, 3, 42, 21, 0, 457, 458, 5, 61, 0, 0, 458, 459, 3, 42, 21, 0, 459, 461, 1, 0, 0, 0, 460, 455, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 97, 1, 0, 0, 0, 462, 463, 5, 27, 0, 0, 463, 464, 3, 46, 23, 0, 464, 99, 1, 0, 0, 0, 465, 466, 5, 18, 0, 0, 466, 467, 3, 102, 51, 0, 467, 101, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 103, 1, 0, 0, 0, 473, 474, 5, 96, 0, 0, 474, 475, 3, 106, 53, 0, 475, 476, 5, 97, 0, 0, 476, 105, 1, 0, 0, 0, 477, 478, 6, 53, -1, 0, 478, 479, 3, 108, 54, 0, 479, 485, 1, 0, 0, 0, 480, 481, 10, 1, 0, 0, 481, 482, 5, 51, 0, 0, 482, 484, 3, 108, 54, 0, 483, 480, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 107, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 496, 3, 34, 17, 0, 489, 496, 3, 8, 4, 0, 490, 496, 3, 64, 32, 0, 491, 496, 3, 58, 29, 0, 492, 496, 3, 36, 18, 0, 493, 496, 3, 60, 30, 0, 494, 496, 3, 72, 36, 0, 495, 488, 1, 0, 0, 0, 495, 489, 1, 0, 0, 0, 495, 490, 1, 0, 0, 0, 495, 491, 1, 0, 0, 0, 495, 492, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 494, 1, 0, 0, 0, 496, 109, 1, 0, 0, 0, 497, 498, 5, 28, 0, 0, 498, 111, 1, 0, 0, 0, 499, 500, 6, 56, -1, 0, 500, 501, 5, 70, 0, 0, 501, 529, 3, 112, 56, 8, 502, 529, 3, 118, 59, 0, 503, 529, 3, 114, 57, 0, 504, 506, 3, 118, 59, 0, 505, 507, 5, 70, 0, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 5, 66, 0, 0, 509, 510, 5, 96, 0, 0, 510, 515, 3, 118, 59, 0, 511, 512, 5, 61, 0, 0, 512, 514, 3, 118, 59, 0, 513, 511, 1, 0, 0, 0, 514, 517, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 518, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 518, 519, 5, 97, 0, 0, 519, 529, 1, 0, 0, 0, 520, 521, 3, 118, 59, 0, 521, 523, 5, 67, 0, 0, 522, 524, 5, 70, 0, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 5, 71, 0, 0, 526, 529, 1, 0, 0, 0, 527, 529, 3, 116, 58, 0, 528, 499, 1, 0, 0, 0, 528, 502, 1, 0, 0, 0, 528, 503, 1, 0, 0, 0, 528, 504, 1, 0, 0, 0, 528, 520, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 538, 1, 0, 0, 0, 530, 531, 10, 5, 0, 0, 531, 532, 5, 56, 0, 0, 532, 537, 3, 112, 56, 6, 533, 534, 10, 4, 0, 0, 534, 535, 5, 73, 0, 0, 535, 537, 3, 112, 56, 5, 536, 530, 1, 0, 0, 0, 536, 533, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 113, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 541, 543, 3, 118, 59, 0, 542, 544, 5, 70, 0, 0, 543, 542, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 5, 69, 0, 0, 546, 547, 3, 142, 71, 0, 547, 556, 1, 0, 0, 0, 548, 550, 3, 118, 59, 0, 549, 551, 5, 70, 0, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 75, 0, 0, 553, 554, 3, 142, 71, 0, 554, 556, 1, 0, 0, 0, 555, 541, 1, 0, 0, 0, 555, 548, 1, 0, 0, 0, 556, 115, 1, 0, 0, 0, 557, 560, 3, 42, 21, 0, 558, 559, 5, 59, 0, 0, 559, 561, 3, 10, 5, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 5, 60, 0, 0, 563, 564, 3, 132, 66, 0, 564, 117, 1, 0, 0, 0, 565, 571, 3, 120, 60, 0, 566, 567, 3, 120, 60, 0, 567, 568, 3, 144, 72, 0, 568, 569, 3, 120, 60, 0, 569, 571, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 566, 1, 0, 0, 0, 571, 119, 1, 0, 0, 0, 572, 573, 6, 60, -1, 0, 573, 577, 3, 122, 61, 0, 574, 575, 7, 4, 0, 0, 575, 577, 3, 120, 60, 3, 576, 572, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 577, 586, 1, 0, 0, 0, 578, 579, 10, 2, 0, 0, 579, 580, 7, 5, 0, 0, 580, 585, 3, 120, 60, 3, 581, 582, 10, 1, 0, 0, 582, 583, 7, 4, 0, 0, 583, 585, 3, 120, 60, 2, 584, 578, 1, 0, 0, 0, 584, 581, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 121, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 590, 6, 61, -1, 0, 590, 598, 3, 132, 66, 0, 591, 598, 3, 42, 21, 0, 592, 598, 3, 124, 62, 0, 593, 594, 5, 96, 0, 0, 594, 595, 3, 112, 56, 0, 595, 596, 5, 97, 0, 0, 596, 598, 1, 0, 0, 0, 597, 589, 1, 0, 0, 0, 597, 591, 1, 0, 0, 0, 597, 592, 1, 0, 0, 0, 597, 593, 1, 0, 0, 0, 598, 604, 1, 0, 0, 0, 599, 600, 10, 1, 0, 0, 600, 601, 5, 59, 0, 0, 601, 603, 3, 10, 5, 0, 602, 599, 1, 0, 0, 0, 603, 606, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 123, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 607, 608, 3, 126, 63, 0, 608, 622, 5, 96, 0, 0, 609, 623, 5, 86, 0, 0, 610, 615, 3, 112, 56, 0, 611, 612, 5, 61, 0, 0, 612, 614, 3, 112, 56, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 619, 5, 61, 0, 0, 619, 621, 3, 128, 64, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 1, 0, 0, 0, 622, 609, 1, 0, 0, 0, 622, 610, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 5, 97, 0, 0, 625, 125, 1, 0, 0, 0, 626, 627, 3, 56, 28, 0, 627, 127, 1, 0, 0, 0, 628, 629, 5, 89, 0, 0, 629, 634, 3, 130, 65, 0, 630, 631, 5, 61, 0, 0, 631, 633, 3, 130, 65, 0, 632, 630, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 637, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 637, 638, 5, 90, 0, 0, 638, 129, 1, 0, 0, 0, 639, 640, 3, 142, 71, 0, 640, 641, 5, 60, 0, 0, 641, 642, 3, 132, 66, 0, 642, 131, 1, 0, 0, 0, 643, 686, 5, 71, 0, 0, 644, 645, 3, 140, 70, 0, 645, 646, 5, 98, 0, 0, 646, 686, 1, 0, 0, 0, 647, 686, 3, 138, 69, 0, 648, 686, 3, 140, 70, 0, 649, 686, 3, 134, 67, 0, 650, 686, 3, 52, 26, 0, 651, 686, 3, 142, 71, 0, 652, 653, 5, 94, 0, 0, 653, 658, 3, 136, 68, 0, 654, 655, 5, 61, 0, 0, 655, 657, 3, 136, 68, 0, 656, 654, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 661, 1, 0, 0, 0, 660, 658, 1, 0, 0, 0, 661, 662, 5, 95, 0, 0, 662, 686, 1, 0, 0, 0, 663, 664, 5, 94, 0, 0, 664, 669, 3, 134, 67, 0, 665, 666, 5, 61, 0, 0, 666, 668, 3, 134, 67, 0, 667, 665, 1, 0, 0, 0, 668, 671, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 669, 1, 0, 0, 0, 672, 673, 5, 95, 0, 0, 673, 686, 1, 0, 0, 0, 674, 675, 5, 94, 0, 0, 675, 680, 3, 142, 71, 0, 676, 677, 5, 61, 0, 0, 677, 679, 3, 142, 71, 0, 678, 676, 1, 0, 0, 0, 679, 682, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 683, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 683, 684, 5, 95, 0, 0, 684, 686, 1, 0, 0, 0, 685, 643, 1, 0, 0, 0, 685, 644, 1, 0, 0, 0, 685, 647, 1, 0, 0, 0, 685, 648, 1, 0, 0, 0, 685, 649, 1, 0, 0, 0, 685, 650, 1, 0, 0, 0, 685, 651, 1, 0, 0, 0, 685, 652, 1, 0, 0, 0, 685, 663, 1, 0, 0, 0, 685, 674, 1, 0, 0, 0, 686, 133, 1, 0, 0, 0, 687, 688, 7, 6, 0, 0, 688, 135, 1, 0, 0, 0, 689, 692, 3, 138, 69, 0, 690, 692, 3, 140, 70, 0, 691, 689, 1, 0, 0, 0, 691, 690, 1, 0, 0, 0, 692, 137, 1, 0, 0, 0, 693, 695, 7, 4, 0, 0, 694, 693, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 5, 54, 0, 0, 697, 139, 1, 0, 0, 0, 698, 700, 7, 4, 0, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 53, 0, 0, 702, 141, 1, 0, 0, 0, 703, 704, 5, 52, 0, 0, 704, 143, 1, 0, 0, 0, 705, 706, 7, 7, 0, 0, 706, 145, 1, 0, 0, 0, 707, 708, 7, 8, 0, 0, 708, 709, 5, 111, 0, 0, 709, 710, 3, 148, 74, 0, 710, 711, 3, 150, 75, 0, 711, 147, 1, 0, 0, 0, 712, 713, 3, 24, 12, 0, 713, 149, 1, 0, 0, 0, 714, 715, 5, 35, 0, 0, 715, 720, 3, 152, 76, 0, 716, 717, 5, 61, 0, 0, 717, 719, 3, 152, 76, 0, 718, 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 151, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 3, 118, 59, 0, 724, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 325, 329, 333, 338, 349, 354, 358, 372, 383, 397, 418, 426, 429, 434, 447, 453, 460, 471, 485, 495, 506, 515, 523, 528, 536, 538, 543, 550, 555, 560, 570, 576, 584, 586, 597, 604, 615, 620, 622, 634, 658, 669, 680, 685, 691, 694, 699, 720] \ 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 93f9f2a6229f9..586b82d42c752 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 @@ -4021,21 +4021,9 @@ public StatsCommandContext statsCommand() { public SortCommandContext sortCommand() { return getRuleContext(SortCommandContext.class,0); } - public DropCommandContext dropCommand() { - return getRuleContext(DropCommandContext.class,0); - } - public RenameCommandContext renameCommand() { - return getRuleContext(RenameCommandContext.class,0); - } public DissectCommandContext dissectCommand() { return getRuleContext(DissectCommandContext.class,0); } - public GrokCommandContext grokCommand() { - return getRuleContext(GrokCommandContext.class,0); - } - public MvExpandCommandContext mvExpandCommand() { - return getRuleContext(MvExpandCommandContext.class,0); - } @SuppressWarnings("this-escape") public ForkSubQueryProcessingCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -4060,7 +4048,7 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 108, RULE_forkSubQueryProcessingCommand); try { - setState(499); + setState(495); _errHandler.sync(this); switch (_input.LA(1)) { case EVAL: @@ -4105,41 +4093,13 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( sortCommand(); } break; - case DROP: + case DISSECT: enterOuterAlt(_localctx, 7); { setState(494); - dropCommand(); - } - break; - case RENAME: - enterOuterAlt(_localctx, 8); - { - setState(495); - renameCommand(); - } - break; - case DISSECT: - enterOuterAlt(_localctx, 9); - { - setState(496); dissectCommand(); } break; - case GROK: - enterOuterAlt(_localctx, 10); - { - setState(497); - grokCommand(); - } - break; - case MV_EXPAND: - enterOuterAlt(_localctx, 11); - { - setState(498); - mvExpandCommand(); - } - break; default: throw new NoViableAltException(this); } @@ -4184,7 +4144,7 @@ public final RrfCommandContext rrfCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(501); + setState(497); match(DEV_RRF); } } @@ -4400,7 +4360,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(532); + setState(528); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: @@ -4409,9 +4369,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(504); + setState(500); match(NOT); - setState(505); + setState(501); booleanExpression(8); } break; @@ -4420,7 +4380,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(506); + setState(502); valueExpression(); } break; @@ -4429,7 +4389,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(507); + setState(503); regexBooleanExpression(); } break; @@ -4438,41 +4398,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(508); + setState(504); valueExpression(); - setState(510); + setState(506); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(509); + setState(505); match(NOT); } } - setState(512); + setState(508); match(IN); - setState(513); + setState(509); match(LP); - setState(514); + setState(510); valueExpression(); - setState(519); + setState(515); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(515); + setState(511); match(COMMA); - setState(516); + setState(512); valueExpression(); } } - setState(521); + setState(517); _errHandler.sync(this); _la = _input.LA(1); } - setState(522); + setState(518); match(RP); } break; @@ -4481,21 +4441,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(524); + setState(520); valueExpression(); - setState(525); + setState(521); match(IS); - setState(527); + setState(523); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(526); + setState(522); match(NOT); } } - setState(529); + setState(525); match(NULL); } break; @@ -4504,13 +4464,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(531); + setState(527); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(542); + setState(538); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4518,7 +4478,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(540); + setState(536); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: @@ -4526,11 +4486,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(534); + setState(530); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(535); + setState(531); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(536); + setState(532); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4539,18 +4499,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(537); + setState(533); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(538); + setState(534); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(539); + setState(535); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(544); + setState(540); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } @@ -4605,48 +4565,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 114, RULE_regexBooleanExpression); int _la; try { - setState(559); + setState(555); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(545); + setState(541); valueExpression(); - setState(547); + setState(543); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(546); + setState(542); match(NOT); } } - setState(549); + setState(545); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(550); + setState(546); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(552); + setState(548); valueExpression(); - setState(554); + setState(550); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(553); + setState(549); match(NOT); } } - setState(556); + setState(552); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(557); + setState(553); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -4706,23 +4666,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(561); + setState(557); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(564); + setState(560); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(562); + setState(558); match(CAST_OP); - setState(563); + setState(559); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(566); + setState(562); match(COLON); - setState(567); + setState(563); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -4806,14 +4766,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 118, RULE_valueExpression); try { - setState(574); + setState(570); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(569); + setState(565); operatorExpression(0); } break; @@ -4821,11 +4781,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(570); + setState(566); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(571); + setState(567); comparisonOperator(); - setState(572); + setState(568); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -4950,7 +4910,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(580); + setState(576); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: @@ -4959,7 +4919,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(577); + setState(573); primaryExpression(0); } break; @@ -4968,7 +4928,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(578); + setState(574); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4979,13 +4939,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(579); + setState(575); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(590); + setState(586); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,51,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4993,7 +4953,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(588); + setState(584); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: @@ -5001,9 +4961,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(582); + setState(578); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(583); + setState(579); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & 7L) != 0)) ) { @@ -5014,7 +4974,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(584); + setState(580); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -5023,9 +4983,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(585); + setState(581); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(586); + setState(582); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -5036,14 +4996,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(587); + setState(583); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(592); + setState(588); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } @@ -5201,7 +5161,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(601); + setState(597); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: @@ -5210,7 +5170,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(594); + setState(590); constant(); } break; @@ -5219,7 +5179,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(595); + setState(591); qualifiedName(); } break; @@ -5228,7 +5188,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(596); + setState(592); functionExpression(); } break; @@ -5237,17 +5197,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(597); + setState(593); match(LP); - setState(598); + setState(594); booleanExpression(0); - setState(599); + setState(595); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(608); + setState(604); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,53,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5258,16 +5218,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(603); + setState(599); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(604); + setState(600); match(CAST_OP); - setState(605); + setState(601); dataType(); } } } - setState(610); + setState(606); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,53,_ctx); } @@ -5333,16 +5293,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(611); + setState(607); functionName(); - setState(612); + setState(608); match(LP); - setState(626); + setState(622); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(613); + setState(609); match(ASTERISK); } break; @@ -5365,34 +5325,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(614); + setState(610); booleanExpression(0); - setState(619); + setState(615); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(615); + setState(611); match(COMMA); - setState(616); + setState(612); booleanExpression(0); } } } - setState(621); + setState(617); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } - setState(624); + setState(620); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(622); + setState(618); match(COMMA); - setState(623); + setState(619); mapExpression(); } } @@ -5405,7 +5365,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(628); + setState(624); match(RP); } } @@ -5451,7 +5411,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(630); + setState(626); identifierOrParameter(); } } @@ -5507,27 +5467,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(632); + setState(628); match(LEFT_BRACES); - setState(633); + setState(629); entryExpression(); - setState(638); + setState(634); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(634); + setState(630); match(COMMA); - setState(635); + setState(631); entryExpression(); } } - setState(640); + setState(636); _errHandler.sync(this); _la = _input.LA(1); } - setState(641); + setState(637); match(RIGHT_BRACES); } } @@ -5579,11 +5539,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(643); + setState(639); ((EntryExpressionContext)_localctx).key = string(); - setState(644); + setState(640); match(COLON); - setState(645); + setState(641); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -5854,14 +5814,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 132, RULE_constant); int _la; try { - setState(689); + setState(685); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(647); + setState(643); match(NULL); } break; @@ -5869,9 +5829,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(648); + setState(644); integerValue(); - setState(649); + setState(645); match(UNQUOTED_IDENTIFIER); } break; @@ -5879,7 +5839,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(651); + setState(647); decimalValue(); } break; @@ -5887,7 +5847,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(652); + setState(648); integerValue(); } break; @@ -5895,7 +5855,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(653); + setState(649); booleanValue(); } break; @@ -5903,7 +5863,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(654); + setState(650); parameter(); } break; @@ -5911,7 +5871,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(655); + setState(651); string(); } break; @@ -5919,27 +5879,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(656); + setState(652); match(OPENING_BRACKET); - setState(657); + setState(653); numericValue(); - setState(662); + setState(658); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(658); + setState(654); match(COMMA); - setState(659); + setState(655); numericValue(); } } - setState(664); + setState(660); _errHandler.sync(this); _la = _input.LA(1); } - setState(665); + setState(661); match(CLOSING_BRACKET); } break; @@ -5947,27 +5907,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(667); + setState(663); match(OPENING_BRACKET); - setState(668); + setState(664); booleanValue(); - setState(673); + setState(669); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(669); + setState(665); match(COMMA); - setState(670); + setState(666); booleanValue(); } } - setState(675); + setState(671); _errHandler.sync(this); _la = _input.LA(1); } - setState(676); + setState(672); match(CLOSING_BRACKET); } break; @@ -5975,27 +5935,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(678); + setState(674); match(OPENING_BRACKET); - setState(679); + setState(675); string(); - setState(684); + setState(680); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(680); + setState(676); match(COMMA); - setState(681); + setState(677); string(); } } - setState(686); + setState(682); _errHandler.sync(this); _la = _input.LA(1); } - setState(687); + setState(683); match(CLOSING_BRACKET); } break; @@ -6043,7 +6003,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(691); + setState(687); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -6098,20 +6058,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 136, RULE_numericValue); try { - setState(695); + setState(691); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(693); + setState(689); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(694); + setState(690); integerValue(); } break; @@ -6160,12 +6120,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(698); + setState(694); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(697); + setState(693); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6178,7 +6138,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(700); + setState(696); match(DECIMAL_LITERAL); } } @@ -6225,12 +6185,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(703); + setState(699); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(702); + setState(698); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6243,7 +6203,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(705); + setState(701); match(INTEGER_LITERAL); } } @@ -6287,7 +6247,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(707); + setState(703); match(QUOTED_STRING); } } @@ -6337,7 +6297,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(709); + setState(705); _la = _input.LA(1); if ( !(((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -6400,7 +6360,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(711); + setState(707); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 6815744L) != 0)) ) { @@ -6411,11 +6371,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(712); + setState(708); match(JOIN); - setState(713); + setState(709); joinTarget(); - setState(714); + setState(710); joinCondition(); } } @@ -6462,7 +6422,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(716); + setState(712); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6517,25 +6477,25 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(718); + setState(714); match(ON); - setState(719); + setState(715); joinPredicate(); - setState(724); + setState(720); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,65,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(720); + setState(716); match(COMMA); - setState(721); + setState(717); joinPredicate(); } } } - setState(726); + setState(722); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,65,_ctx); } @@ -6583,7 +6543,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(727); + setState(723); valueExpression(); } } @@ -6691,7 +6651,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u0088\u02da\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0088\u02d6\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"+ @@ -6756,393 +6716,388 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "0\u01cd\b0\u00011\u00011\u00011\u00012\u00012\u00012\u00013\u00043\u01d6"+ "\b3\u000b3\f3\u01d7\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u0001"+ "5\u00015\u00015\u00055\u01e4\b5\n5\f5\u01e7\t5\u00016\u00016\u00016\u0001"+ - "6\u00016\u00016\u00016\u00016\u00016\u00016\u00016\u00036\u01f4\b6\u0001"+ - "7\u00017\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00038\u01ff"+ - "\b8\u00018\u00018\u00018\u00018\u00018\u00058\u0206\b8\n8\f8\u0209\t8"+ - "\u00018\u00018\u00018\u00018\u00018\u00038\u0210\b8\u00018\u00018\u0001"+ - "8\u00038\u0215\b8\u00018\u00018\u00018\u00018\u00018\u00018\u00058\u021d"+ - "\b8\n8\f8\u0220\t8\u00019\u00019\u00039\u0224\b9\u00019\u00019\u00019"+ - "\u00019\u00019\u00039\u022b\b9\u00019\u00019\u00019\u00039\u0230\b9\u0001"+ - ":\u0001:\u0001:\u0003:\u0235\b:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001"+ - ";\u0001;\u0001;\u0003;\u023f\b;\u0001<\u0001<\u0001<\u0001<\u0003<\u0245"+ - "\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u024d\b<\n<\f<\u0250"+ - "\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0003=\u025a"+ - "\b=\u0001=\u0001=\u0001=\u0005=\u025f\b=\n=\f=\u0262\t=\u0001>\u0001>"+ - "\u0001>\u0001>\u0001>\u0001>\u0005>\u026a\b>\n>\f>\u026d\t>\u0001>\u0001"+ - ">\u0003>\u0271\b>\u0003>\u0273\b>\u0001>\u0001>\u0001?\u0001?\u0001@\u0001"+ - "@\u0001@\u0001@\u0005@\u027d\b@\n@\f@\u0280\t@\u0001@\u0001@\u0001A\u0001"+ - "A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u0295\bB\nB\fB\u0298\tB\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02a0\bB\nB\fB\u02a3\tB\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02ab\bB\nB\fB\u02ae\tB\u0001"+ - "B\u0001B\u0003B\u02b2\bB\u0001C\u0001C\u0001D\u0001D\u0003D\u02b8\bD\u0001"+ - "E\u0003E\u02bb\bE\u0001E\u0001E\u0001F\u0003F\u02c0\bF\u0001F\u0001F\u0001"+ - "G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001"+ - "J\u0001K\u0001K\u0001K\u0001K\u0005K\u02d3\bK\nK\fK\u02d6\tK\u0001L\u0001"+ - "L\u0001L\u0000\u0005\u0002jpxzM\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+ - "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+ - "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+ - "\u0090\u0092\u0094\u0096\u0098\u0000\t\u0002\u000044hh\u0001\u0000bc\u0002"+ - "\u000099>>\u0002\u0000AADD\u0001\u0000TU\u0001\u0000VX\u0002\u0000@@L"+ - "L\u0002\u0000MMOS\u0002\u0000\u0013\u0013\u0015\u0016\u02fc\u0000\u009a"+ - "\u0001\u0000\u0000\u0000\u0002\u009d\u0001\u0000\u0000\u0000\u0004\u00ae"+ - "\u0001\u0000\u0000\u0000\u0006\u00c9\u0001\u0000\u0000\u0000\b\u00cb\u0001"+ - "\u0000\u0000\u0000\n\u00ce\u0001\u0000\u0000\u0000\f\u00d0\u0001\u0000"+ - "\u0000\u0000\u000e\u00d3\u0001\u0000\u0000\u0000\u0010\u00de\u0001\u0000"+ - "\u0000\u0000\u0012\u00e2\u0001\u0000\u0000\u0000\u0014\u00e5\u0001\u0000"+ - "\u0000\u0000\u0016\u00e8\u0001\u0000\u0000\u0000\u0018\u00ff\u0001\u0000"+ - "\u0000\u0000\u001a\u0101\u0001\u0000\u0000\u0000\u001c\u0103\u0001\u0000"+ - "\u0000\u0000\u001e\u0105\u0001\u0000\u0000\u0000 \u0107\u0001\u0000\u0000"+ - "\u0000\"\u0110\u0001\u0000\u0000\u0000$\u0113\u0001\u0000\u0000\u0000"+ - "&\u011b\u0001\u0000\u0000\u0000(\u0123\u0001\u0000\u0000\u0000*\u0128"+ - "\u0001\u0000\u0000\u0000,\u0130\u0001\u0000\u0000\u0000.\u0138\u0001\u0000"+ - "\u0000\u00000\u0140\u0001\u0000\u0000\u00002\u0145\u0001\u0000\u0000\u0000"+ - "4\u0149\u0001\u0000\u0000\u00006\u014d\u0001\u0000\u0000\u00008\u0152"+ - "\u0001\u0000\u0000\u0000:\u0154\u0001\u0000\u0000\u0000<\u0157\u0001\u0000"+ - "\u0000\u0000>\u0160\u0001\u0000\u0000\u0000@\u0168\u0001\u0000\u0000\u0000"+ - "B\u016b\u0001\u0000\u0000\u0000D\u016e\u0001\u0000\u0000\u0000F\u0177"+ - "\u0001\u0000\u0000\u0000H\u017b\u0001\u0000\u0000\u0000J\u0181\u0001\u0000"+ - "\u0000\u0000L\u0185\u0001\u0000\u0000\u0000N\u0188\u0001\u0000\u0000\u0000"+ - "P\u0190\u0001\u0000\u0000\u0000R\u0194\u0001\u0000\u0000\u0000T\u0197"+ - "\u0001\u0000\u0000\u0000V\u019b\u0001\u0000\u0000\u0000X\u019e\u0001\u0000"+ - "\u0000\u0000Z\u01b2\u0001\u0000\u0000\u0000\\\u01b6\u0001\u0000\u0000"+ - "\u0000^\u01bb\u0001\u0000\u0000\u0000`\u01c1\u0001\u0000\u0000\u0000b"+ - "\u01ce\u0001\u0000\u0000\u0000d\u01d1\u0001\u0000\u0000\u0000f\u01d5\u0001"+ - "\u0000\u0000\u0000h\u01d9\u0001\u0000\u0000\u0000j\u01dd\u0001\u0000\u0000"+ - "\u0000l\u01f3\u0001\u0000\u0000\u0000n\u01f5\u0001\u0000\u0000\u0000p"+ - "\u0214\u0001\u0000\u0000\u0000r\u022f\u0001\u0000\u0000\u0000t\u0231\u0001"+ - "\u0000\u0000\u0000v\u023e\u0001\u0000\u0000\u0000x\u0244\u0001\u0000\u0000"+ - "\u0000z\u0259\u0001\u0000\u0000\u0000|\u0263\u0001\u0000\u0000\u0000~"+ - "\u0276\u0001\u0000\u0000\u0000\u0080\u0278\u0001\u0000\u0000\u0000\u0082"+ - "\u0283\u0001\u0000\u0000\u0000\u0084\u02b1\u0001\u0000\u0000\u0000\u0086"+ - "\u02b3\u0001\u0000\u0000\u0000\u0088\u02b7\u0001\u0000\u0000\u0000\u008a"+ - "\u02ba\u0001\u0000\u0000\u0000\u008c\u02bf\u0001\u0000\u0000\u0000\u008e"+ - "\u02c3\u0001\u0000\u0000\u0000\u0090\u02c5\u0001\u0000\u0000\u0000\u0092"+ - "\u02c7\u0001\u0000\u0000\u0000\u0094\u02cc\u0001\u0000\u0000\u0000\u0096"+ - "\u02ce\u0001\u0000\u0000\u0000\u0098\u02d7\u0001\u0000\u0000\u0000\u009a"+ - "\u009b\u0003\u0002\u0001\u0000\u009b\u009c\u0005\u0000\u0000\u0001\u009c"+ - "\u0001\u0001\u0000\u0000\u0000\u009d\u009e\u0006\u0001\uffff\uffff\u0000"+ - "\u009e\u009f\u0003\u0004\u0002\u0000\u009f\u00a5\u0001\u0000\u0000\u0000"+ - "\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2\u00053\u0000\u0000\u00a2"+ - "\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001\u0000\u0000\u0000\u00a4"+ - "\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000\u0000\u00a5"+ - "\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001\u0000\u0000\u0000\u00a7"+ - "\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003R)\u0000\u00a9\u00af\u0003"+ - "\u0012\t\u0000\u00aa\u00af\u0003\f\u0006\u0000\u00ab\u00af\u0003V+\u0000"+ - "\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad\u00af\u0003\u0014\n\u0000\u00ae"+ - "\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000\u00ae"+ - "\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000\u0000\u00ae"+ - "\u00ac\u0001\u0000\u0000\u0000\u00af\u0005\u0001\u0000\u0000\u0000\u00b0"+ - "\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003\b\u0004\u0000\u00b2\u00ca"+ - "\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000\u00b4\u00ca\u0003$\u0012"+ - "\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca\u0003B!\u0000\u00b7"+ - "\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9\u00ca\u0003J%\u0000"+ - "\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000\u00bc\u00ca\u0003"+ - "\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be\u00ca\u0003^/"+ - "\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003\\.\u0000"+ - "\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000\u00c3\u00c4"+ - "\u0004\u0003\u0005\u0000\u00c4\u00ca\u0003b1\u0000\u00c5\u00c6\u0004\u0003"+ - "\u0006\u0000\u00c6\u00ca\u0003d2\u0000\u00c7\u00c8\u0004\u0003\u0007\u0000"+ - "\u00c8\u00ca\u0003n7\u0000\u00c9\u00b0\u0001\u0000\u0000\u0000\u00c9\u00b1"+ - "\u0001\u0000\u0000\u0000\u00c9\u00b2\u0001\u0000\u0000\u0000\u00c9\u00b3"+ - "\u0001\u0000\u0000\u0000\u00c9\u00b4\u0001\u0000\u0000\u0000\u00c9\u00b5"+ - "\u0001\u0000\u0000\u0000\u00c9\u00b6\u0001\u0000\u0000\u0000\u00c9\u00b7"+ - "\u0001\u0000\u0000\u0000\u00c9\u00b8\u0001\u0000\u0000\u0000\u00c9\u00b9"+ - "\u0001\u0000\u0000\u0000\u00c9\u00ba\u0001\u0000\u0000\u0000\u00c9\u00bb"+ - "\u0001\u0000\u0000\u0000\u00c9\u00bc\u0001\u0000\u0000\u0000\u00c9\u00bd"+ - "\u0001\u0000\u0000\u0000\u00c9\u00bf\u0001\u0000\u0000\u0000\u00c9\u00c1"+ - "\u0001\u0000\u0000\u0000\u00c9\u00c3\u0001\u0000\u0000\u0000\u00c9\u00c5"+ - "\u0001\u0000\u0000\u0000\u00c9\u00c7\u0001\u0000\u0000\u0000\u00ca\u0007"+ - "\u0001\u0000\u0000\u0000\u00cb\u00cc\u0005\u000e\u0000\u0000\u00cc\u00cd"+ - "\u0003p8\u0000\u00cd\t\u0001\u0000\u0000\u0000\u00ce\u00cf\u00030\u0018"+ - "\u0000\u00cf\u000b\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005\u000b\u0000"+ - "\u0000\u00d1\u00d2\u0003\u000e\u0007\u0000\u00d2\r\u0001\u0000\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\u000f\u0001\u0000\u0000\u0000\u00da\u00d8"+ - "\u0001\u0000\u0000\u0000\u00db\u00dc\u0003*\u0015\u0000\u00dc\u00dd\u0005"+ - ":\u0000\u0000\u00dd\u00df\u0001\u0000\u0000\u0000\u00de\u00db\u0001\u0000"+ - "\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0\u0001\u0000"+ - "\u0000\u0000\u00e0\u00e1\u0003p8\u0000\u00e1\u0011\u0001\u0000\u0000\u0000"+ - "\u00e2\u00e3\u0005\u0010\u0000\u0000\u00e3\u00e4\u0003\u0016\u000b\u0000"+ - "\u00e4\u0013\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005\u0011\u0000\u0000"+ - "\u00e6\u00e7\u0003\u0016\u000b\u0000\u00e7\u0015\u0001\u0000\u0000\u0000"+ - "\u00e8\u00ed\u0003\u0018\f\u0000\u00e9\u00ea\u0005=\u0000\u0000\u00ea"+ - "\u00ec\u0003\u0018\f\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000\u00ec\u00ef"+ - "\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000\u00ed\u00ee"+ - "\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000\u00ef\u00ed"+ - "\u0001\u0000\u0000\u0000\u00f0\u00f2\u0003 \u0010\u0000\u00f1\u00f0\u0001"+ - "\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2\u0017\u0001"+ - "\u0000\u0000\u0000\u00f3\u00f4\u0003\u001a\r\u0000\u00f4\u00f5\u0005<"+ - "\u0000\u0000\u00f5\u00f7\u0001\u0000\u0000\u0000\u00f6\u00f3\u0001\u0000"+ - "\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001\u0000"+ - "\u0000\u0000\u00f8\u0100\u0003\u001e\u000f\u0000\u00f9\u00fa\u0004\f\b"+ - "\u0000\u00fa\u00fd\u0003\u001e\u000f\u0000\u00fb\u00fc\u0005;\u0000\u0000"+ - "\u00fc\u00fe\u0003\u001c\u000e\u0000\u00fd\u00fb\u0001\u0000\u0000\u0000"+ - "\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0100\u0001\u0000\u0000\u0000"+ - "\u00ff\u00f6\u0001\u0000\u0000\u0000\u00ff\u00f9\u0001\u0000\u0000\u0000"+ - "\u0100\u0019\u0001\u0000\u0000\u0000\u0101\u0102\u0007\u0000\u0000\u0000"+ - "\u0102\u001b\u0001\u0000\u0000\u0000\u0103\u0104\u0007\u0000\u0000\u0000"+ - "\u0104\u001d\u0001\u0000\u0000\u0000\u0105\u0106\u0007\u0000\u0000\u0000"+ - "\u0106\u001f\u0001\u0000\u0000\u0000\u0107\u0108\u0005g\u0000\u0000\u0108"+ - "\u010d\u0005h\u0000\u0000\u0109\u010a\u0005=\u0000\u0000\u010a\u010c\u0005"+ - "h\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c\u010f\u0001\u0000"+ - "\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010d\u010e\u0001\u0000"+ - "\u0000\u0000\u010e!\u0001\u0000\u0000\u0000\u010f\u010d\u0001\u0000\u0000"+ - "\u0000\u0110\u0111\u0005\b\u0000\u0000\u0111\u0112\u0003\u000e\u0007\u0000"+ - "\u0112#\u0001\u0000\u0000\u0000\u0113\u0115\u0005\r\u0000\u0000\u0114"+ - "\u0116\u0003&\u0013\u0000\u0115\u0114\u0001\u0000\u0000\u0000\u0115\u0116"+ - "\u0001\u0000\u0000\u0000\u0116\u0119\u0001\u0000\u0000\u0000\u0117\u0118"+ - "\u00057\u0000\u0000\u0118\u011a\u0003\u000e\u0007\u0000\u0119\u0117\u0001"+ - "\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a%\u0001\u0000"+ - "\u0000\u0000\u011b\u0120\u0003(\u0014\u0000\u011c\u011d\u0005=\u0000\u0000"+ - "\u011d\u011f\u0003(\u0014\u0000\u011e\u011c\u0001\u0000\u0000\u0000\u011f"+ - "\u0122\u0001\u0000\u0000\u0000\u0120\u011e\u0001\u0000\u0000\u0000\u0120"+ - "\u0121\u0001\u0000\u0000\u0000\u0121\'\u0001\u0000\u0000\u0000\u0122\u0120"+ - "\u0001\u0000\u0000\u0000\u0123\u0126\u0003\u0010\b\u0000\u0124\u0125\u0005"+ - "\u000e\u0000\u0000\u0125\u0127\u0003p8\u0000\u0126\u0124\u0001\u0000\u0000"+ - "\u0000\u0126\u0127\u0001\u0000\u0000\u0000\u0127)\u0001\u0000\u0000\u0000"+ - "\u0128\u012d\u00038\u001c\u0000\u0129\u012a\u0005?\u0000\u0000\u012a\u012c"+ - "\u00038\u001c\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u012f\u0001"+ - "\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012e\u0001"+ - "\u0000\u0000\u0000\u012e+\u0001\u0000\u0000\u0000\u012f\u012d\u0001\u0000"+ - "\u0000\u0000\u0130\u0135\u00032\u0019\u0000\u0131\u0132\u0005?\u0000\u0000"+ - "\u0132\u0134\u00032\u0019\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0134"+ - "\u0137\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0135"+ - "\u0136\u0001\u0000\u0000\u0000\u0136-\u0001\u0000\u0000\u0000\u0137\u0135"+ - "\u0001\u0000\u0000\u0000\u0138\u013d\u0003,\u0016\u0000\u0139\u013a\u0005"+ - "=\u0000\u0000\u013a\u013c\u0003,\u0016\u0000\u013b\u0139\u0001\u0000\u0000"+ - "\u0000\u013c\u013f\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000"+ - "\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e/\u0001\u0000\u0000\u0000"+ - "\u013f\u013d\u0001\u0000\u0000\u0000\u0140\u0141\u0007\u0001\u0000\u0000"+ - "\u01411\u0001\u0000\u0000\u0000\u0142\u0146\u0005}\u0000\u0000\u0143\u0146"+ - "\u00034\u001a\u0000\u0144\u0146\u00036\u001b\u0000\u0145\u0142\u0001\u0000"+ - "\u0000\u0000\u0145\u0143\u0001\u0000\u0000\u0000\u0145\u0144\u0001\u0000"+ - "\u0000\u0000\u01463\u0001\u0000\u0000\u0000\u0147\u014a\u0005J\u0000\u0000"+ - "\u0148\u014a\u0005\\\u0000\u0000\u0149\u0147\u0001\u0000\u0000\u0000\u0149"+ - "\u0148\u0001\u0000\u0000\u0000\u014a5\u0001\u0000\u0000\u0000\u014b\u014e"+ - "\u0005[\u0000\u0000\u014c\u014e\u0005]\u0000\u0000\u014d\u014b\u0001\u0000"+ - "\u0000\u0000\u014d\u014c\u0001\u0000\u0000\u0000\u014e7\u0001\u0000\u0000"+ - "\u0000\u014f\u0153\u00030\u0018\u0000\u0150\u0153\u00034\u001a\u0000\u0151"+ - "\u0153\u00036\u001b\u0000\u0152\u014f\u0001\u0000\u0000\u0000\u0152\u0150"+ - "\u0001\u0000\u0000\u0000\u0152\u0151\u0001\u0000\u0000\u0000\u01539\u0001"+ - "\u0000\u0000\u0000\u0154\u0155\u0005\n\u0000\u0000\u0155\u0156\u00055"+ - "\u0000\u0000\u0156;\u0001\u0000\u0000\u0000\u0157\u0158\u0005\f\u0000"+ - "\u0000\u0158\u015d\u0003>\u001f\u0000\u0159\u015a\u0005=\u0000\u0000\u015a"+ - "\u015c\u0003>\u001f\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=\u0001\u0000\u0000\u0000\u015f\u015d\u0001"+ - "\u0000\u0000\u0000\u0160\u0162\u0003p8\u0000\u0161\u0163\u0007\u0002\u0000"+ - "\u0000\u0162\u0161\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000"+ - "\u0000\u0163\u0166\u0001\u0000\u0000\u0000\u0164\u0165\u0005H\u0000\u0000"+ - "\u0165\u0167\u0007\u0003\u0000\u0000\u0166\u0164\u0001\u0000\u0000\u0000"+ - "\u0166\u0167\u0001\u0000\u0000\u0000\u0167?\u0001\u0000\u0000\u0000\u0168"+ - "\u0169\u0005\u001a\u0000\u0000\u0169\u016a\u0003.\u0017\u0000\u016aA\u0001"+ - "\u0000\u0000\u0000\u016b\u016c\u0005\u0019\u0000\u0000\u016c\u016d\u0003"+ - ".\u0017\u0000\u016dC\u0001\u0000\u0000\u0000\u016e\u016f\u0005\u001d\u0000"+ - "\u0000\u016f\u0174\u0003F#\u0000\u0170\u0171\u0005=\u0000\u0000\u0171"+ - "\u0173\u0003F#\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0176\u0001"+ - "\u0000\u0000\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0174\u0175\u0001"+ - "\u0000\u0000\u0000\u0175E\u0001\u0000\u0000\u0000\u0176\u0174\u0001\u0000"+ - "\u0000\u0000\u0177\u0178\u0003,\u0016\u0000\u0178\u0179\u0005\u0081\u0000"+ - "\u0000\u0179\u017a\u0003,\u0016\u0000\u017aG\u0001\u0000\u0000\u0000\u017b"+ - "\u017c\u0005\u0007\u0000\u0000\u017c\u017d\u0003z=\u0000\u017d\u017f\u0003"+ - "\u008eG\u0000\u017e\u0180\u0003N\'\u0000\u017f\u017e\u0001\u0000\u0000"+ - "\u0000\u017f\u0180\u0001\u0000\u0000\u0000\u0180I\u0001\u0000\u0000\u0000"+ - "\u0181\u0182\u0005\t\u0000\u0000\u0182\u0183\u0003z=\u0000\u0183\u0184"+ - "\u0003\u008eG\u0000\u0184K\u0001\u0000\u0000\u0000\u0185\u0186\u0005\u0018"+ - "\u0000\u0000\u0186\u0187\u0003*\u0015\u0000\u0187M\u0001\u0000\u0000\u0000"+ - "\u0188\u018d\u0003P(\u0000\u0189\u018a\u0005=\u0000\u0000\u018a\u018c"+ - "\u0003P(\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\u018eO\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000"+ - "\u0000\u0190\u0191\u00030\u0018\u0000\u0191\u0192\u0005:\u0000\u0000\u0192"+ - "\u0193\u0003\u0084B\u0000\u0193Q\u0001\u0000\u0000\u0000\u0194\u0195\u0005"+ - "\u0006\u0000\u0000\u0195\u0196\u0003T*\u0000\u0196S\u0001\u0000\u0000"+ - "\u0000\u0197\u0198\u0005^\u0000\u0000\u0198\u0199\u0003\u0002\u0001\u0000"+ - "\u0199\u019a\u0005_\u0000\u0000\u019aU\u0001\u0000\u0000\u0000\u019b\u019c"+ - "\u0005\u001e\u0000\u0000\u019c\u019d\u0005\u0085\u0000\u0000\u019dW\u0001"+ - "\u0000\u0000\u0000\u019e\u019f\u0005\u0005\u0000\u0000\u019f\u01a2\u0005"+ - "%\u0000\u0000\u01a0\u01a1\u0005#\u0000\u0000\u01a1\u01a3\u0003,\u0016"+ - "\u0000\u01a2\u01a0\u0001\u0000\u0000\u0000\u01a2\u01a3\u0001\u0000\u0000"+ - "\u0000\u01a3\u01ad\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005$\u0000\u0000"+ - "\u01a5\u01aa\u0003Z-\u0000\u01a6\u01a7\u0005=\u0000\u0000\u01a7\u01a9"+ - "\u0003Z-\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac\u0001\u0000"+ - "\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab\u0001\u0000"+ - "\u0000\u0000\u01ab\u01ae\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001\u0000"+ - "\u0000\u0000\u01ad\u01a4\u0001\u0000\u0000\u0000\u01ad\u01ae\u0001\u0000"+ - "\u0000\u0000\u01aeY\u0001\u0000\u0000\u0000\u01af\u01b0\u0003,\u0016\u0000"+ - "\u01b0\u01b1\u0005:\u0000\u0000\u01b1\u01b3\u0001\u0000\u0000\u0000\u01b2"+ - "\u01af\u0001\u0000\u0000\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000\u01b3"+ - "\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b5\u0003,\u0016\u0000\u01b5[\u0001"+ - "\u0000\u0000\u0000\u01b6\u01b7\u0005\u0017\u0000\u0000\u01b7\u01b8\u0003"+ - "\u0018\f\u0000\u01b8\u01b9\u0005#\u0000\u0000\u01b9\u01ba\u0003.\u0017"+ - "\u0000\u01ba]\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005\u000f\u0000\u0000"+ - "\u01bc\u01bf\u0003&\u0013\u0000\u01bd\u01be\u00057\u0000\u0000\u01be\u01c0"+ - "\u0003\u000e\u0007\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0"+ - "\u0001\u0000\u0000\u0000\u01c0_\u0001\u0000\u0000\u0000\u01c1\u01c2\u0005"+ - "\u0004\u0000\u0000\u01c2\u01c5\u0003*\u0015\u0000\u01c3\u01c4\u0005#\u0000"+ - "\u0000\u01c4\u01c6\u0003*\u0015\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000"+ - "\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6\u01cc\u0001\u0000\u0000\u0000"+ - "\u01c7\u01c8\u0005\u0081\u0000\u0000\u01c8\u01c9\u0003*\u0015\u0000\u01c9"+ - "\u01ca\u0005=\u0000\u0000\u01ca\u01cb\u0003*\u0015\u0000\u01cb\u01cd\u0001"+ - "\u0000\u0000\u0000\u01cc\u01c7\u0001\u0000\u0000\u0000\u01cc\u01cd\u0001"+ - "\u0000\u0000\u0000\u01cda\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005\u001b"+ - "\u0000\u0000\u01cf\u01d0\u0003.\u0017\u0000\u01d0c\u0001\u0000\u0000\u0000"+ - "\u01d1\u01d2\u0005\u0012\u0000\u0000\u01d2\u01d3\u0003f3\u0000\u01d3e"+ - "\u0001\u0000\u0000\u0000\u01d4\u01d6\u0003h4\u0000\u01d5\u01d4\u0001\u0000"+ - "\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7\u01d5\u0001\u0000"+ - "\u0000\u0000\u01d7\u01d8\u0001\u0000\u0000\u0000\u01d8g\u0001\u0000\u0000"+ - "\u0000\u01d9\u01da\u0005`\u0000\u0000\u01da\u01db\u0003j5\u0000\u01db"+ - "\u01dc\u0005a\u0000\u0000\u01dci\u0001\u0000\u0000\u0000\u01dd\u01de\u0006"+ - "5\uffff\uffff\u0000\u01de\u01df\u0003l6\u0000\u01df\u01e5\u0001\u0000"+ - "\u0000\u0000\u01e0\u01e1\n\u0001\u0000\u0000\u01e1\u01e2\u00053\u0000"+ - "\u0000\u01e2\u01e4\u0003l6\u0000\u01e3\u01e0\u0001\u0000\u0000\u0000\u01e4"+ - "\u01e7\u0001\u0000\u0000\u0000\u01e5\u01e3\u0001\u0000\u0000\u0000\u01e5"+ - "\u01e6\u0001\u0000\u0000\u0000\u01e6k\u0001\u0000\u0000\u0000\u01e7\u01e5"+ - "\u0001\u0000\u0000\u0000\u01e8\u01f4\u0003\"\u0011\u0000\u01e9\u01f4\u0003"+ - "\b\u0004\u0000\u01ea\u01f4\u0003@ \u0000\u01eb\u01f4\u0003:\u001d\u0000"+ - "\u01ec\u01f4\u0003$\u0012\u0000\u01ed\u01f4\u0003<\u001e\u0000\u01ee\u01f4"+ - "\u0003B!\u0000\u01ef\u01f4\u0003D\"\u0000\u01f0\u01f4\u0003H$\u0000\u01f1"+ - "\u01f4\u0003J%\u0000\u01f2\u01f4\u0003L&\u0000\u01f3\u01e8\u0001\u0000"+ - "\u0000\u0000\u01f3\u01e9\u0001\u0000\u0000\u0000\u01f3\u01ea\u0001\u0000"+ - "\u0000\u0000\u01f3\u01eb\u0001\u0000\u0000\u0000\u01f3\u01ec\u0001\u0000"+ - "\u0000\u0000\u01f3\u01ed\u0001\u0000\u0000\u0000\u01f3\u01ee\u0001\u0000"+ - "\u0000\u0000\u01f3\u01ef\u0001\u0000\u0000\u0000\u01f3\u01f0\u0001\u0000"+ - "\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f3\u01f2\u0001\u0000"+ - "\u0000\u0000\u01f4m\u0001\u0000\u0000\u0000\u01f5\u01f6\u0005\u001c\u0000"+ - "\u0000\u01f6o\u0001\u0000\u0000\u0000\u01f7\u01f8\u00068\uffff\uffff\u0000"+ - "\u01f8\u01f9\u0005F\u0000\u0000\u01f9\u0215\u0003p8\b\u01fa\u0215\u0003"+ - "v;\u0000\u01fb\u0215\u0003r9\u0000\u01fc\u01fe\u0003v;\u0000\u01fd\u01ff"+ - "\u0005F\u0000\u0000\u01fe\u01fd\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001"+ - "\u0000\u0000\u0000\u01ff\u0200\u0001\u0000\u0000\u0000\u0200\u0201\u0005"+ - "B\u0000\u0000\u0201\u0202\u0005`\u0000\u0000\u0202\u0207\u0003v;\u0000"+ - "\u0203\u0204\u0005=\u0000\u0000\u0204\u0206\u0003v;\u0000\u0205\u0203"+ - "\u0001\u0000\u0000\u0000\u0206\u0209\u0001\u0000\u0000\u0000\u0207\u0205"+ - "\u0001\u0000\u0000\u0000\u0207\u0208\u0001\u0000\u0000\u0000\u0208\u020a"+ - "\u0001\u0000\u0000\u0000\u0209\u0207\u0001\u0000\u0000\u0000\u020a\u020b"+ - "\u0005a\u0000\u0000\u020b\u0215\u0001\u0000\u0000\u0000\u020c\u020d\u0003"+ - "v;\u0000\u020d\u020f\u0005C\u0000\u0000\u020e\u0210\u0005F\u0000\u0000"+ - "\u020f\u020e\u0001\u0000\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000"+ - "\u0210\u0211\u0001\u0000\u0000\u0000\u0211\u0212\u0005G\u0000\u0000\u0212"+ - "\u0215\u0001\u0000\u0000\u0000\u0213\u0215\u0003t:\u0000\u0214\u01f7\u0001"+ - "\u0000\u0000\u0000\u0214\u01fa\u0001\u0000\u0000\u0000\u0214\u01fb\u0001"+ - "\u0000\u0000\u0000\u0214\u01fc\u0001\u0000\u0000\u0000\u0214\u020c\u0001"+ - "\u0000\u0000\u0000\u0214\u0213\u0001\u0000\u0000\u0000\u0215\u021e\u0001"+ - "\u0000\u0000\u0000\u0216\u0217\n\u0005\u0000\u0000\u0217\u0218\u00058"+ - "\u0000\u0000\u0218\u021d\u0003p8\u0006\u0219\u021a\n\u0004\u0000\u0000"+ - "\u021a\u021b\u0005I\u0000\u0000\u021b\u021d\u0003p8\u0005\u021c\u0216"+ - "\u0001\u0000\u0000\u0000\u021c\u0219\u0001\u0000\u0000\u0000\u021d\u0220"+ - "\u0001\u0000\u0000\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021e\u021f"+ - "\u0001\u0000\u0000\u0000\u021fq\u0001\u0000\u0000\u0000\u0220\u021e\u0001"+ - "\u0000\u0000\u0000\u0221\u0223\u0003v;\u0000\u0222\u0224\u0005F\u0000"+ - "\u0000\u0223\u0222\u0001\u0000\u0000\u0000\u0223\u0224\u0001\u0000\u0000"+ - "\u0000\u0224\u0225\u0001\u0000\u0000\u0000\u0225\u0226\u0005E\u0000\u0000"+ - "\u0226\u0227\u0003\u008eG\u0000\u0227\u0230\u0001\u0000\u0000\u0000\u0228"+ - "\u022a\u0003v;\u0000\u0229\u022b\u0005F\u0000\u0000\u022a\u0229\u0001"+ - "\u0000\u0000\u0000\u022a\u022b\u0001\u0000\u0000\u0000\u022b\u022c\u0001"+ - "\u0000\u0000\u0000\u022c\u022d\u0005K\u0000\u0000\u022d\u022e\u0003\u008e"+ - "G\u0000\u022e\u0230\u0001\u0000\u0000\u0000\u022f\u0221\u0001\u0000\u0000"+ - "\u0000\u022f\u0228\u0001\u0000\u0000\u0000\u0230s\u0001\u0000\u0000\u0000"+ - "\u0231\u0234\u0003*\u0015\u0000\u0232\u0233\u0005;\u0000\u0000\u0233\u0235"+ - "\u0003\n\u0005\u0000\u0234\u0232\u0001\u0000\u0000\u0000\u0234\u0235\u0001"+ - "\u0000\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237\u0005"+ - "<\u0000\u0000\u0237\u0238\u0003\u0084B\u0000\u0238u\u0001\u0000\u0000"+ - "\u0000\u0239\u023f\u0003x<\u0000\u023a\u023b\u0003x<\u0000\u023b\u023c"+ - "\u0003\u0090H\u0000\u023c\u023d\u0003x<\u0000\u023d\u023f\u0001\u0000"+ - "\u0000\u0000\u023e\u0239\u0001\u0000\u0000\u0000\u023e\u023a\u0001\u0000"+ - "\u0000\u0000\u023fw\u0001\u0000\u0000\u0000\u0240\u0241\u0006<\uffff\uffff"+ - "\u0000\u0241\u0245\u0003z=\u0000\u0242\u0243\u0007\u0004\u0000\u0000\u0243"+ - "\u0245\u0003x<\u0003\u0244\u0240\u0001\u0000\u0000\u0000\u0244\u0242\u0001"+ - "\u0000\u0000\u0000\u0245\u024e\u0001\u0000\u0000\u0000\u0246\u0247\n\u0002"+ - "\u0000\u0000\u0247\u0248\u0007\u0005\u0000\u0000\u0248\u024d\u0003x<\u0003"+ - "\u0249\u024a\n\u0001\u0000\u0000\u024a\u024b\u0007\u0004\u0000\u0000\u024b"+ - "\u024d\u0003x<\u0002\u024c\u0246\u0001\u0000\u0000\u0000\u024c\u0249\u0001"+ - "\u0000\u0000\u0000\u024d\u0250\u0001\u0000\u0000\u0000\u024e\u024c\u0001"+ - "\u0000\u0000\u0000\u024e\u024f\u0001\u0000\u0000\u0000\u024fy\u0001\u0000"+ - "\u0000\u0000\u0250\u024e\u0001\u0000\u0000\u0000\u0251\u0252\u0006=\uffff"+ - "\uffff\u0000\u0252\u025a\u0003\u0084B\u0000\u0253\u025a\u0003*\u0015\u0000"+ - "\u0254\u025a\u0003|>\u0000\u0255\u0256\u0005`\u0000\u0000\u0256\u0257"+ - "\u0003p8\u0000\u0257\u0258\u0005a\u0000\u0000\u0258\u025a\u0001\u0000"+ - "\u0000\u0000\u0259\u0251\u0001\u0000\u0000\u0000\u0259\u0253\u0001\u0000"+ - "\u0000\u0000\u0259\u0254\u0001\u0000\u0000\u0000\u0259\u0255\u0001\u0000"+ - "\u0000\u0000\u025a\u0260\u0001\u0000\u0000\u0000\u025b\u025c\n\u0001\u0000"+ - "\u0000\u025c\u025d\u0005;\u0000\u0000\u025d\u025f\u0003\n\u0005\u0000"+ - "\u025e\u025b\u0001\u0000\u0000\u0000\u025f\u0262\u0001\u0000\u0000\u0000"+ - "\u0260\u025e\u0001\u0000\u0000\u0000\u0260\u0261\u0001\u0000\u0000\u0000"+ - "\u0261{\u0001\u0000\u0000\u0000\u0262\u0260\u0001\u0000\u0000\u0000\u0263"+ - "\u0264\u0003~?\u0000\u0264\u0272\u0005`\u0000\u0000\u0265\u0273\u0005"+ - "V\u0000\u0000\u0266\u026b\u0003p8\u0000\u0267\u0268\u0005=\u0000\u0000"+ - "\u0268\u026a\u0003p8\u0000\u0269\u0267\u0001\u0000\u0000\u0000\u026a\u026d"+ - "\u0001\u0000\u0000\u0000\u026b\u0269\u0001\u0000\u0000\u0000\u026b\u026c"+ - "\u0001\u0000\u0000\u0000\u026c\u0270\u0001\u0000\u0000\u0000\u026d\u026b"+ - "\u0001\u0000\u0000\u0000\u026e\u026f\u0005=\u0000\u0000\u026f\u0271\u0003"+ - "\u0080@\u0000\u0270\u026e\u0001\u0000\u0000\u0000\u0270\u0271\u0001\u0000"+ - "\u0000\u0000\u0271\u0273\u0001\u0000\u0000\u0000\u0272\u0265\u0001\u0000"+ - "\u0000\u0000\u0272\u0266\u0001\u0000\u0000\u0000\u0272\u0273\u0001\u0000"+ - "\u0000\u0000\u0273\u0274\u0001\u0000\u0000\u0000\u0274\u0275\u0005a\u0000"+ - "\u0000\u0275}\u0001\u0000\u0000\u0000\u0276\u0277\u00038\u001c\u0000\u0277"+ - "\u007f\u0001\u0000\u0000\u0000\u0278\u0279\u0005Y\u0000\u0000\u0279\u027e"+ - "\u0003\u0082A\u0000\u027a\u027b\u0005=\u0000\u0000\u027b\u027d\u0003\u0082"+ - "A\u0000\u027c\u027a\u0001\u0000\u0000\u0000\u027d\u0280\u0001\u0000\u0000"+ - "\u0000\u027e\u027c\u0001\u0000\u0000\u0000\u027e\u027f\u0001\u0000\u0000"+ - "\u0000\u027f\u0281\u0001\u0000\u0000\u0000\u0280\u027e\u0001\u0000\u0000"+ - "\u0000\u0281\u0282\u0005Z\u0000\u0000\u0282\u0081\u0001\u0000\u0000\u0000"+ - "\u0283\u0284\u0003\u008eG\u0000\u0284\u0285\u0005<\u0000\u0000\u0285\u0286"+ - "\u0003\u0084B\u0000\u0286\u0083\u0001\u0000\u0000\u0000\u0287\u02b2\u0005"+ - "G\u0000\u0000\u0288\u0289\u0003\u008cF\u0000\u0289\u028a\u0005b\u0000"+ - "\u0000\u028a\u02b2\u0001\u0000\u0000\u0000\u028b\u02b2\u0003\u008aE\u0000"+ - "\u028c\u02b2\u0003\u008cF\u0000\u028d\u02b2\u0003\u0086C\u0000\u028e\u02b2"+ - "\u00034\u001a\u0000\u028f\u02b2\u0003\u008eG\u0000\u0290\u0291\u0005^"+ - "\u0000\u0000\u0291\u0296\u0003\u0088D\u0000\u0292\u0293\u0005=\u0000\u0000"+ - "\u0293\u0295\u0003\u0088D\u0000\u0294\u0292\u0001\u0000\u0000\u0000\u0295"+ - "\u0298\u0001\u0000\u0000\u0000\u0296\u0294\u0001\u0000\u0000\u0000\u0296"+ - "\u0297\u0001\u0000\u0000\u0000\u0297\u0299\u0001\u0000\u0000\u0000\u0298"+ - "\u0296\u0001\u0000\u0000\u0000\u0299\u029a\u0005_\u0000\u0000\u029a\u02b2"+ - "\u0001\u0000\u0000\u0000\u029b\u029c\u0005^\u0000\u0000\u029c\u02a1\u0003"+ - "\u0086C\u0000\u029d\u029e\u0005=\u0000\u0000\u029e\u02a0\u0003\u0086C"+ - "\u0000\u029f\u029d\u0001\u0000\u0000\u0000\u02a0\u02a3\u0001\u0000\u0000"+ - "\u0000\u02a1\u029f\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000"+ - "\u0000\u02a2\u02a4\u0001\u0000\u0000\u0000\u02a3\u02a1\u0001\u0000\u0000"+ - "\u0000\u02a4\u02a5\u0005_\u0000\u0000\u02a5\u02b2\u0001\u0000\u0000\u0000"+ - "\u02a6\u02a7\u0005^\u0000\u0000\u02a7\u02ac\u0003\u008eG\u0000\u02a8\u02a9"+ - "\u0005=\u0000\u0000\u02a9\u02ab\u0003\u008eG\u0000\u02aa\u02a8\u0001\u0000"+ - "\u0000\u0000\u02ab\u02ae\u0001\u0000\u0000\u0000\u02ac\u02aa\u0001\u0000"+ - "\u0000\u0000\u02ac\u02ad\u0001\u0000\u0000\u0000\u02ad\u02af\u0001\u0000"+ - "\u0000\u0000\u02ae\u02ac\u0001\u0000\u0000\u0000\u02af\u02b0\u0005_\u0000"+ - "\u0000\u02b0\u02b2\u0001\u0000\u0000\u0000\u02b1\u0287\u0001\u0000\u0000"+ - "\u0000\u02b1\u0288\u0001\u0000\u0000\u0000\u02b1\u028b\u0001\u0000\u0000"+ - "\u0000\u02b1\u028c\u0001\u0000\u0000\u0000\u02b1\u028d\u0001\u0000\u0000"+ - "\u0000\u02b1\u028e\u0001\u0000\u0000\u0000\u02b1\u028f\u0001\u0000\u0000"+ - "\u0000\u02b1\u0290\u0001\u0000\u0000\u0000\u02b1\u029b\u0001\u0000\u0000"+ - "\u0000\u02b1\u02a6\u0001\u0000\u0000\u0000\u02b2\u0085\u0001\u0000\u0000"+ - "\u0000\u02b3\u02b4\u0007\u0006\u0000\u0000\u02b4\u0087\u0001\u0000\u0000"+ - "\u0000\u02b5\u02b8\u0003\u008aE\u0000\u02b6\u02b8\u0003\u008cF\u0000\u02b7"+ - "\u02b5\u0001\u0000\u0000\u0000\u02b7\u02b6\u0001\u0000\u0000\u0000\u02b8"+ - "\u0089\u0001\u0000\u0000\u0000\u02b9\u02bb\u0007\u0004\u0000\u0000\u02ba"+ - "\u02b9\u0001\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb"+ - "\u02bc\u0001\u0000\u0000\u0000\u02bc\u02bd\u00056\u0000\u0000\u02bd\u008b"+ - "\u0001\u0000\u0000\u0000\u02be\u02c0\u0007\u0004\u0000\u0000\u02bf\u02be"+ - "\u0001\u0000\u0000\u0000\u02bf\u02c0\u0001\u0000\u0000\u0000\u02c0\u02c1"+ - "\u0001\u0000\u0000\u0000\u02c1\u02c2\u00055\u0000\u0000\u02c2\u008d\u0001"+ - "\u0000\u0000\u0000\u02c3\u02c4\u00054\u0000\u0000\u02c4\u008f\u0001\u0000"+ - "\u0000\u0000\u02c5\u02c6\u0007\u0007\u0000\u0000\u02c6\u0091\u0001\u0000"+ - "\u0000\u0000\u02c7\u02c8\u0007\b\u0000\u0000\u02c8\u02c9\u0005o\u0000"+ - "\u0000\u02c9\u02ca\u0003\u0094J\u0000\u02ca\u02cb\u0003\u0096K\u0000\u02cb"+ - "\u0093\u0001\u0000\u0000\u0000\u02cc\u02cd\u0003\u0018\f\u0000\u02cd\u0095"+ - "\u0001\u0000\u0000\u0000\u02ce\u02cf\u0005#\u0000\u0000\u02cf\u02d4\u0003"+ - "\u0098L\u0000\u02d0\u02d1\u0005=\u0000\u0000\u02d1\u02d3\u0003\u0098L"+ - "\u0000\u02d2\u02d0\u0001\u0000\u0000\u0000\u02d3\u02d6\u0001\u0000\u0000"+ - "\u0000\u02d4\u02d2\u0001\u0000\u0000\u0000\u02d4\u02d5\u0001\u0000\u0000"+ - "\u0000\u02d5\u0097\u0001\u0000\u0000\u0000\u02d6\u02d4\u0001\u0000\u0000"+ - "\u0000\u02d7\u02d8\u0003v;\u0000\u02d8\u0099\u0001\u0000\u0000\u0000B"+ - "\u00a5\u00ae\u00c9\u00d8\u00de\u00ed\u00f1\u00f6\u00fd\u00ff\u010d\u0115"+ - "\u0119\u0120\u0126\u012d\u0135\u013d\u0145\u0149\u014d\u0152\u015d\u0162"+ - "\u0166\u0174\u017f\u018d\u01a2\u01aa\u01ad\u01b2\u01bf\u01c5\u01cc\u01d7"+ - "\u01e5\u01f3\u01fe\u0207\u020f\u0214\u021c\u021e\u0223\u022a\u022f\u0234"+ - "\u023e\u0244\u024c\u024e\u0259\u0260\u026b\u0270\u0272\u027e\u0296\u02a1"+ - "\u02ac\u02b1\u02b7\u02ba\u02bf\u02d4"; + "6\u00016\u00016\u00016\u00036\u01f0\b6\u00017\u00017\u00018\u00018\u0001"+ + "8\u00018\u00018\u00018\u00018\u00038\u01fb\b8\u00018\u00018\u00018\u0001"+ + "8\u00018\u00058\u0202\b8\n8\f8\u0205\t8\u00018\u00018\u00018\u00018\u0001"+ + "8\u00038\u020c\b8\u00018\u00018\u00018\u00038\u0211\b8\u00018\u00018\u0001"+ + "8\u00018\u00018\u00018\u00058\u0219\b8\n8\f8\u021c\t8\u00019\u00019\u0003"+ + "9\u0220\b9\u00019\u00019\u00019\u00019\u00019\u00039\u0227\b9\u00019\u0001"+ + "9\u00019\u00039\u022c\b9\u0001:\u0001:\u0001:\u0003:\u0231\b:\u0001:\u0001"+ + ":\u0001:\u0001;\u0001;\u0001;\u0001;\u0001;\u0003;\u023b\b;\u0001<\u0001"+ + "<\u0001<\u0001<\u0003<\u0241\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001"+ + "<\u0005<\u0249\b<\n<\f<\u024c\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ + "=\u0001=\u0001=\u0003=\u0256\b=\u0001=\u0001=\u0001=\u0005=\u025b\b=\n"+ + "=\f=\u025e\t=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0266\b"+ + ">\n>\f>\u0269\t>\u0001>\u0001>\u0003>\u026d\b>\u0003>\u026f\b>\u0001>"+ + "\u0001>\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u0279\b@\n@\f"+ + "@\u027c\t@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001"+ + "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0005B\u0291\bB\nB\fB\u0294\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0005B\u029c\bB\nB\fB\u029f\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0005B\u02a7\bB\nB\fB\u02aa\tB\u0001B\u0001B\u0003B\u02ae\bB\u0001C"+ + "\u0001C\u0001D\u0001D\u0003D\u02b4\bD\u0001E\u0003E\u02b7\bE\u0001E\u0001"+ + "E\u0001F\u0003F\u02bc\bF\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001"+ + "I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+ + "K\u0005K\u02cf\bK\nK\fK\u02d2\tK\u0001L\u0001L\u0001L\u0000\u0005\u0002"+ + "jpxzM\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\u0098"+ + "\u0000\t\u0002\u000044hh\u0001\u0000bc\u0002\u000099>>\u0002\u0000AAD"+ + "D\u0001\u0000TU\u0001\u0000VX\u0002\u0000@@LL\u0002\u0000MMOS\u0002\u0000"+ + "\u0013\u0013\u0015\u0016\u02f4\u0000\u009a\u0001\u0000\u0000\u0000\u0002"+ + "\u009d\u0001\u0000\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006"+ + "\u00c9\u0001\u0000\u0000\u0000\b\u00cb\u0001\u0000\u0000\u0000\n\u00ce"+ + "\u0001\u0000\u0000\u0000\f\u00d0\u0001\u0000\u0000\u0000\u000e\u00d3\u0001"+ + "\u0000\u0000\u0000\u0010\u00de\u0001\u0000\u0000\u0000\u0012\u00e2\u0001"+ + "\u0000\u0000\u0000\u0014\u00e5\u0001\u0000\u0000\u0000\u0016\u00e8\u0001"+ + "\u0000\u0000\u0000\u0018\u00ff\u0001\u0000\u0000\u0000\u001a\u0101\u0001"+ + "\u0000\u0000\u0000\u001c\u0103\u0001\u0000\u0000\u0000\u001e\u0105\u0001"+ + "\u0000\u0000\u0000 \u0107\u0001\u0000\u0000\u0000\"\u0110\u0001\u0000"+ + "\u0000\u0000$\u0113\u0001\u0000\u0000\u0000&\u011b\u0001\u0000\u0000\u0000"+ + "(\u0123\u0001\u0000\u0000\u0000*\u0128\u0001\u0000\u0000\u0000,\u0130"+ + "\u0001\u0000\u0000\u0000.\u0138\u0001\u0000\u0000\u00000\u0140\u0001\u0000"+ + "\u0000\u00002\u0145\u0001\u0000\u0000\u00004\u0149\u0001\u0000\u0000\u0000"+ + "6\u014d\u0001\u0000\u0000\u00008\u0152\u0001\u0000\u0000\u0000:\u0154"+ + "\u0001\u0000\u0000\u0000<\u0157\u0001\u0000\u0000\u0000>\u0160\u0001\u0000"+ + "\u0000\u0000@\u0168\u0001\u0000\u0000\u0000B\u016b\u0001\u0000\u0000\u0000"+ + "D\u016e\u0001\u0000\u0000\u0000F\u0177\u0001\u0000\u0000\u0000H\u017b"+ + "\u0001\u0000\u0000\u0000J\u0181\u0001\u0000\u0000\u0000L\u0185\u0001\u0000"+ + "\u0000\u0000N\u0188\u0001\u0000\u0000\u0000P\u0190\u0001\u0000\u0000\u0000"+ + "R\u0194\u0001\u0000\u0000\u0000T\u0197\u0001\u0000\u0000\u0000V\u019b"+ + "\u0001\u0000\u0000\u0000X\u019e\u0001\u0000\u0000\u0000Z\u01b2\u0001\u0000"+ + "\u0000\u0000\\\u01b6\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000\u0000"+ + "\u0000`\u01c1\u0001\u0000\u0000\u0000b\u01ce\u0001\u0000\u0000\u0000d"+ + "\u01d1\u0001\u0000\u0000\u0000f\u01d5\u0001\u0000\u0000\u0000h\u01d9\u0001"+ + "\u0000\u0000\u0000j\u01dd\u0001\u0000\u0000\u0000l\u01ef\u0001\u0000\u0000"+ + "\u0000n\u01f1\u0001\u0000\u0000\u0000p\u0210\u0001\u0000\u0000\u0000r"+ + "\u022b\u0001\u0000\u0000\u0000t\u022d\u0001\u0000\u0000\u0000v\u023a\u0001"+ + "\u0000\u0000\u0000x\u0240\u0001\u0000\u0000\u0000z\u0255\u0001\u0000\u0000"+ + "\u0000|\u025f\u0001\u0000\u0000\u0000~\u0272\u0001\u0000\u0000\u0000\u0080"+ + "\u0274\u0001\u0000\u0000\u0000\u0082\u027f\u0001\u0000\u0000\u0000\u0084"+ + "\u02ad\u0001\u0000\u0000\u0000\u0086\u02af\u0001\u0000\u0000\u0000\u0088"+ + "\u02b3\u0001\u0000\u0000\u0000\u008a\u02b6\u0001\u0000\u0000\u0000\u008c"+ + "\u02bb\u0001\u0000\u0000\u0000\u008e\u02bf\u0001\u0000\u0000\u0000\u0090"+ + "\u02c1\u0001\u0000\u0000\u0000\u0092\u02c3\u0001\u0000\u0000\u0000\u0094"+ + "\u02c8\u0001\u0000\u0000\u0000\u0096\u02ca\u0001\u0000\u0000\u0000\u0098"+ + "\u02d3\u0001\u0000\u0000\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b"+ + "\u009c\u0005\u0000\u0000\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d"+ + "\u009e\u0006\u0001\uffff\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000"+ + "\u009f\u00a5\u0001\u0000\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1"+ + "\u00a2\u00053\u0000\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0"+ + "\u0001\u0000\u0000\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3"+ + "\u0001\u0000\u0000\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003"+ + "\u0001\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af"+ + "\u0003R)\u0000\u00a9\u00af\u0003\u0012\t\u0000\u00aa\u00af\u0003\f\u0006"+ + "\u0000\u00ab\u00af\u0003V+\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad"+ + "\u00af\u0003\u0014\n\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9"+ + "\u0001\u0000\u0000\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab"+ + "\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005"+ + "\u0001\u0000\u0000\u0000\u00b0\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003"+ + "\b\u0004\u0000\u00b2\u00ca\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000"+ + "\u00b4\u00ca\u0003$\u0012\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca"+ + "\u0003B!\u0000\u00b7\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9"+ + "\u00ca\u0003J%\u0000\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000"+ + "\u00bc\u00ca\u0003\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be"+ + "\u00ca\u0003^/\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003"+ + "\\.\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000"+ + "\u00c3\u00c4\u0004\u0003\u0005\u0000\u00c4\u00ca\u0003b1\u0000\u00c5\u00c6"+ + "\u0004\u0003\u0006\u0000\u00c6\u00ca\u0003d2\u0000\u00c7\u00c8\u0004\u0003"+ + "\u0007\u0000\u00c8\u00ca\u0003n7\u0000\u00c9\u00b0\u0001\u0000\u0000\u0000"+ + "\u00c9\u00b1\u0001\u0000\u0000\u0000\u00c9\u00b2\u0001\u0000\u0000\u0000"+ + "\u00c9\u00b3\u0001\u0000\u0000\u0000\u00c9\u00b4\u0001\u0000\u0000\u0000"+ + "\u00c9\u00b5\u0001\u0000\u0000\u0000\u00c9\u00b6\u0001\u0000\u0000\u0000"+ + "\u00c9\u00b7\u0001\u0000\u0000\u0000\u00c9\u00b8\u0001\u0000\u0000\u0000"+ + "\u00c9\u00b9\u0001\u0000\u0000\u0000\u00c9\u00ba\u0001\u0000\u0000\u0000"+ + "\u00c9\u00bb\u0001\u0000\u0000\u0000\u00c9\u00bc\u0001\u0000\u0000\u0000"+ + "\u00c9\u00bd\u0001\u0000\u0000\u0000\u00c9\u00bf\u0001\u0000\u0000\u0000"+ + "\u00c9\u00c1\u0001\u0000\u0000\u0000\u00c9\u00c3\u0001\u0000\u0000\u0000"+ + "\u00c9\u00c5\u0001\u0000\u0000\u0000\u00c9\u00c7\u0001\u0000\u0000\u0000"+ + "\u00ca\u0007\u0001\u0000\u0000\u0000\u00cb\u00cc\u0005\u000e\u0000\u0000"+ + "\u00cc\u00cd\u0003p8\u0000\u00cd\t\u0001\u0000\u0000\u0000\u00ce\u00cf"+ + "\u00030\u0018\u0000\u00cf\u000b\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005"+ + "\u000b\u0000\u0000\u00d1\u00d2\u0003\u000e\u0007\u0000\u00d2\r\u0001\u0000"+ + "\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\u000f\u0001\u0000\u0000\u0000"+ + "\u00da\u00d8\u0001\u0000\u0000\u0000\u00db\u00dc\u0003*\u0015\u0000\u00dc"+ + "\u00dd\u0005:\u0000\u0000\u00dd\u00df\u0001\u0000\u0000\u0000\u00de\u00db"+ + "\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0"+ + "\u0001\u0000\u0000\u0000\u00e0\u00e1\u0003p8\u0000\u00e1\u0011\u0001\u0000"+ + "\u0000\u0000\u00e2\u00e3\u0005\u0010\u0000\u0000\u00e3\u00e4\u0003\u0016"+ + "\u000b\u0000\u00e4\u0013\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005\u0011"+ + "\u0000\u0000\u00e6\u00e7\u0003\u0016\u000b\u0000\u00e7\u0015\u0001\u0000"+ + "\u0000\u0000\u00e8\u00ed\u0003\u0018\f\u0000\u00e9\u00ea\u0005=\u0000"+ + "\u0000\u00ea\u00ec\u0003\u0018\f\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000"+ + "\u00ec\u00ef\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000"+ + "\u00ed\u00ee\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000"+ + "\u00ef\u00ed\u0001\u0000\u0000\u0000\u00f0\u00f2\u0003 \u0010\u0000\u00f1"+ + "\u00f0\u0001\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2"+ + "\u0017\u0001\u0000\u0000\u0000\u00f3\u00f4\u0003\u001a\r\u0000\u00f4\u00f5"+ + "\u0005<\u0000\u0000\u00f5\u00f7\u0001\u0000\u0000\u0000\u00f6\u00f3\u0001"+ + "\u0000\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001"+ + "\u0000\u0000\u0000\u00f8\u0100\u0003\u001e\u000f\u0000\u00f9\u00fa\u0004"+ + "\f\b\u0000\u00fa\u00fd\u0003\u001e\u000f\u0000\u00fb\u00fc\u0005;\u0000"+ + "\u0000\u00fc\u00fe\u0003\u001c\u000e\u0000\u00fd\u00fb\u0001\u0000\u0000"+ + "\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0100\u0001\u0000\u0000"+ + "\u0000\u00ff\u00f6\u0001\u0000\u0000\u0000\u00ff\u00f9\u0001\u0000\u0000"+ + "\u0000\u0100\u0019\u0001\u0000\u0000\u0000\u0101\u0102\u0007\u0000\u0000"+ + "\u0000\u0102\u001b\u0001\u0000\u0000\u0000\u0103\u0104\u0007\u0000\u0000"+ + "\u0000\u0104\u001d\u0001\u0000\u0000\u0000\u0105\u0106\u0007\u0000\u0000"+ + "\u0000\u0106\u001f\u0001\u0000\u0000\u0000\u0107\u0108\u0005g\u0000\u0000"+ + "\u0108\u010d\u0005h\u0000\u0000\u0109\u010a\u0005=\u0000\u0000\u010a\u010c"+ + "\u0005h\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c\u010f\u0001"+ + "\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010d\u010e\u0001"+ + "\u0000\u0000\u0000\u010e!\u0001\u0000\u0000\u0000\u010f\u010d\u0001\u0000"+ + "\u0000\u0000\u0110\u0111\u0005\b\u0000\u0000\u0111\u0112\u0003\u000e\u0007"+ + "\u0000\u0112#\u0001\u0000\u0000\u0000\u0113\u0115\u0005\r\u0000\u0000"+ + "\u0114\u0116\u0003&\u0013\u0000\u0115\u0114\u0001\u0000\u0000\u0000\u0115"+ + "\u0116\u0001\u0000\u0000\u0000\u0116\u0119\u0001\u0000\u0000\u0000\u0117"+ + "\u0118\u00057\u0000\u0000\u0118\u011a\u0003\u000e\u0007\u0000\u0119\u0117"+ + "\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a%\u0001"+ + "\u0000\u0000\u0000\u011b\u0120\u0003(\u0014\u0000\u011c\u011d\u0005=\u0000"+ + "\u0000\u011d\u011f\u0003(\u0014\u0000\u011e\u011c\u0001\u0000\u0000\u0000"+ + "\u011f\u0122\u0001\u0000\u0000\u0000\u0120\u011e\u0001\u0000\u0000\u0000"+ + "\u0120\u0121\u0001\u0000\u0000\u0000\u0121\'\u0001\u0000\u0000\u0000\u0122"+ + "\u0120\u0001\u0000\u0000\u0000\u0123\u0126\u0003\u0010\b\u0000\u0124\u0125"+ + "\u0005\u000e\u0000\u0000\u0125\u0127\u0003p8\u0000\u0126\u0124\u0001\u0000"+ + "\u0000\u0000\u0126\u0127\u0001\u0000\u0000\u0000\u0127)\u0001\u0000\u0000"+ + "\u0000\u0128\u012d\u00038\u001c\u0000\u0129\u012a\u0005?\u0000\u0000\u012a"+ + "\u012c\u00038\u001c\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u012f"+ + "\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012e"+ + "\u0001\u0000\u0000\u0000\u012e+\u0001\u0000\u0000\u0000\u012f\u012d\u0001"+ + "\u0000\u0000\u0000\u0130\u0135\u00032\u0019\u0000\u0131\u0132\u0005?\u0000"+ + "\u0000\u0132\u0134\u00032\u0019\u0000\u0133\u0131\u0001\u0000\u0000\u0000"+ + "\u0134\u0137\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000"+ + "\u0135\u0136\u0001\u0000\u0000\u0000\u0136-\u0001\u0000\u0000\u0000\u0137"+ + "\u0135\u0001\u0000\u0000\u0000\u0138\u013d\u0003,\u0016\u0000\u0139\u013a"+ + "\u0005=\u0000\u0000\u013a\u013c\u0003,\u0016\u0000\u013b\u0139\u0001\u0000"+ + "\u0000\u0000\u013c\u013f\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000"+ + "\u0000\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e/\u0001\u0000\u0000"+ + "\u0000\u013f\u013d\u0001\u0000\u0000\u0000\u0140\u0141\u0007\u0001\u0000"+ + "\u0000\u01411\u0001\u0000\u0000\u0000\u0142\u0146\u0005}\u0000\u0000\u0143"+ + "\u0146\u00034\u001a\u0000\u0144\u0146\u00036\u001b\u0000\u0145\u0142\u0001"+ + "\u0000\u0000\u0000\u0145\u0143\u0001\u0000\u0000\u0000\u0145\u0144\u0001"+ + "\u0000\u0000\u0000\u01463\u0001\u0000\u0000\u0000\u0147\u014a\u0005J\u0000"+ + "\u0000\u0148\u014a\u0005\\\u0000\u0000\u0149\u0147\u0001\u0000\u0000\u0000"+ + "\u0149\u0148\u0001\u0000\u0000\u0000\u014a5\u0001\u0000\u0000\u0000\u014b"+ + "\u014e\u0005[\u0000\u0000\u014c\u014e\u0005]\u0000\u0000\u014d\u014b\u0001"+ + "\u0000\u0000\u0000\u014d\u014c\u0001\u0000\u0000\u0000\u014e7\u0001\u0000"+ + "\u0000\u0000\u014f\u0153\u00030\u0018\u0000\u0150\u0153\u00034\u001a\u0000"+ + "\u0151\u0153\u00036\u001b\u0000\u0152\u014f\u0001\u0000\u0000\u0000\u0152"+ + "\u0150\u0001\u0000\u0000\u0000\u0152\u0151\u0001\u0000\u0000\u0000\u0153"+ + "9\u0001\u0000\u0000\u0000\u0154\u0155\u0005\n\u0000\u0000\u0155\u0156"+ + "\u00055\u0000\u0000\u0156;\u0001\u0000\u0000\u0000\u0157\u0158\u0005\f"+ + "\u0000\u0000\u0158\u015d\u0003>\u001f\u0000\u0159\u015a\u0005=\u0000\u0000"+ + "\u015a\u015c\u0003>\u001f\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=\u0001\u0000\u0000\u0000\u015f\u015d"+ + "\u0001\u0000\u0000\u0000\u0160\u0162\u0003p8\u0000\u0161\u0163\u0007\u0002"+ + "\u0000\u0000\u0162\u0161\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000"+ + "\u0000\u0000\u0163\u0166\u0001\u0000\u0000\u0000\u0164\u0165\u0005H\u0000"+ + "\u0000\u0165\u0167\u0007\u0003\u0000\u0000\u0166\u0164\u0001\u0000\u0000"+ + "\u0000\u0166\u0167\u0001\u0000\u0000\u0000\u0167?\u0001\u0000\u0000\u0000"+ + "\u0168\u0169\u0005\u001a\u0000\u0000\u0169\u016a\u0003.\u0017\u0000\u016a"+ + "A\u0001\u0000\u0000\u0000\u016b\u016c\u0005\u0019\u0000\u0000\u016c\u016d"+ + "\u0003.\u0017\u0000\u016dC\u0001\u0000\u0000\u0000\u016e\u016f\u0005\u001d"+ + "\u0000\u0000\u016f\u0174\u0003F#\u0000\u0170\u0171\u0005=\u0000\u0000"+ + "\u0171\u0173\u0003F#\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0176"+ + "\u0001\u0000\u0000\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0174\u0175"+ + "\u0001\u0000\u0000\u0000\u0175E\u0001\u0000\u0000\u0000\u0176\u0174\u0001"+ + "\u0000\u0000\u0000\u0177\u0178\u0003,\u0016\u0000\u0178\u0179\u0005\u0081"+ + "\u0000\u0000\u0179\u017a\u0003,\u0016\u0000\u017aG\u0001\u0000\u0000\u0000"+ + "\u017b\u017c\u0005\u0007\u0000\u0000\u017c\u017d\u0003z=\u0000\u017d\u017f"+ + "\u0003\u008eG\u0000\u017e\u0180\u0003N\'\u0000\u017f\u017e\u0001\u0000"+ + "\u0000\u0000\u017f\u0180\u0001\u0000\u0000\u0000\u0180I\u0001\u0000\u0000"+ + "\u0000\u0181\u0182\u0005\t\u0000\u0000\u0182\u0183\u0003z=\u0000\u0183"+ + "\u0184\u0003\u008eG\u0000\u0184K\u0001\u0000\u0000\u0000\u0185\u0186\u0005"+ + "\u0018\u0000\u0000\u0186\u0187\u0003*\u0015\u0000\u0187M\u0001\u0000\u0000"+ + "\u0000\u0188\u018d\u0003P(\u0000\u0189\u018a\u0005=\u0000\u0000\u018a"+ + "\u018c\u0003P(\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\u018eO\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000"+ + "\u0000\u0000\u0190\u0191\u00030\u0018\u0000\u0191\u0192\u0005:\u0000\u0000"+ + "\u0192\u0193\u0003\u0084B\u0000\u0193Q\u0001\u0000\u0000\u0000\u0194\u0195"+ + "\u0005\u0006\u0000\u0000\u0195\u0196\u0003T*\u0000\u0196S\u0001\u0000"+ + "\u0000\u0000\u0197\u0198\u0005^\u0000\u0000\u0198\u0199\u0003\u0002\u0001"+ + "\u0000\u0199\u019a\u0005_\u0000\u0000\u019aU\u0001\u0000\u0000\u0000\u019b"+ + "\u019c\u0005\u001e\u0000\u0000\u019c\u019d\u0005\u0085\u0000\u0000\u019d"+ + "W\u0001\u0000\u0000\u0000\u019e\u019f\u0005\u0005\u0000\u0000\u019f\u01a2"+ + "\u0005%\u0000\u0000\u01a0\u01a1\u0005#\u0000\u0000\u01a1\u01a3\u0003,"+ + "\u0016\u0000\u01a2\u01a0\u0001\u0000\u0000\u0000\u01a2\u01a3\u0001\u0000"+ + "\u0000\u0000\u01a3\u01ad\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005$\u0000"+ + "\u0000\u01a5\u01aa\u0003Z-\u0000\u01a6\u01a7\u0005=\u0000\u0000\u01a7"+ + "\u01a9\u0003Z-\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac\u0001"+ + "\u0000\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab\u0001"+ + "\u0000\u0000\u0000\u01ab\u01ae\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001"+ + "\u0000\u0000\u0000\u01ad\u01a4\u0001\u0000\u0000\u0000\u01ad\u01ae\u0001"+ + "\u0000\u0000\u0000\u01aeY\u0001\u0000\u0000\u0000\u01af\u01b0\u0003,\u0016"+ + "\u0000\u01b0\u01b1\u0005:\u0000\u0000\u01b1\u01b3\u0001\u0000\u0000\u0000"+ + "\u01b2\u01af\u0001\u0000\u0000\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000"+ + "\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b5\u0003,\u0016\u0000\u01b5"+ + "[\u0001\u0000\u0000\u0000\u01b6\u01b7\u0005\u0017\u0000\u0000\u01b7\u01b8"+ + "\u0003\u0018\f\u0000\u01b8\u01b9\u0005#\u0000\u0000\u01b9\u01ba\u0003"+ + ".\u0017\u0000\u01ba]\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005\u000f\u0000"+ + "\u0000\u01bc\u01bf\u0003&\u0013\u0000\u01bd\u01be\u00057\u0000\u0000\u01be"+ + "\u01c0\u0003\u000e\u0007\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf"+ + "\u01c0\u0001\u0000\u0000\u0000\u01c0_\u0001\u0000\u0000\u0000\u01c1\u01c2"+ + "\u0005\u0004\u0000\u0000\u01c2\u01c5\u0003*\u0015\u0000\u01c3\u01c4\u0005"+ + "#\u0000\u0000\u01c4\u01c6\u0003*\u0015\u0000\u01c5\u01c3\u0001\u0000\u0000"+ + "\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6\u01cc\u0001\u0000\u0000"+ + "\u0000\u01c7\u01c8\u0005\u0081\u0000\u0000\u01c8\u01c9\u0003*\u0015\u0000"+ + "\u01c9\u01ca\u0005=\u0000\u0000\u01ca\u01cb\u0003*\u0015\u0000\u01cb\u01cd"+ + "\u0001\u0000\u0000\u0000\u01cc\u01c7\u0001\u0000\u0000\u0000\u01cc\u01cd"+ + "\u0001\u0000\u0000\u0000\u01cda\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005"+ + "\u001b\u0000\u0000\u01cf\u01d0\u0003.\u0017\u0000\u01d0c\u0001\u0000\u0000"+ + "\u0000\u01d1\u01d2\u0005\u0012\u0000\u0000\u01d2\u01d3\u0003f3\u0000\u01d3"+ + "e\u0001\u0000\u0000\u0000\u01d4\u01d6\u0003h4\u0000\u01d5\u01d4\u0001"+ + "\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7\u01d5\u0001"+ + "\u0000\u0000\u0000\u01d7\u01d8\u0001\u0000\u0000\u0000\u01d8g\u0001\u0000"+ + "\u0000\u0000\u01d9\u01da\u0005`\u0000\u0000\u01da\u01db\u0003j5\u0000"+ + "\u01db\u01dc\u0005a\u0000\u0000\u01dci\u0001\u0000\u0000\u0000\u01dd\u01de"+ + "\u00065\uffff\uffff\u0000\u01de\u01df\u0003l6\u0000\u01df\u01e5\u0001"+ + "\u0000\u0000\u0000\u01e0\u01e1\n\u0001\u0000\u0000\u01e1\u01e2\u00053"+ + "\u0000\u0000\u01e2\u01e4\u0003l6\u0000\u01e3\u01e0\u0001\u0000\u0000\u0000"+ + "\u01e4\u01e7\u0001\u0000\u0000\u0000\u01e5\u01e3\u0001\u0000\u0000\u0000"+ + "\u01e5\u01e6\u0001\u0000\u0000\u0000\u01e6k\u0001\u0000\u0000\u0000\u01e7"+ + "\u01e5\u0001\u0000\u0000\u0000\u01e8\u01f0\u0003\"\u0011\u0000\u01e9\u01f0"+ + "\u0003\b\u0004\u0000\u01ea\u01f0\u0003@ \u0000\u01eb\u01f0\u0003:\u001d"+ + "\u0000\u01ec\u01f0\u0003$\u0012\u0000\u01ed\u01f0\u0003<\u001e\u0000\u01ee"+ + "\u01f0\u0003H$\u0000\u01ef\u01e8\u0001\u0000\u0000\u0000\u01ef\u01e9\u0001"+ + "\u0000\u0000\u0000\u01ef\u01ea\u0001\u0000\u0000\u0000\u01ef\u01eb\u0001"+ + "\u0000\u0000\u0000\u01ef\u01ec\u0001\u0000\u0000\u0000\u01ef\u01ed\u0001"+ + "\u0000\u0000\u0000\u01ef\u01ee\u0001\u0000\u0000\u0000\u01f0m\u0001\u0000"+ + "\u0000\u0000\u01f1\u01f2\u0005\u001c\u0000\u0000\u01f2o\u0001\u0000\u0000"+ + "\u0000\u01f3\u01f4\u00068\uffff\uffff\u0000\u01f4\u01f5\u0005F\u0000\u0000"+ + "\u01f5\u0211\u0003p8\b\u01f6\u0211\u0003v;\u0000\u01f7\u0211\u0003r9\u0000"+ + "\u01f8\u01fa\u0003v;\u0000\u01f9\u01fb\u0005F\u0000\u0000\u01fa\u01f9"+ + "\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000\u01fb\u01fc"+ + "\u0001\u0000\u0000\u0000\u01fc\u01fd\u0005B\u0000\u0000\u01fd\u01fe\u0005"+ + "`\u0000\u0000\u01fe\u0203\u0003v;\u0000\u01ff\u0200\u0005=\u0000\u0000"+ + "\u0200\u0202\u0003v;\u0000\u0201\u01ff\u0001\u0000\u0000\u0000\u0202\u0205"+ + "\u0001\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0203\u0204"+ + "\u0001\u0000\u0000\u0000\u0204\u0206\u0001\u0000\u0000\u0000\u0205\u0203"+ + "\u0001\u0000\u0000\u0000\u0206\u0207\u0005a\u0000\u0000\u0207\u0211\u0001"+ + "\u0000\u0000\u0000\u0208\u0209\u0003v;\u0000\u0209\u020b\u0005C\u0000"+ + "\u0000\u020a\u020c\u0005F\u0000\u0000\u020b\u020a\u0001\u0000\u0000\u0000"+ + "\u020b\u020c\u0001\u0000\u0000\u0000\u020c\u020d\u0001\u0000\u0000\u0000"+ + "\u020d\u020e\u0005G\u0000\u0000\u020e\u0211\u0001\u0000\u0000\u0000\u020f"+ + "\u0211\u0003t:\u0000\u0210\u01f3\u0001\u0000\u0000\u0000\u0210\u01f6\u0001"+ + "\u0000\u0000\u0000\u0210\u01f7\u0001\u0000\u0000\u0000\u0210\u01f8\u0001"+ + "\u0000\u0000\u0000\u0210\u0208\u0001\u0000\u0000\u0000\u0210\u020f\u0001"+ + "\u0000\u0000\u0000\u0211\u021a\u0001\u0000\u0000\u0000\u0212\u0213\n\u0005"+ + "\u0000\u0000\u0213\u0214\u00058\u0000\u0000\u0214\u0219\u0003p8\u0006"+ + "\u0215\u0216\n\u0004\u0000\u0000\u0216\u0217\u0005I\u0000\u0000\u0217"+ + "\u0219\u0003p8\u0005\u0218\u0212\u0001\u0000\u0000\u0000\u0218\u0215\u0001"+ + "\u0000\u0000\u0000\u0219\u021c\u0001\u0000\u0000\u0000\u021a\u0218\u0001"+ + "\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021bq\u0001\u0000"+ + "\u0000\u0000\u021c\u021a\u0001\u0000\u0000\u0000\u021d\u021f\u0003v;\u0000"+ + "\u021e\u0220\u0005F\u0000\u0000\u021f\u021e\u0001\u0000\u0000\u0000\u021f"+ + "\u0220\u0001\u0000\u0000\u0000\u0220\u0221\u0001\u0000\u0000\u0000\u0221"+ + "\u0222\u0005E\u0000\u0000\u0222\u0223\u0003\u008eG\u0000\u0223\u022c\u0001"+ + "\u0000\u0000\u0000\u0224\u0226\u0003v;\u0000\u0225\u0227\u0005F\u0000"+ + "\u0000\u0226\u0225\u0001\u0000\u0000\u0000\u0226\u0227\u0001\u0000\u0000"+ + "\u0000\u0227\u0228\u0001\u0000\u0000\u0000\u0228\u0229\u0005K\u0000\u0000"+ + "\u0229\u022a\u0003\u008eG\u0000\u022a\u022c\u0001\u0000\u0000\u0000\u022b"+ + "\u021d\u0001\u0000\u0000\u0000\u022b\u0224\u0001\u0000\u0000\u0000\u022c"+ + "s\u0001\u0000\u0000\u0000\u022d\u0230\u0003*\u0015\u0000\u022e\u022f\u0005"+ + ";\u0000\u0000\u022f\u0231\u0003\n\u0005\u0000\u0230\u022e\u0001\u0000"+ + "\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231\u0232\u0001\u0000"+ + "\u0000\u0000\u0232\u0233\u0005<\u0000\u0000\u0233\u0234\u0003\u0084B\u0000"+ + "\u0234u\u0001\u0000\u0000\u0000\u0235\u023b\u0003x<\u0000\u0236\u0237"+ + "\u0003x<\u0000\u0237\u0238\u0003\u0090H\u0000\u0238\u0239\u0003x<\u0000"+ + "\u0239\u023b\u0001\u0000\u0000\u0000\u023a\u0235\u0001\u0000\u0000\u0000"+ + "\u023a\u0236\u0001\u0000\u0000\u0000\u023bw\u0001\u0000\u0000\u0000\u023c"+ + "\u023d\u0006<\uffff\uffff\u0000\u023d\u0241\u0003z=\u0000\u023e\u023f"+ + "\u0007\u0004\u0000\u0000\u023f\u0241\u0003x<\u0003\u0240\u023c\u0001\u0000"+ + "\u0000\u0000\u0240\u023e\u0001\u0000\u0000\u0000\u0241\u024a\u0001\u0000"+ + "\u0000\u0000\u0242\u0243\n\u0002\u0000\u0000\u0243\u0244\u0007\u0005\u0000"+ + "\u0000\u0244\u0249\u0003x<\u0003\u0245\u0246\n\u0001\u0000\u0000\u0246"+ + "\u0247\u0007\u0004\u0000\u0000\u0247\u0249\u0003x<\u0002\u0248\u0242\u0001"+ + "\u0000\u0000\u0000\u0248\u0245\u0001\u0000\u0000\u0000\u0249\u024c\u0001"+ + "\u0000\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024a\u024b\u0001"+ + "\u0000\u0000\u0000\u024by\u0001\u0000\u0000\u0000\u024c\u024a\u0001\u0000"+ + "\u0000\u0000\u024d\u024e\u0006=\uffff\uffff\u0000\u024e\u0256\u0003\u0084"+ + "B\u0000\u024f\u0256\u0003*\u0015\u0000\u0250\u0256\u0003|>\u0000\u0251"+ + "\u0252\u0005`\u0000\u0000\u0252\u0253\u0003p8\u0000\u0253\u0254\u0005"+ + "a\u0000\u0000\u0254\u0256\u0001\u0000\u0000\u0000\u0255\u024d\u0001\u0000"+ + "\u0000\u0000\u0255\u024f\u0001\u0000\u0000\u0000\u0255\u0250\u0001\u0000"+ + "\u0000\u0000\u0255\u0251\u0001\u0000\u0000\u0000\u0256\u025c\u0001\u0000"+ + "\u0000\u0000\u0257\u0258\n\u0001\u0000\u0000\u0258\u0259\u0005;\u0000"+ + "\u0000\u0259\u025b\u0003\n\u0005\u0000\u025a\u0257\u0001\u0000\u0000\u0000"+ + "\u025b\u025e\u0001\u0000\u0000\u0000\u025c\u025a\u0001\u0000\u0000\u0000"+ + "\u025c\u025d\u0001\u0000\u0000\u0000\u025d{\u0001\u0000\u0000\u0000\u025e"+ + "\u025c\u0001\u0000\u0000\u0000\u025f\u0260\u0003~?\u0000\u0260\u026e\u0005"+ + "`\u0000\u0000\u0261\u026f\u0005V\u0000\u0000\u0262\u0267\u0003p8\u0000"+ + "\u0263\u0264\u0005=\u0000\u0000\u0264\u0266\u0003p8\u0000\u0265\u0263"+ + "\u0001\u0000\u0000\u0000\u0266\u0269\u0001\u0000\u0000\u0000\u0267\u0265"+ + "\u0001\u0000\u0000\u0000\u0267\u0268\u0001\u0000\u0000\u0000\u0268\u026c"+ + "\u0001\u0000\u0000\u0000\u0269\u0267\u0001\u0000\u0000\u0000\u026a\u026b"+ + "\u0005=\u0000\u0000\u026b\u026d\u0003\u0080@\u0000\u026c\u026a\u0001\u0000"+ + "\u0000\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u026f\u0001\u0000"+ + "\u0000\u0000\u026e\u0261\u0001\u0000\u0000\u0000\u026e\u0262\u0001\u0000"+ + "\u0000\u0000\u026e\u026f\u0001\u0000\u0000\u0000\u026f\u0270\u0001\u0000"+ + "\u0000\u0000\u0270\u0271\u0005a\u0000\u0000\u0271}\u0001\u0000\u0000\u0000"+ + "\u0272\u0273\u00038\u001c\u0000\u0273\u007f\u0001\u0000\u0000\u0000\u0274"+ + "\u0275\u0005Y\u0000\u0000\u0275\u027a\u0003\u0082A\u0000\u0276\u0277\u0005"+ + "=\u0000\u0000\u0277\u0279\u0003\u0082A\u0000\u0278\u0276\u0001\u0000\u0000"+ + "\u0000\u0279\u027c\u0001\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000"+ + "\u0000\u027a\u027b\u0001\u0000\u0000\u0000\u027b\u027d\u0001\u0000\u0000"+ + "\u0000\u027c\u027a\u0001\u0000\u0000\u0000\u027d\u027e\u0005Z\u0000\u0000"+ + "\u027e\u0081\u0001\u0000\u0000\u0000\u027f\u0280\u0003\u008eG\u0000\u0280"+ + "\u0281\u0005<\u0000\u0000\u0281\u0282\u0003\u0084B\u0000\u0282\u0083\u0001"+ + "\u0000\u0000\u0000\u0283\u02ae\u0005G\u0000\u0000\u0284\u0285\u0003\u008c"+ + "F\u0000\u0285\u0286\u0005b\u0000\u0000\u0286\u02ae\u0001\u0000\u0000\u0000"+ + "\u0287\u02ae\u0003\u008aE\u0000\u0288\u02ae\u0003\u008cF\u0000\u0289\u02ae"+ + "\u0003\u0086C\u0000\u028a\u02ae\u00034\u001a\u0000\u028b\u02ae\u0003\u008e"+ + "G\u0000\u028c\u028d\u0005^\u0000\u0000\u028d\u0292\u0003\u0088D\u0000"+ + "\u028e\u028f\u0005=\u0000\u0000\u028f\u0291\u0003\u0088D\u0000\u0290\u028e"+ + "\u0001\u0000\u0000\u0000\u0291\u0294\u0001\u0000\u0000\u0000\u0292\u0290"+ + "\u0001\u0000\u0000\u0000\u0292\u0293\u0001\u0000\u0000\u0000\u0293\u0295"+ + "\u0001\u0000\u0000\u0000\u0294\u0292\u0001\u0000\u0000\u0000\u0295\u0296"+ + "\u0005_\u0000\u0000\u0296\u02ae\u0001\u0000\u0000\u0000\u0297\u0298\u0005"+ + "^\u0000\u0000\u0298\u029d\u0003\u0086C\u0000\u0299\u029a\u0005=\u0000"+ + "\u0000\u029a\u029c\u0003\u0086C\u0000\u029b\u0299\u0001\u0000\u0000\u0000"+ + "\u029c\u029f\u0001\u0000\u0000\u0000\u029d\u029b\u0001\u0000\u0000\u0000"+ + "\u029d\u029e\u0001\u0000\u0000\u0000\u029e\u02a0\u0001\u0000\u0000\u0000"+ + "\u029f\u029d\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005_\u0000\u0000\u02a1"+ + "\u02ae\u0001\u0000\u0000\u0000\u02a2\u02a3\u0005^\u0000\u0000\u02a3\u02a8"+ + "\u0003\u008eG\u0000\u02a4\u02a5\u0005=\u0000\u0000\u02a5\u02a7\u0003\u008e"+ + "G\u0000\u02a6\u02a4\u0001\u0000\u0000\u0000\u02a7\u02aa\u0001\u0000\u0000"+ + "\u0000\u02a8\u02a6\u0001\u0000\u0000\u0000\u02a8\u02a9\u0001\u0000\u0000"+ + "\u0000\u02a9\u02ab\u0001\u0000\u0000\u0000\u02aa\u02a8\u0001\u0000\u0000"+ + "\u0000\u02ab\u02ac\u0005_\u0000\u0000\u02ac\u02ae\u0001\u0000\u0000\u0000"+ + "\u02ad\u0283\u0001\u0000\u0000\u0000\u02ad\u0284\u0001\u0000\u0000\u0000"+ + "\u02ad\u0287\u0001\u0000\u0000\u0000\u02ad\u0288\u0001\u0000\u0000\u0000"+ + "\u02ad\u0289\u0001\u0000\u0000\u0000\u02ad\u028a\u0001\u0000\u0000\u0000"+ + "\u02ad\u028b\u0001\u0000\u0000\u0000\u02ad\u028c\u0001\u0000\u0000\u0000"+ + "\u02ad\u0297\u0001\u0000\u0000\u0000\u02ad\u02a2\u0001\u0000\u0000\u0000"+ + "\u02ae\u0085\u0001\u0000\u0000\u0000\u02af\u02b0\u0007\u0006\u0000\u0000"+ + "\u02b0\u0087\u0001\u0000\u0000\u0000\u02b1\u02b4\u0003\u008aE\u0000\u02b2"+ + "\u02b4\u0003\u008cF\u0000\u02b3\u02b1\u0001\u0000\u0000\u0000\u02b3\u02b2"+ + "\u0001\u0000\u0000\u0000\u02b4\u0089\u0001\u0000\u0000\u0000\u02b5\u02b7"+ + "\u0007\u0004\u0000\u0000\u02b6\u02b5\u0001\u0000\u0000\u0000\u02b6\u02b7"+ + "\u0001\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02b9"+ + "\u00056\u0000\u0000\u02b9\u008b\u0001\u0000\u0000\u0000\u02ba\u02bc\u0007"+ + "\u0004\u0000\u0000\u02bb\u02ba\u0001\u0000\u0000\u0000\u02bb\u02bc\u0001"+ + "\u0000\u0000\u0000\u02bc\u02bd\u0001\u0000\u0000\u0000\u02bd\u02be\u0005"+ + "5\u0000\u0000\u02be\u008d\u0001\u0000\u0000\u0000\u02bf\u02c0\u00054\u0000"+ + "\u0000\u02c0\u008f\u0001\u0000\u0000\u0000\u02c1\u02c2\u0007\u0007\u0000"+ + "\u0000\u02c2\u0091\u0001\u0000\u0000\u0000\u02c3\u02c4\u0007\b\u0000\u0000"+ + "\u02c4\u02c5\u0005o\u0000\u0000\u02c5\u02c6\u0003\u0094J\u0000\u02c6\u02c7"+ + "\u0003\u0096K\u0000\u02c7\u0093\u0001\u0000\u0000\u0000\u02c8\u02c9\u0003"+ + "\u0018\f\u0000\u02c9\u0095\u0001\u0000\u0000\u0000\u02ca\u02cb\u0005#"+ + "\u0000\u0000\u02cb\u02d0\u0003\u0098L\u0000\u02cc\u02cd\u0005=\u0000\u0000"+ + "\u02cd\u02cf\u0003\u0098L\u0000\u02ce\u02cc\u0001\u0000\u0000\u0000\u02cf"+ + "\u02d2\u0001\u0000\u0000\u0000\u02d0\u02ce\u0001\u0000\u0000\u0000\u02d0"+ + "\u02d1\u0001\u0000\u0000\u0000\u02d1\u0097\u0001\u0000\u0000\u0000\u02d2"+ + "\u02d0\u0001\u0000\u0000\u0000\u02d3\u02d4\u0003v;\u0000\u02d4\u0099\u0001"+ + "\u0000\u0000\u0000B\u00a5\u00ae\u00c9\u00d8\u00de\u00ed\u00f1\u00f6\u00fd"+ + "\u00ff\u010d\u0115\u0119\u0120\u0126\u012d\u0135\u013d\u0145\u0149\u014d"+ + "\u0152\u015d\u0162\u0166\u0174\u017f\u018d\u01a2\u01aa\u01ad\u01b2\u01bf"+ + "\u01c5\u01cc\u01d7\u01e5\u01ef\u01fa\u0203\u020b\u0210\u0218\u021a\u021f"+ + "\u0226\u022b\u0230\u023a\u0240\u0248\u024a\u0255\u025c\u0267\u026c\u026e"+ + "\u027a\u0292\u029d\u02a8\u02ad\u02b3\u02b6\u02bb\u02d0"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 42cc06002cc06..13fc076761cd1 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3094,12 +3094,12 @@ public void testForkBranchesWithDifferentSchemas() { // fork branch 1 limit = as(subPlans.get(0), Limit.class); - - List keptColumns = limit.output().stream().map(exp -> as(exp, Attribute.class).name()).collect(Collectors.toList()); + assertThat(as(limit.limit(), Literal.class).value(), equalTo(MAX_LIMIT)); + Keep keep = as(limit.child(), Keep.class); + List keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).collect(Collectors.toList()); assertThat(keptColumns, equalTo(expectedOutput)); - assertThat(as(limit.limit(), Literal.class).value(), equalTo(MAX_LIMIT)); - Eval eval = as(limit.child(), Eval.class); + Eval eval = as(keep.child(), Eval.class); assertEquals(eval.fields().size(), 3); Set evalFieldNames = eval.fields().stream().map(a -> a.name()).collect(Collectors.toSet()); @@ -3126,7 +3126,7 @@ public void testForkBranchesWithDifferentSchemas() { // fork branch 2 limit = as(subPlans.get(1), Limit.class); assertThat(as(limit.limit(), Literal.class).value(), equalTo(DEFAULT_LIMIT)); - Keep keep = as(limit.child(), Keep.class); + keep = as(limit.child(), Keep.class); keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).collect(Collectors.toList()); assertThat(keptColumns, equalTo(expectedOutput)); eval = as(keep.child(), Eval.class); @@ -3244,6 +3244,33 @@ public void testForkError() { ( WHERE emp_no > 2 | SORT emp_no | LIMIT 10 | EVAL x = abc + 2 ) """)); assertThat(e.getMessage(), containsString("Unknown column [abc]")); + + e = expectThrows(VerificationException.class, () -> analyze(""" + FROM test + | FORK ( STATS a = CONCAT(first_name, last_name) BY emp_no ) + ( WHERE emp_no > 2 | SORT emp_no | LIMIT 10 ) + """)); + assertThat( + e.getMessage(), + containsString("column [first_name] must appear in the STATS BY clause or be used in an aggregate function") + ); + + e = expectThrows(VerificationException.class, () -> analyze(""" + FROM test + | FORK ( DISSECT emp_no "%{abc} %{def}" ) + ( WHERE emp_no > 2 | SORT emp_no | LIMIT 10 ) + """)); + assertThat( + e.getMessage(), + containsString("Dissect only supports KEYWORD or TEXT values, found expression [emp_no] type [INTEGER]") + ); + + e = expectThrows(VerificationException.class, () -> analyze(""" + FROM test + | FORK ( EVAL c = COUNT(first_name) ) + ( WHERE emp_no > 2 | SORT emp_no | LIMIT 10 ) + """)); + assertThat(e.getMessage(), containsString("aggregate function [COUNT(first_name)] not allowed outside STATS command")); } public void testValidRrf() { From 8ce51f4648b49e6759dd3b166515c688afef2614 Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Fri, 4 Apr 2025 16:28:22 +0200 Subject: [PATCH 5/8] Fix field resolution --- .../org/elasticsearch/xpack/esql/session/EsqlSession.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java index def4e23af381f..e2180ae087dc5 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java @@ -58,6 +58,7 @@ import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; import org.elasticsearch.xpack.esql.plan.logical.Enrich; +import org.elasticsearch.xpack.esql.plan.logical.Fork; import org.elasticsearch.xpack.esql.plan.logical.Keep; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.Project; @@ -586,6 +587,10 @@ static PreAnalysisResult fieldNames(LogicalPlan parsed, Set enrichPolicy return result.withFieldNames(IndexResolver.ALL_FIELDS); } + if (parsed.anyMatch(plan -> plan instanceof Fork)) { + return result.withFieldNames(IndexResolver.ALL_FIELDS); + } + Holder projectAll = new Holder<>(false); parsed.forEachExpressionDown(UnresolvedStar.class, us -> {// explicit "*" fields selection if (projectAll.get()) { From 68c276a429e5e3d64d91887275ca5171b5aa1d40 Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Tue, 8 Apr 2025 16:21:14 +0200 Subject: [PATCH 6/8] Address review comments --- .../esql/src/main/antlr/EsqlBaseParser.g4 | 1 - .../xpack/esql/analysis/Analyzer.java | 5 +- .../xpack/esql/parser/EsqlBaseParser.interp | 2 +- .../xpack/esql/parser/EsqlBaseParser.java | 785 +++++++++--------- .../xpack/esql/plan/logical/Fork.java | 6 +- 5 files changed, 393 insertions(+), 406 deletions(-) diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index ee47b42e9107b..d8372695ca738 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -282,7 +282,6 @@ forkSubQueryCommand forkSubQueryProcessingCommand : evalCommand | whereCommand - | keepCommand | limitCommand | statsCommand | sortCommand diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index bb1015636c31c..e661cc059483e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -679,8 +679,7 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { // we align the outputs of the sub plans such that they have the same columns boolean changed = false; List newSubPlans = new ArrayList<>(); - - List forkColumns = fork.output().stream().map(Attribute::name).collect(Collectors.toList()); + Set forkColumns = fork.outputSet().names(); for (LogicalPlan logicalPlan : fork.children()) { Source source = logicalPlan.source(); @@ -695,7 +694,7 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { } List aliases = missing.stream() - .map(attr -> new Alias(source, attr.name(), new Literal(source, null, attr.dataType()))) + .map(attr -> new Alias(source, attr.name(), Literal.of(attr, null))) .collect(Collectors.toList()); ; 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 e7bc72f650716..bac8143542b03 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 @@ -357,4 +357,4 @@ joinPredicate atn: -[4, 1, 136, 726, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 326, 8, 25, 1, 26, 1, 26, 3, 26, 330, 8, 26, 1, 27, 1, 27, 3, 27, 334, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 339, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 348, 8, 30, 10, 30, 12, 30, 351, 9, 30, 1, 31, 1, 31, 3, 31, 355, 8, 31, 1, 31, 1, 31, 3, 31, 359, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 371, 8, 34, 10, 34, 12, 34, 374, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 384, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 396, 8, 39, 10, 39, 12, 39, 399, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 419, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 425, 8, 44, 10, 44, 12, 44, 428, 9, 44, 3, 44, 430, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 435, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 454, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 461, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 470, 8, 51, 11, 51, 12, 51, 471, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 484, 8, 53, 10, 53, 12, 53, 487, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 496, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 507, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 514, 8, 56, 10, 56, 12, 56, 517, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 524, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 529, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 537, 8, 56, 10, 56, 12, 56, 540, 9, 56, 1, 57, 1, 57, 3, 57, 544, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 551, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 556, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 561, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 571, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 577, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 585, 8, 60, 10, 60, 12, 60, 588, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 598, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 603, 8, 61, 10, 61, 12, 61, 606, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 614, 8, 62, 10, 62, 12, 62, 617, 9, 62, 1, 62, 1, 62, 3, 62, 621, 8, 62, 3, 62, 623, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 633, 8, 64, 10, 64, 12, 64, 636, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 657, 8, 66, 10, 66, 12, 66, 660, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 668, 8, 66, 10, 66, 12, 66, 671, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 679, 8, 66, 10, 66, 12, 66, 682, 9, 66, 1, 66, 1, 66, 3, 66, 686, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 692, 8, 68, 1, 69, 3, 69, 695, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 700, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 719, 8, 75, 10, 75, 12, 75, 722, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 756, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 325, 1, 0, 0, 0, 52, 329, 1, 0, 0, 0, 54, 333, 1, 0, 0, 0, 56, 338, 1, 0, 0, 0, 58, 340, 1, 0, 0, 0, 60, 343, 1, 0, 0, 0, 62, 352, 1, 0, 0, 0, 64, 360, 1, 0, 0, 0, 66, 363, 1, 0, 0, 0, 68, 366, 1, 0, 0, 0, 70, 375, 1, 0, 0, 0, 72, 379, 1, 0, 0, 0, 74, 385, 1, 0, 0, 0, 76, 389, 1, 0, 0, 0, 78, 392, 1, 0, 0, 0, 80, 400, 1, 0, 0, 0, 82, 404, 1, 0, 0, 0, 84, 407, 1, 0, 0, 0, 86, 411, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 434, 1, 0, 0, 0, 92, 438, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 449, 1, 0, 0, 0, 98, 462, 1, 0, 0, 0, 100, 465, 1, 0, 0, 0, 102, 469, 1, 0, 0, 0, 104, 473, 1, 0, 0, 0, 106, 477, 1, 0, 0, 0, 108, 495, 1, 0, 0, 0, 110, 497, 1, 0, 0, 0, 112, 528, 1, 0, 0, 0, 114, 555, 1, 0, 0, 0, 116, 557, 1, 0, 0, 0, 118, 570, 1, 0, 0, 0, 120, 576, 1, 0, 0, 0, 122, 597, 1, 0, 0, 0, 124, 607, 1, 0, 0, 0, 126, 626, 1, 0, 0, 0, 128, 628, 1, 0, 0, 0, 130, 639, 1, 0, 0, 0, 132, 685, 1, 0, 0, 0, 134, 687, 1, 0, 0, 0, 136, 691, 1, 0, 0, 0, 138, 694, 1, 0, 0, 0, 140, 699, 1, 0, 0, 0, 142, 703, 1, 0, 0, 0, 144, 705, 1, 0, 0, 0, 146, 707, 1, 0, 0, 0, 148, 712, 1, 0, 0, 0, 150, 714, 1, 0, 0, 0, 152, 723, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 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, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 326, 5, 125, 0, 0, 323, 326, 3, 52, 26, 0, 324, 326, 3, 54, 27, 0, 325, 322, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 51, 1, 0, 0, 0, 327, 330, 5, 74, 0, 0, 328, 330, 5, 92, 0, 0, 329, 327, 1, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 53, 1, 0, 0, 0, 331, 334, 5, 91, 0, 0, 332, 334, 5, 93, 0, 0, 333, 331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 55, 1, 0, 0, 0, 335, 339, 3, 48, 24, 0, 336, 339, 3, 52, 26, 0, 337, 339, 3, 54, 27, 0, 338, 335, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 57, 1, 0, 0, 0, 340, 341, 5, 10, 0, 0, 341, 342, 5, 53, 0, 0, 342, 59, 1, 0, 0, 0, 343, 344, 5, 12, 0, 0, 344, 349, 3, 62, 31, 0, 345, 346, 5, 61, 0, 0, 346, 348, 3, 62, 31, 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, 61, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 3, 112, 56, 0, 353, 355, 7, 2, 0, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 72, 0, 0, 357, 359, 7, 3, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 63, 1, 0, 0, 0, 360, 361, 5, 26, 0, 0, 361, 362, 3, 46, 23, 0, 362, 65, 1, 0, 0, 0, 363, 364, 5, 25, 0, 0, 364, 365, 3, 46, 23, 0, 365, 67, 1, 0, 0, 0, 366, 367, 5, 29, 0, 0, 367, 372, 3, 70, 35, 0, 368, 369, 5, 61, 0, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 69, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 376, 3, 44, 22, 0, 376, 377, 5, 129, 0, 0, 377, 378, 3, 44, 22, 0, 378, 71, 1, 0, 0, 0, 379, 380, 5, 7, 0, 0, 380, 381, 3, 122, 61, 0, 381, 383, 3, 142, 71, 0, 382, 384, 3, 78, 39, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 73, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 122, 61, 0, 387, 388, 3, 142, 71, 0, 388, 75, 1, 0, 0, 0, 389, 390, 5, 24, 0, 0, 390, 391, 3, 42, 21, 0, 391, 77, 1, 0, 0, 0, 392, 397, 3, 80, 40, 0, 393, 394, 5, 61, 0, 0, 394, 396, 3, 80, 40, 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, 79, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 48, 24, 0, 401, 402, 5, 58, 0, 0, 402, 403, 3, 132, 66, 0, 403, 81, 1, 0, 0, 0, 404, 405, 5, 6, 0, 0, 405, 406, 3, 84, 42, 0, 406, 83, 1, 0, 0, 0, 407, 408, 5, 94, 0, 0, 408, 409, 3, 2, 1, 0, 409, 410, 5, 95, 0, 0, 410, 85, 1, 0, 0, 0, 411, 412, 5, 30, 0, 0, 412, 413, 5, 133, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 5, 5, 0, 0, 415, 418, 5, 37, 0, 0, 416, 417, 5, 35, 0, 0, 417, 419, 3, 44, 22, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 429, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 90, 45, 0, 422, 423, 5, 61, 0, 0, 423, 425, 3, 90, 45, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 89, 1, 0, 0, 0, 431, 432, 3, 44, 22, 0, 432, 433, 5, 58, 0, 0, 433, 435, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 3, 44, 22, 0, 437, 91, 1, 0, 0, 0, 438, 439, 5, 23, 0, 0, 439, 440, 3, 24, 12, 0, 440, 441, 5, 35, 0, 0, 441, 442, 3, 46, 23, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 15, 0, 0, 444, 447, 3, 38, 19, 0, 445, 446, 5, 55, 0, 0, 446, 448, 3, 14, 7, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 95, 1, 0, 0, 0, 449, 450, 5, 4, 0, 0, 450, 453, 3, 42, 21, 0, 451, 452, 5, 35, 0, 0, 452, 454, 3, 42, 21, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 460, 1, 0, 0, 0, 455, 456, 5, 129, 0, 0, 456, 457, 3, 42, 21, 0, 457, 458, 5, 61, 0, 0, 458, 459, 3, 42, 21, 0, 459, 461, 1, 0, 0, 0, 460, 455, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 97, 1, 0, 0, 0, 462, 463, 5, 27, 0, 0, 463, 464, 3, 46, 23, 0, 464, 99, 1, 0, 0, 0, 465, 466, 5, 18, 0, 0, 466, 467, 3, 102, 51, 0, 467, 101, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 103, 1, 0, 0, 0, 473, 474, 5, 96, 0, 0, 474, 475, 3, 106, 53, 0, 475, 476, 5, 97, 0, 0, 476, 105, 1, 0, 0, 0, 477, 478, 6, 53, -1, 0, 478, 479, 3, 108, 54, 0, 479, 485, 1, 0, 0, 0, 480, 481, 10, 1, 0, 0, 481, 482, 5, 51, 0, 0, 482, 484, 3, 108, 54, 0, 483, 480, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 107, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 496, 3, 34, 17, 0, 489, 496, 3, 8, 4, 0, 490, 496, 3, 64, 32, 0, 491, 496, 3, 58, 29, 0, 492, 496, 3, 36, 18, 0, 493, 496, 3, 60, 30, 0, 494, 496, 3, 72, 36, 0, 495, 488, 1, 0, 0, 0, 495, 489, 1, 0, 0, 0, 495, 490, 1, 0, 0, 0, 495, 491, 1, 0, 0, 0, 495, 492, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 494, 1, 0, 0, 0, 496, 109, 1, 0, 0, 0, 497, 498, 5, 28, 0, 0, 498, 111, 1, 0, 0, 0, 499, 500, 6, 56, -1, 0, 500, 501, 5, 70, 0, 0, 501, 529, 3, 112, 56, 8, 502, 529, 3, 118, 59, 0, 503, 529, 3, 114, 57, 0, 504, 506, 3, 118, 59, 0, 505, 507, 5, 70, 0, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 5, 66, 0, 0, 509, 510, 5, 96, 0, 0, 510, 515, 3, 118, 59, 0, 511, 512, 5, 61, 0, 0, 512, 514, 3, 118, 59, 0, 513, 511, 1, 0, 0, 0, 514, 517, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 518, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 518, 519, 5, 97, 0, 0, 519, 529, 1, 0, 0, 0, 520, 521, 3, 118, 59, 0, 521, 523, 5, 67, 0, 0, 522, 524, 5, 70, 0, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 5, 71, 0, 0, 526, 529, 1, 0, 0, 0, 527, 529, 3, 116, 58, 0, 528, 499, 1, 0, 0, 0, 528, 502, 1, 0, 0, 0, 528, 503, 1, 0, 0, 0, 528, 504, 1, 0, 0, 0, 528, 520, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 538, 1, 0, 0, 0, 530, 531, 10, 5, 0, 0, 531, 532, 5, 56, 0, 0, 532, 537, 3, 112, 56, 6, 533, 534, 10, 4, 0, 0, 534, 535, 5, 73, 0, 0, 535, 537, 3, 112, 56, 5, 536, 530, 1, 0, 0, 0, 536, 533, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 113, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 541, 543, 3, 118, 59, 0, 542, 544, 5, 70, 0, 0, 543, 542, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 5, 69, 0, 0, 546, 547, 3, 142, 71, 0, 547, 556, 1, 0, 0, 0, 548, 550, 3, 118, 59, 0, 549, 551, 5, 70, 0, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 75, 0, 0, 553, 554, 3, 142, 71, 0, 554, 556, 1, 0, 0, 0, 555, 541, 1, 0, 0, 0, 555, 548, 1, 0, 0, 0, 556, 115, 1, 0, 0, 0, 557, 560, 3, 42, 21, 0, 558, 559, 5, 59, 0, 0, 559, 561, 3, 10, 5, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 5, 60, 0, 0, 563, 564, 3, 132, 66, 0, 564, 117, 1, 0, 0, 0, 565, 571, 3, 120, 60, 0, 566, 567, 3, 120, 60, 0, 567, 568, 3, 144, 72, 0, 568, 569, 3, 120, 60, 0, 569, 571, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 566, 1, 0, 0, 0, 571, 119, 1, 0, 0, 0, 572, 573, 6, 60, -1, 0, 573, 577, 3, 122, 61, 0, 574, 575, 7, 4, 0, 0, 575, 577, 3, 120, 60, 3, 576, 572, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 577, 586, 1, 0, 0, 0, 578, 579, 10, 2, 0, 0, 579, 580, 7, 5, 0, 0, 580, 585, 3, 120, 60, 3, 581, 582, 10, 1, 0, 0, 582, 583, 7, 4, 0, 0, 583, 585, 3, 120, 60, 2, 584, 578, 1, 0, 0, 0, 584, 581, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 121, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 589, 590, 6, 61, -1, 0, 590, 598, 3, 132, 66, 0, 591, 598, 3, 42, 21, 0, 592, 598, 3, 124, 62, 0, 593, 594, 5, 96, 0, 0, 594, 595, 3, 112, 56, 0, 595, 596, 5, 97, 0, 0, 596, 598, 1, 0, 0, 0, 597, 589, 1, 0, 0, 0, 597, 591, 1, 0, 0, 0, 597, 592, 1, 0, 0, 0, 597, 593, 1, 0, 0, 0, 598, 604, 1, 0, 0, 0, 599, 600, 10, 1, 0, 0, 600, 601, 5, 59, 0, 0, 601, 603, 3, 10, 5, 0, 602, 599, 1, 0, 0, 0, 603, 606, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 123, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 607, 608, 3, 126, 63, 0, 608, 622, 5, 96, 0, 0, 609, 623, 5, 86, 0, 0, 610, 615, 3, 112, 56, 0, 611, 612, 5, 61, 0, 0, 612, 614, 3, 112, 56, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 619, 5, 61, 0, 0, 619, 621, 3, 128, 64, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 1, 0, 0, 0, 622, 609, 1, 0, 0, 0, 622, 610, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 5, 97, 0, 0, 625, 125, 1, 0, 0, 0, 626, 627, 3, 56, 28, 0, 627, 127, 1, 0, 0, 0, 628, 629, 5, 89, 0, 0, 629, 634, 3, 130, 65, 0, 630, 631, 5, 61, 0, 0, 631, 633, 3, 130, 65, 0, 632, 630, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 637, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 637, 638, 5, 90, 0, 0, 638, 129, 1, 0, 0, 0, 639, 640, 3, 142, 71, 0, 640, 641, 5, 60, 0, 0, 641, 642, 3, 132, 66, 0, 642, 131, 1, 0, 0, 0, 643, 686, 5, 71, 0, 0, 644, 645, 3, 140, 70, 0, 645, 646, 5, 98, 0, 0, 646, 686, 1, 0, 0, 0, 647, 686, 3, 138, 69, 0, 648, 686, 3, 140, 70, 0, 649, 686, 3, 134, 67, 0, 650, 686, 3, 52, 26, 0, 651, 686, 3, 142, 71, 0, 652, 653, 5, 94, 0, 0, 653, 658, 3, 136, 68, 0, 654, 655, 5, 61, 0, 0, 655, 657, 3, 136, 68, 0, 656, 654, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 661, 1, 0, 0, 0, 660, 658, 1, 0, 0, 0, 661, 662, 5, 95, 0, 0, 662, 686, 1, 0, 0, 0, 663, 664, 5, 94, 0, 0, 664, 669, 3, 134, 67, 0, 665, 666, 5, 61, 0, 0, 666, 668, 3, 134, 67, 0, 667, 665, 1, 0, 0, 0, 668, 671, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 669, 1, 0, 0, 0, 672, 673, 5, 95, 0, 0, 673, 686, 1, 0, 0, 0, 674, 675, 5, 94, 0, 0, 675, 680, 3, 142, 71, 0, 676, 677, 5, 61, 0, 0, 677, 679, 3, 142, 71, 0, 678, 676, 1, 0, 0, 0, 679, 682, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 683, 1, 0, 0, 0, 682, 680, 1, 0, 0, 0, 683, 684, 5, 95, 0, 0, 684, 686, 1, 0, 0, 0, 685, 643, 1, 0, 0, 0, 685, 644, 1, 0, 0, 0, 685, 647, 1, 0, 0, 0, 685, 648, 1, 0, 0, 0, 685, 649, 1, 0, 0, 0, 685, 650, 1, 0, 0, 0, 685, 651, 1, 0, 0, 0, 685, 652, 1, 0, 0, 0, 685, 663, 1, 0, 0, 0, 685, 674, 1, 0, 0, 0, 686, 133, 1, 0, 0, 0, 687, 688, 7, 6, 0, 0, 688, 135, 1, 0, 0, 0, 689, 692, 3, 138, 69, 0, 690, 692, 3, 140, 70, 0, 691, 689, 1, 0, 0, 0, 691, 690, 1, 0, 0, 0, 692, 137, 1, 0, 0, 0, 693, 695, 7, 4, 0, 0, 694, 693, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 5, 54, 0, 0, 697, 139, 1, 0, 0, 0, 698, 700, 7, 4, 0, 0, 699, 698, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 5, 53, 0, 0, 702, 141, 1, 0, 0, 0, 703, 704, 5, 52, 0, 0, 704, 143, 1, 0, 0, 0, 705, 706, 7, 7, 0, 0, 706, 145, 1, 0, 0, 0, 707, 708, 7, 8, 0, 0, 708, 709, 5, 111, 0, 0, 709, 710, 3, 148, 74, 0, 710, 711, 3, 150, 75, 0, 711, 147, 1, 0, 0, 0, 712, 713, 3, 24, 12, 0, 713, 149, 1, 0, 0, 0, 714, 715, 5, 35, 0, 0, 715, 720, 3, 152, 76, 0, 716, 717, 5, 61, 0, 0, 717, 719, 3, 152, 76, 0, 718, 716, 1, 0, 0, 0, 719, 722, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 151, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 723, 724, 3, 118, 59, 0, 724, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 325, 329, 333, 338, 349, 354, 358, 372, 383, 397, 418, 426, 429, 434, 447, 453, 460, 471, 485, 495, 506, 515, 523, 528, 536, 538, 543, 550, 555, 560, 570, 576, 584, 586, 597, 604, 615, 620, 622, 634, 658, 669, 680, 685, 691, 694, 699, 720] \ No newline at end of file +[4, 1, 136, 725, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 326, 8, 25, 1, 26, 1, 26, 3, 26, 330, 8, 26, 1, 27, 1, 27, 3, 27, 334, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 339, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 348, 8, 30, 10, 30, 12, 30, 351, 9, 30, 1, 31, 1, 31, 3, 31, 355, 8, 31, 1, 31, 1, 31, 3, 31, 359, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 371, 8, 34, 10, 34, 12, 34, 374, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 384, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 396, 8, 39, 10, 39, 12, 39, 399, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 419, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 425, 8, 44, 10, 44, 12, 44, 428, 9, 44, 3, 44, 430, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 435, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 448, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 454, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 461, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 470, 8, 51, 11, 51, 12, 51, 471, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 484, 8, 53, 10, 53, 12, 53, 487, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 495, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 506, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 513, 8, 56, 10, 56, 12, 56, 516, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 523, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 528, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 536, 8, 56, 10, 56, 12, 56, 539, 9, 56, 1, 57, 1, 57, 3, 57, 543, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 550, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 555, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 560, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 570, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 576, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 584, 8, 60, 10, 60, 12, 60, 587, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 597, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 602, 8, 61, 10, 61, 12, 61, 605, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 613, 8, 62, 10, 62, 12, 62, 616, 9, 62, 1, 62, 1, 62, 3, 62, 620, 8, 62, 3, 62, 622, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 632, 8, 64, 10, 64, 12, 64, 635, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 656, 8, 66, 10, 66, 12, 66, 659, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 667, 8, 66, 10, 66, 12, 66, 670, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 678, 8, 66, 10, 66, 12, 66, 681, 9, 66, 1, 66, 1, 66, 3, 66, 685, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 691, 8, 68, 1, 69, 3, 69, 694, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 699, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 718, 8, 75, 10, 75, 12, 75, 721, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 754, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 325, 1, 0, 0, 0, 52, 329, 1, 0, 0, 0, 54, 333, 1, 0, 0, 0, 56, 338, 1, 0, 0, 0, 58, 340, 1, 0, 0, 0, 60, 343, 1, 0, 0, 0, 62, 352, 1, 0, 0, 0, 64, 360, 1, 0, 0, 0, 66, 363, 1, 0, 0, 0, 68, 366, 1, 0, 0, 0, 70, 375, 1, 0, 0, 0, 72, 379, 1, 0, 0, 0, 74, 385, 1, 0, 0, 0, 76, 389, 1, 0, 0, 0, 78, 392, 1, 0, 0, 0, 80, 400, 1, 0, 0, 0, 82, 404, 1, 0, 0, 0, 84, 407, 1, 0, 0, 0, 86, 411, 1, 0, 0, 0, 88, 414, 1, 0, 0, 0, 90, 434, 1, 0, 0, 0, 92, 438, 1, 0, 0, 0, 94, 443, 1, 0, 0, 0, 96, 449, 1, 0, 0, 0, 98, 462, 1, 0, 0, 0, 100, 465, 1, 0, 0, 0, 102, 469, 1, 0, 0, 0, 104, 473, 1, 0, 0, 0, 106, 477, 1, 0, 0, 0, 108, 494, 1, 0, 0, 0, 110, 496, 1, 0, 0, 0, 112, 527, 1, 0, 0, 0, 114, 554, 1, 0, 0, 0, 116, 556, 1, 0, 0, 0, 118, 569, 1, 0, 0, 0, 120, 575, 1, 0, 0, 0, 122, 596, 1, 0, 0, 0, 124, 606, 1, 0, 0, 0, 126, 625, 1, 0, 0, 0, 128, 627, 1, 0, 0, 0, 130, 638, 1, 0, 0, 0, 132, 684, 1, 0, 0, 0, 134, 686, 1, 0, 0, 0, 136, 690, 1, 0, 0, 0, 138, 693, 1, 0, 0, 0, 140, 698, 1, 0, 0, 0, 142, 702, 1, 0, 0, 0, 144, 704, 1, 0, 0, 0, 146, 706, 1, 0, 0, 0, 148, 711, 1, 0, 0, 0, 150, 713, 1, 0, 0, 0, 152, 722, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 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, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 326, 5, 125, 0, 0, 323, 326, 3, 52, 26, 0, 324, 326, 3, 54, 27, 0, 325, 322, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 324, 1, 0, 0, 0, 326, 51, 1, 0, 0, 0, 327, 330, 5, 74, 0, 0, 328, 330, 5, 92, 0, 0, 329, 327, 1, 0, 0, 0, 329, 328, 1, 0, 0, 0, 330, 53, 1, 0, 0, 0, 331, 334, 5, 91, 0, 0, 332, 334, 5, 93, 0, 0, 333, 331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 55, 1, 0, 0, 0, 335, 339, 3, 48, 24, 0, 336, 339, 3, 52, 26, 0, 337, 339, 3, 54, 27, 0, 338, 335, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 57, 1, 0, 0, 0, 340, 341, 5, 10, 0, 0, 341, 342, 5, 53, 0, 0, 342, 59, 1, 0, 0, 0, 343, 344, 5, 12, 0, 0, 344, 349, 3, 62, 31, 0, 345, 346, 5, 61, 0, 0, 346, 348, 3, 62, 31, 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, 61, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 3, 112, 56, 0, 353, 355, 7, 2, 0, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 357, 5, 72, 0, 0, 357, 359, 7, 3, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 63, 1, 0, 0, 0, 360, 361, 5, 26, 0, 0, 361, 362, 3, 46, 23, 0, 362, 65, 1, 0, 0, 0, 363, 364, 5, 25, 0, 0, 364, 365, 3, 46, 23, 0, 365, 67, 1, 0, 0, 0, 366, 367, 5, 29, 0, 0, 367, 372, 3, 70, 35, 0, 368, 369, 5, 61, 0, 0, 369, 371, 3, 70, 35, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 69, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 376, 3, 44, 22, 0, 376, 377, 5, 129, 0, 0, 377, 378, 3, 44, 22, 0, 378, 71, 1, 0, 0, 0, 379, 380, 5, 7, 0, 0, 380, 381, 3, 122, 61, 0, 381, 383, 3, 142, 71, 0, 382, 384, 3, 78, 39, 0, 383, 382, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 73, 1, 0, 0, 0, 385, 386, 5, 9, 0, 0, 386, 387, 3, 122, 61, 0, 387, 388, 3, 142, 71, 0, 388, 75, 1, 0, 0, 0, 389, 390, 5, 24, 0, 0, 390, 391, 3, 42, 21, 0, 391, 77, 1, 0, 0, 0, 392, 397, 3, 80, 40, 0, 393, 394, 5, 61, 0, 0, 394, 396, 3, 80, 40, 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, 79, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 48, 24, 0, 401, 402, 5, 58, 0, 0, 402, 403, 3, 132, 66, 0, 403, 81, 1, 0, 0, 0, 404, 405, 5, 6, 0, 0, 405, 406, 3, 84, 42, 0, 406, 83, 1, 0, 0, 0, 407, 408, 5, 94, 0, 0, 408, 409, 3, 2, 1, 0, 409, 410, 5, 95, 0, 0, 410, 85, 1, 0, 0, 0, 411, 412, 5, 30, 0, 0, 412, 413, 5, 133, 0, 0, 413, 87, 1, 0, 0, 0, 414, 415, 5, 5, 0, 0, 415, 418, 5, 37, 0, 0, 416, 417, 5, 35, 0, 0, 417, 419, 3, 44, 22, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 429, 1, 0, 0, 0, 420, 421, 5, 36, 0, 0, 421, 426, 3, 90, 45, 0, 422, 423, 5, 61, 0, 0, 423, 425, 3, 90, 45, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 89, 1, 0, 0, 0, 431, 432, 3, 44, 22, 0, 432, 433, 5, 58, 0, 0, 433, 435, 1, 0, 0, 0, 434, 431, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 3, 44, 22, 0, 437, 91, 1, 0, 0, 0, 438, 439, 5, 23, 0, 0, 439, 440, 3, 24, 12, 0, 440, 441, 5, 35, 0, 0, 441, 442, 3, 46, 23, 0, 442, 93, 1, 0, 0, 0, 443, 444, 5, 15, 0, 0, 444, 447, 3, 38, 19, 0, 445, 446, 5, 55, 0, 0, 446, 448, 3, 14, 7, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 95, 1, 0, 0, 0, 449, 450, 5, 4, 0, 0, 450, 453, 3, 42, 21, 0, 451, 452, 5, 35, 0, 0, 452, 454, 3, 42, 21, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 460, 1, 0, 0, 0, 455, 456, 5, 129, 0, 0, 456, 457, 3, 42, 21, 0, 457, 458, 5, 61, 0, 0, 458, 459, 3, 42, 21, 0, 459, 461, 1, 0, 0, 0, 460, 455, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 97, 1, 0, 0, 0, 462, 463, 5, 27, 0, 0, 463, 464, 3, 46, 23, 0, 464, 99, 1, 0, 0, 0, 465, 466, 5, 18, 0, 0, 466, 467, 3, 102, 51, 0, 467, 101, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 103, 1, 0, 0, 0, 473, 474, 5, 96, 0, 0, 474, 475, 3, 106, 53, 0, 475, 476, 5, 97, 0, 0, 476, 105, 1, 0, 0, 0, 477, 478, 6, 53, -1, 0, 478, 479, 3, 108, 54, 0, 479, 485, 1, 0, 0, 0, 480, 481, 10, 1, 0, 0, 481, 482, 5, 51, 0, 0, 482, 484, 3, 108, 54, 0, 483, 480, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 107, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 495, 3, 34, 17, 0, 489, 495, 3, 8, 4, 0, 490, 495, 3, 58, 29, 0, 491, 495, 3, 36, 18, 0, 492, 495, 3, 60, 30, 0, 493, 495, 3, 72, 36, 0, 494, 488, 1, 0, 0, 0, 494, 489, 1, 0, 0, 0, 494, 490, 1, 0, 0, 0, 494, 491, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 493, 1, 0, 0, 0, 495, 109, 1, 0, 0, 0, 496, 497, 5, 28, 0, 0, 497, 111, 1, 0, 0, 0, 498, 499, 6, 56, -1, 0, 499, 500, 5, 70, 0, 0, 500, 528, 3, 112, 56, 8, 501, 528, 3, 118, 59, 0, 502, 528, 3, 114, 57, 0, 503, 505, 3, 118, 59, 0, 504, 506, 5, 70, 0, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 5, 66, 0, 0, 508, 509, 5, 96, 0, 0, 509, 514, 3, 118, 59, 0, 510, 511, 5, 61, 0, 0, 511, 513, 3, 118, 59, 0, 512, 510, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 517, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 518, 5, 97, 0, 0, 518, 528, 1, 0, 0, 0, 519, 520, 3, 118, 59, 0, 520, 522, 5, 67, 0, 0, 521, 523, 5, 70, 0, 0, 522, 521, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 5, 71, 0, 0, 525, 528, 1, 0, 0, 0, 526, 528, 3, 116, 58, 0, 527, 498, 1, 0, 0, 0, 527, 501, 1, 0, 0, 0, 527, 502, 1, 0, 0, 0, 527, 503, 1, 0, 0, 0, 527, 519, 1, 0, 0, 0, 527, 526, 1, 0, 0, 0, 528, 537, 1, 0, 0, 0, 529, 530, 10, 5, 0, 0, 530, 531, 5, 56, 0, 0, 531, 536, 3, 112, 56, 6, 532, 533, 10, 4, 0, 0, 533, 534, 5, 73, 0, 0, 534, 536, 3, 112, 56, 5, 535, 529, 1, 0, 0, 0, 535, 532, 1, 0, 0, 0, 536, 539, 1, 0, 0, 0, 537, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 113, 1, 0, 0, 0, 539, 537, 1, 0, 0, 0, 540, 542, 3, 118, 59, 0, 541, 543, 5, 70, 0, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 5, 69, 0, 0, 545, 546, 3, 142, 71, 0, 546, 555, 1, 0, 0, 0, 547, 549, 3, 118, 59, 0, 548, 550, 5, 70, 0, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 75, 0, 0, 552, 553, 3, 142, 71, 0, 553, 555, 1, 0, 0, 0, 554, 540, 1, 0, 0, 0, 554, 547, 1, 0, 0, 0, 555, 115, 1, 0, 0, 0, 556, 559, 3, 42, 21, 0, 557, 558, 5, 59, 0, 0, 558, 560, 3, 10, 5, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 5, 60, 0, 0, 562, 563, 3, 132, 66, 0, 563, 117, 1, 0, 0, 0, 564, 570, 3, 120, 60, 0, 565, 566, 3, 120, 60, 0, 566, 567, 3, 144, 72, 0, 567, 568, 3, 120, 60, 0, 568, 570, 1, 0, 0, 0, 569, 564, 1, 0, 0, 0, 569, 565, 1, 0, 0, 0, 570, 119, 1, 0, 0, 0, 571, 572, 6, 60, -1, 0, 572, 576, 3, 122, 61, 0, 573, 574, 7, 4, 0, 0, 574, 576, 3, 120, 60, 3, 575, 571, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 576, 585, 1, 0, 0, 0, 577, 578, 10, 2, 0, 0, 578, 579, 7, 5, 0, 0, 579, 584, 3, 120, 60, 3, 580, 581, 10, 1, 0, 0, 581, 582, 7, 4, 0, 0, 582, 584, 3, 120, 60, 2, 583, 577, 1, 0, 0, 0, 583, 580, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 121, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 588, 589, 6, 61, -1, 0, 589, 597, 3, 132, 66, 0, 590, 597, 3, 42, 21, 0, 591, 597, 3, 124, 62, 0, 592, 593, 5, 96, 0, 0, 593, 594, 3, 112, 56, 0, 594, 595, 5, 97, 0, 0, 595, 597, 1, 0, 0, 0, 596, 588, 1, 0, 0, 0, 596, 590, 1, 0, 0, 0, 596, 591, 1, 0, 0, 0, 596, 592, 1, 0, 0, 0, 597, 603, 1, 0, 0, 0, 598, 599, 10, 1, 0, 0, 599, 600, 5, 59, 0, 0, 600, 602, 3, 10, 5, 0, 601, 598, 1, 0, 0, 0, 602, 605, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 123, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 3, 126, 63, 0, 607, 621, 5, 96, 0, 0, 608, 622, 5, 86, 0, 0, 609, 614, 3, 112, 56, 0, 610, 611, 5, 61, 0, 0, 611, 613, 3, 112, 56, 0, 612, 610, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 619, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 5, 61, 0, 0, 618, 620, 3, 128, 64, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 622, 1, 0, 0, 0, 621, 608, 1, 0, 0, 0, 621, 609, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 97, 0, 0, 624, 125, 1, 0, 0, 0, 625, 626, 3, 56, 28, 0, 626, 127, 1, 0, 0, 0, 627, 628, 5, 89, 0, 0, 628, 633, 3, 130, 65, 0, 629, 630, 5, 61, 0, 0, 630, 632, 3, 130, 65, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 636, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 637, 5, 90, 0, 0, 637, 129, 1, 0, 0, 0, 638, 639, 3, 142, 71, 0, 639, 640, 5, 60, 0, 0, 640, 641, 3, 132, 66, 0, 641, 131, 1, 0, 0, 0, 642, 685, 5, 71, 0, 0, 643, 644, 3, 140, 70, 0, 644, 645, 5, 98, 0, 0, 645, 685, 1, 0, 0, 0, 646, 685, 3, 138, 69, 0, 647, 685, 3, 140, 70, 0, 648, 685, 3, 134, 67, 0, 649, 685, 3, 52, 26, 0, 650, 685, 3, 142, 71, 0, 651, 652, 5, 94, 0, 0, 652, 657, 3, 136, 68, 0, 653, 654, 5, 61, 0, 0, 654, 656, 3, 136, 68, 0, 655, 653, 1, 0, 0, 0, 656, 659, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 660, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 660, 661, 5, 95, 0, 0, 661, 685, 1, 0, 0, 0, 662, 663, 5, 94, 0, 0, 663, 668, 3, 134, 67, 0, 664, 665, 5, 61, 0, 0, 665, 667, 3, 134, 67, 0, 666, 664, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0, 671, 672, 5, 95, 0, 0, 672, 685, 1, 0, 0, 0, 673, 674, 5, 94, 0, 0, 674, 679, 3, 142, 71, 0, 675, 676, 5, 61, 0, 0, 676, 678, 3, 142, 71, 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, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 95, 0, 0, 683, 685, 1, 0, 0, 0, 684, 642, 1, 0, 0, 0, 684, 643, 1, 0, 0, 0, 684, 646, 1, 0, 0, 0, 684, 647, 1, 0, 0, 0, 684, 648, 1, 0, 0, 0, 684, 649, 1, 0, 0, 0, 684, 650, 1, 0, 0, 0, 684, 651, 1, 0, 0, 0, 684, 662, 1, 0, 0, 0, 684, 673, 1, 0, 0, 0, 685, 133, 1, 0, 0, 0, 686, 687, 7, 6, 0, 0, 687, 135, 1, 0, 0, 0, 688, 691, 3, 138, 69, 0, 689, 691, 3, 140, 70, 0, 690, 688, 1, 0, 0, 0, 690, 689, 1, 0, 0, 0, 691, 137, 1, 0, 0, 0, 692, 694, 7, 4, 0, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 54, 0, 0, 696, 139, 1, 0, 0, 0, 697, 699, 7, 4, 0, 0, 698, 697, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 53, 0, 0, 701, 141, 1, 0, 0, 0, 702, 703, 5, 52, 0, 0, 703, 143, 1, 0, 0, 0, 704, 705, 7, 7, 0, 0, 705, 145, 1, 0, 0, 0, 706, 707, 7, 8, 0, 0, 707, 708, 5, 111, 0, 0, 708, 709, 3, 148, 74, 0, 709, 710, 3, 150, 75, 0, 710, 147, 1, 0, 0, 0, 711, 712, 3, 24, 12, 0, 712, 149, 1, 0, 0, 0, 713, 714, 5, 35, 0, 0, 714, 719, 3, 152, 76, 0, 715, 716, 5, 61, 0, 0, 716, 718, 3, 152, 76, 0, 717, 715, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 151, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 3, 118, 59, 0, 723, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 325, 329, 333, 338, 349, 354, 358, 372, 383, 397, 418, 426, 429, 434, 447, 453, 460, 471, 485, 494, 505, 514, 522, 527, 535, 537, 542, 549, 554, 559, 569, 575, 583, 585, 596, 603, 614, 619, 621, 633, 657, 668, 679, 684, 690, 693, 698, 719] \ 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 586b82d42c752..4aac1e2e79b2d 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 @@ -4009,9 +4009,6 @@ public EvalCommandContext evalCommand() { public WhereCommandContext whereCommand() { return getRuleContext(WhereCommandContext.class,0); } - public KeepCommandContext keepCommand() { - return getRuleContext(KeepCommandContext.class,0); - } public LimitCommandContext limitCommand() { return getRuleContext(LimitCommandContext.class,0); } @@ -4048,7 +4045,7 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 108, RULE_forkSubQueryProcessingCommand); try { - setState(495); + setState(494); _errHandler.sync(this); switch (_input.LA(1)) { case EVAL: @@ -4065,38 +4062,31 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( whereCommand(); } break; - case KEEP: + case LIMIT: enterOuterAlt(_localctx, 3); { setState(490); - keepCommand(); - } - break; - case LIMIT: - enterOuterAlt(_localctx, 4); - { - setState(491); limitCommand(); } break; case STATS: - enterOuterAlt(_localctx, 5); + enterOuterAlt(_localctx, 4); { - setState(492); + setState(491); statsCommand(); } break; case SORT: - enterOuterAlt(_localctx, 6); + enterOuterAlt(_localctx, 5); { - setState(493); + setState(492); sortCommand(); } break; case DISSECT: - enterOuterAlt(_localctx, 7); + enterOuterAlt(_localctx, 6); { - setState(494); + setState(493); dissectCommand(); } break; @@ -4144,7 +4134,7 @@ public final RrfCommandContext rrfCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(497); + setState(496); match(DEV_RRF); } } @@ -4360,7 +4350,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(528); + setState(527); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: @@ -4369,9 +4359,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(500); + setState(499); match(NOT); - setState(501); + setState(500); booleanExpression(8); } break; @@ -4380,7 +4370,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(502); + setState(501); valueExpression(); } break; @@ -4389,7 +4379,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(503); + setState(502); regexBooleanExpression(); } break; @@ -4398,41 +4388,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(504); + setState(503); valueExpression(); - setState(506); + setState(505); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(505); + setState(504); match(NOT); } } - setState(508); + setState(507); match(IN); - setState(509); + setState(508); match(LP); - setState(510); + setState(509); valueExpression(); - setState(515); + setState(514); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(511); + setState(510); match(COMMA); - setState(512); + setState(511); valueExpression(); } } - setState(517); + setState(516); _errHandler.sync(this); _la = _input.LA(1); } - setState(518); + setState(517); match(RP); } break; @@ -4441,21 +4431,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(520); + setState(519); valueExpression(); - setState(521); + setState(520); match(IS); - setState(523); + setState(522); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(522); + setState(521); match(NOT); } } - setState(525); + setState(524); match(NULL); } break; @@ -4464,13 +4454,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(527); + setState(526); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(538); + setState(537); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4478,7 +4468,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(536); + setState(535); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: @@ -4486,11 +4476,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(530); + setState(529); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(531); + setState(530); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(532); + setState(531); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4499,18 +4489,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(533); + setState(532); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(534); + setState(533); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(535); + setState(534); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(540); + setState(539); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } @@ -4565,48 +4555,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 114, RULE_regexBooleanExpression); int _la; try { - setState(555); + setState(554); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(541); + setState(540); valueExpression(); - setState(543); + setState(542); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(542); + setState(541); match(NOT); } } - setState(545); + setState(544); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(546); + setState(545); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(548); + setState(547); valueExpression(); - setState(550); + setState(549); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(549); + setState(548); match(NOT); } } - setState(552); + setState(551); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(553); + setState(552); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -4666,23 +4656,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(557); + setState(556); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(560); + setState(559); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(558); + setState(557); match(CAST_OP); - setState(559); + setState(558); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(562); + setState(561); match(COLON); - setState(563); + setState(562); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -4766,14 +4756,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 118, RULE_valueExpression); try { - setState(570); + setState(569); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(565); + setState(564); operatorExpression(0); } break; @@ -4781,11 +4771,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(566); + setState(565); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(567); + setState(566); comparisonOperator(); - setState(568); + setState(567); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -4910,7 +4900,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(576); + setState(575); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: @@ -4919,7 +4909,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(573); + setState(572); primaryExpression(0); } break; @@ -4928,7 +4918,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(574); + setState(573); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4939,13 +4929,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(575); + setState(574); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(586); + setState(585); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,51,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4953,7 +4943,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(584); + setState(583); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: @@ -4961,9 +4951,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(578); + setState(577); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(579); + setState(578); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & 7L) != 0)) ) { @@ -4974,7 +4964,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(580); + setState(579); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -4983,9 +4973,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(581); + setState(580); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(582); + setState(581); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4996,14 +4986,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(583); + setState(582); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(588); + setState(587); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } @@ -5161,7 +5151,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(597); + setState(596); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: @@ -5170,7 +5160,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(590); + setState(589); constant(); } break; @@ -5179,7 +5169,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(591); + setState(590); qualifiedName(); } break; @@ -5188,7 +5178,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(592); + setState(591); functionExpression(); } break; @@ -5197,17 +5187,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(593); + setState(592); match(LP); - setState(594); + setState(593); booleanExpression(0); - setState(595); + setState(594); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(604); + setState(603); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,53,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5218,16 +5208,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(599); + setState(598); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(600); + setState(599); match(CAST_OP); - setState(601); + setState(600); dataType(); } } } - setState(606); + setState(605); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,53,_ctx); } @@ -5293,16 +5283,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(607); + setState(606); functionName(); - setState(608); + setState(607); match(LP); - setState(622); + setState(621); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(609); + setState(608); match(ASTERISK); } break; @@ -5325,34 +5315,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(610); + setState(609); booleanExpression(0); - setState(615); + setState(614); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(611); + setState(610); match(COMMA); - setState(612); + setState(611); booleanExpression(0); } } } - setState(617); + setState(616); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } - setState(620); + setState(619); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(618); + setState(617); match(COMMA); - setState(619); + setState(618); mapExpression(); } } @@ -5365,7 +5355,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(624); + setState(623); match(RP); } } @@ -5411,7 +5401,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(626); + setState(625); identifierOrParameter(); } } @@ -5467,27 +5457,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(628); + setState(627); match(LEFT_BRACES); - setState(629); + setState(628); entryExpression(); - setState(634); + setState(633); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(630); + setState(629); match(COMMA); - setState(631); + setState(630); entryExpression(); } } - setState(636); + setState(635); _errHandler.sync(this); _la = _input.LA(1); } - setState(637); + setState(636); match(RIGHT_BRACES); } } @@ -5539,11 +5529,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(639); + setState(638); ((EntryExpressionContext)_localctx).key = string(); - setState(640); + setState(639); match(COLON); - setState(641); + setState(640); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -5814,14 +5804,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 132, RULE_constant); int _la; try { - setState(685); + setState(684); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(643); + setState(642); match(NULL); } break; @@ -5829,9 +5819,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(644); + setState(643); integerValue(); - setState(645); + setState(644); match(UNQUOTED_IDENTIFIER); } break; @@ -5839,7 +5829,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(647); + setState(646); decimalValue(); } break; @@ -5847,7 +5837,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(648); + setState(647); integerValue(); } break; @@ -5855,7 +5845,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(649); + setState(648); booleanValue(); } break; @@ -5863,7 +5853,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(650); + setState(649); parameter(); } break; @@ -5871,7 +5861,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(651); + setState(650); string(); } break; @@ -5879,27 +5869,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(652); + setState(651); match(OPENING_BRACKET); - setState(653); + setState(652); numericValue(); - setState(658); + setState(657); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(654); + setState(653); match(COMMA); - setState(655); + setState(654); numericValue(); } } - setState(660); + setState(659); _errHandler.sync(this); _la = _input.LA(1); } - setState(661); + setState(660); match(CLOSING_BRACKET); } break; @@ -5907,27 +5897,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(663); + setState(662); match(OPENING_BRACKET); - setState(664); + setState(663); booleanValue(); - setState(669); + setState(668); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(665); + setState(664); match(COMMA); - setState(666); + setState(665); booleanValue(); } } - setState(671); + setState(670); _errHandler.sync(this); _la = _input.LA(1); } - setState(672); + setState(671); match(CLOSING_BRACKET); } break; @@ -5935,27 +5925,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(674); + setState(673); match(OPENING_BRACKET); - setState(675); + setState(674); string(); - setState(680); + setState(679); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(676); + setState(675); match(COMMA); - setState(677); + setState(676); string(); } } - setState(682); + setState(681); _errHandler.sync(this); _la = _input.LA(1); } - setState(683); + setState(682); match(CLOSING_BRACKET); } break; @@ -6003,7 +5993,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(687); + setState(686); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -6058,20 +6048,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 136, RULE_numericValue); try { - setState(691); + setState(690); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(689); + setState(688); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(690); + setState(689); integerValue(); } break; @@ -6120,12 +6110,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(694); + setState(693); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(693); + setState(692); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6138,7 +6128,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(696); + setState(695); match(DECIMAL_LITERAL); } } @@ -6185,12 +6175,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(699); + setState(698); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(698); + setState(697); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6203,7 +6193,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(701); + setState(700); match(INTEGER_LITERAL); } } @@ -6247,7 +6237,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(703); + setState(702); match(QUOTED_STRING); } } @@ -6297,7 +6287,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(705); + setState(704); _la = _input.LA(1); if ( !(((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -6360,7 +6350,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(707); + setState(706); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 6815744L) != 0)) ) { @@ -6371,11 +6361,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(708); + setState(707); match(JOIN); - setState(709); + setState(708); joinTarget(); - setState(710); + setState(709); joinCondition(); } } @@ -6422,7 +6412,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(712); + setState(711); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6477,25 +6467,25 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(714); + setState(713); match(ON); - setState(715); + setState(714); joinPredicate(); - setState(720); + setState(719); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,65,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(716); + setState(715); match(COMMA); - setState(717); + setState(716); joinPredicate(); } } } - setState(722); + setState(721); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,65,_ctx); } @@ -6543,7 +6533,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(723); + setState(722); valueExpression(); } } @@ -6651,7 +6641,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u0088\u02d6\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0088\u02d5\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"+ @@ -6716,90 +6706,90 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "0\u01cd\b0\u00011\u00011\u00011\u00012\u00012\u00012\u00013\u00043\u01d6"+ "\b3\u000b3\f3\u01d7\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u0001"+ "5\u00015\u00015\u00055\u01e4\b5\n5\f5\u01e7\t5\u00016\u00016\u00016\u0001"+ - "6\u00016\u00016\u00016\u00036\u01f0\b6\u00017\u00017\u00018\u00018\u0001"+ - "8\u00018\u00018\u00018\u00018\u00038\u01fb\b8\u00018\u00018\u00018\u0001"+ - "8\u00018\u00058\u0202\b8\n8\f8\u0205\t8\u00018\u00018\u00018\u00018\u0001"+ - "8\u00038\u020c\b8\u00018\u00018\u00018\u00038\u0211\b8\u00018\u00018\u0001"+ - "8\u00018\u00018\u00018\u00058\u0219\b8\n8\f8\u021c\t8\u00019\u00019\u0003"+ - "9\u0220\b9\u00019\u00019\u00019\u00019\u00019\u00039\u0227\b9\u00019\u0001"+ - "9\u00019\u00039\u022c\b9\u0001:\u0001:\u0001:\u0003:\u0231\b:\u0001:\u0001"+ - ":\u0001:\u0001;\u0001;\u0001;\u0001;\u0001;\u0003;\u023b\b;\u0001<\u0001"+ - "<\u0001<\u0001<\u0003<\u0241\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001"+ - "<\u0005<\u0249\b<\n<\f<\u024c\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ - "=\u0001=\u0001=\u0003=\u0256\b=\u0001=\u0001=\u0001=\u0005=\u025b\b=\n"+ - "=\f=\u025e\t=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0266\b"+ - ">\n>\f>\u0269\t>\u0001>\u0001>\u0003>\u026d\b>\u0003>\u026f\b>\u0001>"+ - "\u0001>\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u0279\b@\n@\f"+ - "@\u027c\t@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0005B\u0291\bB\nB\fB\u0294\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0005B\u029c\bB\nB\fB\u029f\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0005B\u02a7\bB\nB\fB\u02aa\tB\u0001B\u0001B\u0003B\u02ae\bB\u0001C"+ - "\u0001C\u0001D\u0001D\u0003D\u02b4\bD\u0001E\u0003E\u02b7\bE\u0001E\u0001"+ - "E\u0001F\u0003F\u02bc\bF\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001"+ - "I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+ - "K\u0005K\u02cf\bK\nK\fK\u02d2\tK\u0001L\u0001L\u0001L\u0000\u0005\u0002"+ - "jpxzM\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\u0098"+ - "\u0000\t\u0002\u000044hh\u0001\u0000bc\u0002\u000099>>\u0002\u0000AAD"+ - "D\u0001\u0000TU\u0001\u0000VX\u0002\u0000@@LL\u0002\u0000MMOS\u0002\u0000"+ - "\u0013\u0013\u0015\u0016\u02f4\u0000\u009a\u0001\u0000\u0000\u0000\u0002"+ - "\u009d\u0001\u0000\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006"+ - "\u00c9\u0001\u0000\u0000\u0000\b\u00cb\u0001\u0000\u0000\u0000\n\u00ce"+ - "\u0001\u0000\u0000\u0000\f\u00d0\u0001\u0000\u0000\u0000\u000e\u00d3\u0001"+ - "\u0000\u0000\u0000\u0010\u00de\u0001\u0000\u0000\u0000\u0012\u00e2\u0001"+ - "\u0000\u0000\u0000\u0014\u00e5\u0001\u0000\u0000\u0000\u0016\u00e8\u0001"+ - "\u0000\u0000\u0000\u0018\u00ff\u0001\u0000\u0000\u0000\u001a\u0101\u0001"+ - "\u0000\u0000\u0000\u001c\u0103\u0001\u0000\u0000\u0000\u001e\u0105\u0001"+ - "\u0000\u0000\u0000 \u0107\u0001\u0000\u0000\u0000\"\u0110\u0001\u0000"+ - "\u0000\u0000$\u0113\u0001\u0000\u0000\u0000&\u011b\u0001\u0000\u0000\u0000"+ - "(\u0123\u0001\u0000\u0000\u0000*\u0128\u0001\u0000\u0000\u0000,\u0130"+ - "\u0001\u0000\u0000\u0000.\u0138\u0001\u0000\u0000\u00000\u0140\u0001\u0000"+ - "\u0000\u00002\u0145\u0001\u0000\u0000\u00004\u0149\u0001\u0000\u0000\u0000"+ - "6\u014d\u0001\u0000\u0000\u00008\u0152\u0001\u0000\u0000\u0000:\u0154"+ - "\u0001\u0000\u0000\u0000<\u0157\u0001\u0000\u0000\u0000>\u0160\u0001\u0000"+ - "\u0000\u0000@\u0168\u0001\u0000\u0000\u0000B\u016b\u0001\u0000\u0000\u0000"+ - "D\u016e\u0001\u0000\u0000\u0000F\u0177\u0001\u0000\u0000\u0000H\u017b"+ - "\u0001\u0000\u0000\u0000J\u0181\u0001\u0000\u0000\u0000L\u0185\u0001\u0000"+ - "\u0000\u0000N\u0188\u0001\u0000\u0000\u0000P\u0190\u0001\u0000\u0000\u0000"+ - "R\u0194\u0001\u0000\u0000\u0000T\u0197\u0001\u0000\u0000\u0000V\u019b"+ - "\u0001\u0000\u0000\u0000X\u019e\u0001\u0000\u0000\u0000Z\u01b2\u0001\u0000"+ - "\u0000\u0000\\\u01b6\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000\u0000"+ - "\u0000`\u01c1\u0001\u0000\u0000\u0000b\u01ce\u0001\u0000\u0000\u0000d"+ - "\u01d1\u0001\u0000\u0000\u0000f\u01d5\u0001\u0000\u0000\u0000h\u01d9\u0001"+ - "\u0000\u0000\u0000j\u01dd\u0001\u0000\u0000\u0000l\u01ef\u0001\u0000\u0000"+ - "\u0000n\u01f1\u0001\u0000\u0000\u0000p\u0210\u0001\u0000\u0000\u0000r"+ - "\u022b\u0001\u0000\u0000\u0000t\u022d\u0001\u0000\u0000\u0000v\u023a\u0001"+ - "\u0000\u0000\u0000x\u0240\u0001\u0000\u0000\u0000z\u0255\u0001\u0000\u0000"+ - "\u0000|\u025f\u0001\u0000\u0000\u0000~\u0272\u0001\u0000\u0000\u0000\u0080"+ - "\u0274\u0001\u0000\u0000\u0000\u0082\u027f\u0001\u0000\u0000\u0000\u0084"+ - "\u02ad\u0001\u0000\u0000\u0000\u0086\u02af\u0001\u0000\u0000\u0000\u0088"+ - "\u02b3\u0001\u0000\u0000\u0000\u008a\u02b6\u0001\u0000\u0000\u0000\u008c"+ - "\u02bb\u0001\u0000\u0000\u0000\u008e\u02bf\u0001\u0000\u0000\u0000\u0090"+ - "\u02c1\u0001\u0000\u0000\u0000\u0092\u02c3\u0001\u0000\u0000\u0000\u0094"+ - "\u02c8\u0001\u0000\u0000\u0000\u0096\u02ca\u0001\u0000\u0000\u0000\u0098"+ - "\u02d3\u0001\u0000\u0000\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b"+ - "\u009c\u0005\u0000\u0000\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d"+ - "\u009e\u0006\u0001\uffff\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000"+ - "\u009f\u00a5\u0001\u0000\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1"+ - "\u00a2\u00053\u0000\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0"+ - "\u0001\u0000\u0000\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3"+ - "\u0001\u0000\u0000\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003"+ - "\u0001\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af"+ - "\u0003R)\u0000\u00a9\u00af\u0003\u0012\t\u0000\u00aa\u00af\u0003\f\u0006"+ - "\u0000\u00ab\u00af\u0003V+\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad"+ - "\u00af\u0003\u0014\n\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9"+ - "\u0001\u0000\u0000\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab"+ - "\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005"+ - "\u0001\u0000\u0000\u0000\u00b0\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003"+ - "\b\u0004\u0000\u00b2\u00ca\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000"+ - "\u00b4\u00ca\u0003$\u0012\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca"+ - "\u0003B!\u0000\u00b7\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9"+ - "\u00ca\u0003J%\u0000\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000"+ - "\u00bc\u00ca\u0003\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be"+ - "\u00ca\u0003^/\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003"+ - "\\.\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000"+ + "6\u00016\u00016\u00036\u01ef\b6\u00017\u00017\u00018\u00018\u00018\u0001"+ + "8\u00018\u00018\u00018\u00038\u01fa\b8\u00018\u00018\u00018\u00018\u0001"+ + "8\u00058\u0201\b8\n8\f8\u0204\t8\u00018\u00018\u00018\u00018\u00018\u0003"+ + "8\u020b\b8\u00018\u00018\u00018\u00038\u0210\b8\u00018\u00018\u00018\u0001"+ + "8\u00018\u00018\u00058\u0218\b8\n8\f8\u021b\t8\u00019\u00019\u00039\u021f"+ + "\b9\u00019\u00019\u00019\u00019\u00019\u00039\u0226\b9\u00019\u00019\u0001"+ + "9\u00039\u022b\b9\u0001:\u0001:\u0001:\u0003:\u0230\b:\u0001:\u0001:\u0001"+ + ":\u0001;\u0001;\u0001;\u0001;\u0001;\u0003;\u023a\b;\u0001<\u0001<\u0001"+ + "<\u0001<\u0003<\u0240\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005"+ + "<\u0248\b<\n<\f<\u024b\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ + "=\u0001=\u0003=\u0255\b=\u0001=\u0001=\u0001=\u0005=\u025a\b=\n=\f=\u025d"+ + "\t=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0265\b>\n>\f>\u0268"+ + "\t>\u0001>\u0001>\u0003>\u026c\b>\u0003>\u026e\b>\u0001>\u0001>\u0001"+ + "?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u0278\b@\n@\f@\u027b\t@\u0001"+ + "@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u0290"+ + "\bB\nB\fB\u0293\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u029b"+ + "\bB\nB\fB\u029e\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02a6"+ + "\bB\nB\fB\u02a9\tB\u0001B\u0001B\u0003B\u02ad\bB\u0001C\u0001C\u0001D"+ + "\u0001D\u0003D\u02b3\bD\u0001E\u0003E\u02b6\bE\u0001E\u0001E\u0001F\u0003"+ + "F\u02bb\bF\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001"+ + "I\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0005K\u02ce"+ + "\bK\nK\fK\u02d1\tK\u0001L\u0001L\u0001L\u0000\u0005\u0002jpxzM\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\u0098\u0000\t\u0002\u0000"+ + "44hh\u0001\u0000bc\u0002\u000099>>\u0002\u0000AADD\u0001\u0000TU\u0001"+ + "\u0000VX\u0002\u0000@@LL\u0002\u0000MMOS\u0002\u0000\u0013\u0013\u0015"+ + "\u0016\u02f2\u0000\u009a\u0001\u0000\u0000\u0000\u0002\u009d\u0001\u0000"+ + "\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006\u00c9\u0001\u0000"+ + "\u0000\u0000\b\u00cb\u0001\u0000\u0000\u0000\n\u00ce\u0001\u0000\u0000"+ + "\u0000\f\u00d0\u0001\u0000\u0000\u0000\u000e\u00d3\u0001\u0000\u0000\u0000"+ + "\u0010\u00de\u0001\u0000\u0000\u0000\u0012\u00e2\u0001\u0000\u0000\u0000"+ + "\u0014\u00e5\u0001\u0000\u0000\u0000\u0016\u00e8\u0001\u0000\u0000\u0000"+ + "\u0018\u00ff\u0001\u0000\u0000\u0000\u001a\u0101\u0001\u0000\u0000\u0000"+ + "\u001c\u0103\u0001\u0000\u0000\u0000\u001e\u0105\u0001\u0000\u0000\u0000"+ + " \u0107\u0001\u0000\u0000\u0000\"\u0110\u0001\u0000\u0000\u0000$\u0113"+ + "\u0001\u0000\u0000\u0000&\u011b\u0001\u0000\u0000\u0000(\u0123\u0001\u0000"+ + "\u0000\u0000*\u0128\u0001\u0000\u0000\u0000,\u0130\u0001\u0000\u0000\u0000"+ + ".\u0138\u0001\u0000\u0000\u00000\u0140\u0001\u0000\u0000\u00002\u0145"+ + "\u0001\u0000\u0000\u00004\u0149\u0001\u0000\u0000\u00006\u014d\u0001\u0000"+ + "\u0000\u00008\u0152\u0001\u0000\u0000\u0000:\u0154\u0001\u0000\u0000\u0000"+ + "<\u0157\u0001\u0000\u0000\u0000>\u0160\u0001\u0000\u0000\u0000@\u0168"+ + "\u0001\u0000\u0000\u0000B\u016b\u0001\u0000\u0000\u0000D\u016e\u0001\u0000"+ + "\u0000\u0000F\u0177\u0001\u0000\u0000\u0000H\u017b\u0001\u0000\u0000\u0000"+ + "J\u0181\u0001\u0000\u0000\u0000L\u0185\u0001\u0000\u0000\u0000N\u0188"+ + "\u0001\u0000\u0000\u0000P\u0190\u0001\u0000\u0000\u0000R\u0194\u0001\u0000"+ + "\u0000\u0000T\u0197\u0001\u0000\u0000\u0000V\u019b\u0001\u0000\u0000\u0000"+ + "X\u019e\u0001\u0000\u0000\u0000Z\u01b2\u0001\u0000\u0000\u0000\\\u01b6"+ + "\u0001\u0000\u0000\u0000^\u01bb\u0001\u0000\u0000\u0000`\u01c1\u0001\u0000"+ + "\u0000\u0000b\u01ce\u0001\u0000\u0000\u0000d\u01d1\u0001\u0000\u0000\u0000"+ + "f\u01d5\u0001\u0000\u0000\u0000h\u01d9\u0001\u0000\u0000\u0000j\u01dd"+ + "\u0001\u0000\u0000\u0000l\u01ee\u0001\u0000\u0000\u0000n\u01f0\u0001\u0000"+ + "\u0000\u0000p\u020f\u0001\u0000\u0000\u0000r\u022a\u0001\u0000\u0000\u0000"+ + "t\u022c\u0001\u0000\u0000\u0000v\u0239\u0001\u0000\u0000\u0000x\u023f"+ + "\u0001\u0000\u0000\u0000z\u0254\u0001\u0000\u0000\u0000|\u025e\u0001\u0000"+ + "\u0000\u0000~\u0271\u0001\u0000\u0000\u0000\u0080\u0273\u0001\u0000\u0000"+ + "\u0000\u0082\u027e\u0001\u0000\u0000\u0000\u0084\u02ac\u0001\u0000\u0000"+ + "\u0000\u0086\u02ae\u0001\u0000\u0000\u0000\u0088\u02b2\u0001\u0000\u0000"+ + "\u0000\u008a\u02b5\u0001\u0000\u0000\u0000\u008c\u02ba\u0001\u0000\u0000"+ + "\u0000\u008e\u02be\u0001\u0000\u0000\u0000\u0090\u02c0\u0001\u0000\u0000"+ + "\u0000\u0092\u02c2\u0001\u0000\u0000\u0000\u0094\u02c7\u0001\u0000\u0000"+ + "\u0000\u0096\u02c9\u0001\u0000\u0000\u0000\u0098\u02d2\u0001\u0000\u0000"+ + "\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b\u009c\u0005\u0000\u0000"+ + "\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d\u009e\u0006\u0001\uffff"+ + "\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000\u009f\u00a5\u0001\u0000"+ + "\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2\u00053\u0000"+ + "\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001\u0000\u0000"+ + "\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000"+ + "\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001\u0000\u0000"+ + "\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003R)\u0000\u00a9"+ + "\u00af\u0003\u0012\t\u0000\u00aa\u00af\u0003\f\u0006\u0000\u00ab\u00af"+ + "\u0003V+\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad\u00af\u0003\u0014"+ + "\n\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000"+ + "\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000"+ + "\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005\u0001\u0000\u0000"+ + "\u0000\u00b0\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003\b\u0004\u0000"+ + "\u00b2\u00ca\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000\u00b4\u00ca"+ + "\u0003$\u0012\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca\u0003B"+ + "!\u0000\u00b7\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9\u00ca"+ + "\u0003J%\u0000\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000\u00bc"+ + "\u00ca\u0003\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be\u00ca"+ + "\u0003^/\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003\\"+ + ".\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000"+ "\u00c3\u00c4\u0004\u0003\u0005\u0000\u00c4\u00ca\u0003b1\u0000\u00c5\u00c6"+ "\u0004\u0003\u0006\u0000\u00c6\u00ca\u0003d2\u0000\u00c7\u00c8\u0004\u0003"+ "\u0007\u0000\u00c8\u00ca\u0003n7\u0000\u00c9\u00b0\u0001\u0000\u0000\u0000"+ @@ -6960,144 +6950,143 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0000\u0000\u01e2\u01e4\u0003l6\u0000\u01e3\u01e0\u0001\u0000\u0000\u0000"+ "\u01e4\u01e7\u0001\u0000\u0000\u0000\u01e5\u01e3\u0001\u0000\u0000\u0000"+ "\u01e5\u01e6\u0001\u0000\u0000\u0000\u01e6k\u0001\u0000\u0000\u0000\u01e7"+ - "\u01e5\u0001\u0000\u0000\u0000\u01e8\u01f0\u0003\"\u0011\u0000\u01e9\u01f0"+ - "\u0003\b\u0004\u0000\u01ea\u01f0\u0003@ \u0000\u01eb\u01f0\u0003:\u001d"+ - "\u0000\u01ec\u01f0\u0003$\u0012\u0000\u01ed\u01f0\u0003<\u001e\u0000\u01ee"+ - "\u01f0\u0003H$\u0000\u01ef\u01e8\u0001\u0000\u0000\u0000\u01ef\u01e9\u0001"+ - "\u0000\u0000\u0000\u01ef\u01ea\u0001\u0000\u0000\u0000\u01ef\u01eb\u0001"+ - "\u0000\u0000\u0000\u01ef\u01ec\u0001\u0000\u0000\u0000\u01ef\u01ed\u0001"+ - "\u0000\u0000\u0000\u01ef\u01ee\u0001\u0000\u0000\u0000\u01f0m\u0001\u0000"+ - "\u0000\u0000\u01f1\u01f2\u0005\u001c\u0000\u0000\u01f2o\u0001\u0000\u0000"+ - "\u0000\u01f3\u01f4\u00068\uffff\uffff\u0000\u01f4\u01f5\u0005F\u0000\u0000"+ - "\u01f5\u0211\u0003p8\b\u01f6\u0211\u0003v;\u0000\u01f7\u0211\u0003r9\u0000"+ - "\u01f8\u01fa\u0003v;\u0000\u01f9\u01fb\u0005F\u0000\u0000\u01fa\u01f9"+ - "\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000\u01fb\u01fc"+ - "\u0001\u0000\u0000\u0000\u01fc\u01fd\u0005B\u0000\u0000\u01fd\u01fe\u0005"+ - "`\u0000\u0000\u01fe\u0203\u0003v;\u0000\u01ff\u0200\u0005=\u0000\u0000"+ - "\u0200\u0202\u0003v;\u0000\u0201\u01ff\u0001\u0000\u0000\u0000\u0202\u0205"+ - "\u0001\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0203\u0204"+ - "\u0001\u0000\u0000\u0000\u0204\u0206\u0001\u0000\u0000\u0000\u0205\u0203"+ - "\u0001\u0000\u0000\u0000\u0206\u0207\u0005a\u0000\u0000\u0207\u0211\u0001"+ - "\u0000\u0000\u0000\u0208\u0209\u0003v;\u0000\u0209\u020b\u0005C\u0000"+ - "\u0000\u020a\u020c\u0005F\u0000\u0000\u020b\u020a\u0001\u0000\u0000\u0000"+ - "\u020b\u020c\u0001\u0000\u0000\u0000\u020c\u020d\u0001\u0000\u0000\u0000"+ - "\u020d\u020e\u0005G\u0000\u0000\u020e\u0211\u0001\u0000\u0000\u0000\u020f"+ - "\u0211\u0003t:\u0000\u0210\u01f3\u0001\u0000\u0000\u0000\u0210\u01f6\u0001"+ - "\u0000\u0000\u0000\u0210\u01f7\u0001\u0000\u0000\u0000\u0210\u01f8\u0001"+ - "\u0000\u0000\u0000\u0210\u0208\u0001\u0000\u0000\u0000\u0210\u020f\u0001"+ - "\u0000\u0000\u0000\u0211\u021a\u0001\u0000\u0000\u0000\u0212\u0213\n\u0005"+ - "\u0000\u0000\u0213\u0214\u00058\u0000\u0000\u0214\u0219\u0003p8\u0006"+ - "\u0215\u0216\n\u0004\u0000\u0000\u0216\u0217\u0005I\u0000\u0000\u0217"+ - "\u0219\u0003p8\u0005\u0218\u0212\u0001\u0000\u0000\u0000\u0218\u0215\u0001"+ - "\u0000\u0000\u0000\u0219\u021c\u0001\u0000\u0000\u0000\u021a\u0218\u0001"+ - "\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021bq\u0001\u0000"+ - "\u0000\u0000\u021c\u021a\u0001\u0000\u0000\u0000\u021d\u021f\u0003v;\u0000"+ - "\u021e\u0220\u0005F\u0000\u0000\u021f\u021e\u0001\u0000\u0000\u0000\u021f"+ - "\u0220\u0001\u0000\u0000\u0000\u0220\u0221\u0001\u0000\u0000\u0000\u0221"+ - "\u0222\u0005E\u0000\u0000\u0222\u0223\u0003\u008eG\u0000\u0223\u022c\u0001"+ - "\u0000\u0000\u0000\u0224\u0226\u0003v;\u0000\u0225\u0227\u0005F\u0000"+ - "\u0000\u0226\u0225\u0001\u0000\u0000\u0000\u0226\u0227\u0001\u0000\u0000"+ - "\u0000\u0227\u0228\u0001\u0000\u0000\u0000\u0228\u0229\u0005K\u0000\u0000"+ - "\u0229\u022a\u0003\u008eG\u0000\u022a\u022c\u0001\u0000\u0000\u0000\u022b"+ - "\u021d\u0001\u0000\u0000\u0000\u022b\u0224\u0001\u0000\u0000\u0000\u022c"+ - "s\u0001\u0000\u0000\u0000\u022d\u0230\u0003*\u0015\u0000\u022e\u022f\u0005"+ - ";\u0000\u0000\u022f\u0231\u0003\n\u0005\u0000\u0230\u022e\u0001\u0000"+ - "\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231\u0232\u0001\u0000"+ - "\u0000\u0000\u0232\u0233\u0005<\u0000\u0000\u0233\u0234\u0003\u0084B\u0000"+ - "\u0234u\u0001\u0000\u0000\u0000\u0235\u023b\u0003x<\u0000\u0236\u0237"+ - "\u0003x<\u0000\u0237\u0238\u0003\u0090H\u0000\u0238\u0239\u0003x<\u0000"+ - "\u0239\u023b\u0001\u0000\u0000\u0000\u023a\u0235\u0001\u0000\u0000\u0000"+ - "\u023a\u0236\u0001\u0000\u0000\u0000\u023bw\u0001\u0000\u0000\u0000\u023c"+ - "\u023d\u0006<\uffff\uffff\u0000\u023d\u0241\u0003z=\u0000\u023e\u023f"+ - "\u0007\u0004\u0000\u0000\u023f\u0241\u0003x<\u0003\u0240\u023c\u0001\u0000"+ - "\u0000\u0000\u0240\u023e\u0001\u0000\u0000\u0000\u0241\u024a\u0001\u0000"+ - "\u0000\u0000\u0242\u0243\n\u0002\u0000\u0000\u0243\u0244\u0007\u0005\u0000"+ - "\u0000\u0244\u0249\u0003x<\u0003\u0245\u0246\n\u0001\u0000\u0000\u0246"+ - "\u0247\u0007\u0004\u0000\u0000\u0247\u0249\u0003x<\u0002\u0248\u0242\u0001"+ - "\u0000\u0000\u0000\u0248\u0245\u0001\u0000\u0000\u0000\u0249\u024c\u0001"+ - "\u0000\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024a\u024b\u0001"+ - "\u0000\u0000\u0000\u024by\u0001\u0000\u0000\u0000\u024c\u024a\u0001\u0000"+ - "\u0000\u0000\u024d\u024e\u0006=\uffff\uffff\u0000\u024e\u0256\u0003\u0084"+ - "B\u0000\u024f\u0256\u0003*\u0015\u0000\u0250\u0256\u0003|>\u0000\u0251"+ - "\u0252\u0005`\u0000\u0000\u0252\u0253\u0003p8\u0000\u0253\u0254\u0005"+ - "a\u0000\u0000\u0254\u0256\u0001\u0000\u0000\u0000\u0255\u024d\u0001\u0000"+ - "\u0000\u0000\u0255\u024f\u0001\u0000\u0000\u0000\u0255\u0250\u0001\u0000"+ - "\u0000\u0000\u0255\u0251\u0001\u0000\u0000\u0000\u0256\u025c\u0001\u0000"+ - "\u0000\u0000\u0257\u0258\n\u0001\u0000\u0000\u0258\u0259\u0005;\u0000"+ - "\u0000\u0259\u025b\u0003\n\u0005\u0000\u025a\u0257\u0001\u0000\u0000\u0000"+ - "\u025b\u025e\u0001\u0000\u0000\u0000\u025c\u025a\u0001\u0000\u0000\u0000"+ - "\u025c\u025d\u0001\u0000\u0000\u0000\u025d{\u0001\u0000\u0000\u0000\u025e"+ - "\u025c\u0001\u0000\u0000\u0000\u025f\u0260\u0003~?\u0000\u0260\u026e\u0005"+ - "`\u0000\u0000\u0261\u026f\u0005V\u0000\u0000\u0262\u0267\u0003p8\u0000"+ - "\u0263\u0264\u0005=\u0000\u0000\u0264\u0266\u0003p8\u0000\u0265\u0263"+ - "\u0001\u0000\u0000\u0000\u0266\u0269\u0001\u0000\u0000\u0000\u0267\u0265"+ - "\u0001\u0000\u0000\u0000\u0267\u0268\u0001\u0000\u0000\u0000\u0268\u026c"+ - "\u0001\u0000\u0000\u0000\u0269\u0267\u0001\u0000\u0000\u0000\u026a\u026b"+ - "\u0005=\u0000\u0000\u026b\u026d\u0003\u0080@\u0000\u026c\u026a\u0001\u0000"+ - "\u0000\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u026f\u0001\u0000"+ - "\u0000\u0000\u026e\u0261\u0001\u0000\u0000\u0000\u026e\u0262\u0001\u0000"+ - "\u0000\u0000\u026e\u026f\u0001\u0000\u0000\u0000\u026f\u0270\u0001\u0000"+ - "\u0000\u0000\u0270\u0271\u0005a\u0000\u0000\u0271}\u0001\u0000\u0000\u0000"+ - "\u0272\u0273\u00038\u001c\u0000\u0273\u007f\u0001\u0000\u0000\u0000\u0274"+ - "\u0275\u0005Y\u0000\u0000\u0275\u027a\u0003\u0082A\u0000\u0276\u0277\u0005"+ - "=\u0000\u0000\u0277\u0279\u0003\u0082A\u0000\u0278\u0276\u0001\u0000\u0000"+ - "\u0000\u0279\u027c\u0001\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000"+ - "\u0000\u027a\u027b\u0001\u0000\u0000\u0000\u027b\u027d\u0001\u0000\u0000"+ - "\u0000\u027c\u027a\u0001\u0000\u0000\u0000\u027d\u027e\u0005Z\u0000\u0000"+ - "\u027e\u0081\u0001\u0000\u0000\u0000\u027f\u0280\u0003\u008eG\u0000\u0280"+ - "\u0281\u0005<\u0000\u0000\u0281\u0282\u0003\u0084B\u0000\u0282\u0083\u0001"+ - "\u0000\u0000\u0000\u0283\u02ae\u0005G\u0000\u0000\u0284\u0285\u0003\u008c"+ - "F\u0000\u0285\u0286\u0005b\u0000\u0000\u0286\u02ae\u0001\u0000\u0000\u0000"+ - "\u0287\u02ae\u0003\u008aE\u0000\u0288\u02ae\u0003\u008cF\u0000\u0289\u02ae"+ - "\u0003\u0086C\u0000\u028a\u02ae\u00034\u001a\u0000\u028b\u02ae\u0003\u008e"+ - "G\u0000\u028c\u028d\u0005^\u0000\u0000\u028d\u0292\u0003\u0088D\u0000"+ - "\u028e\u028f\u0005=\u0000\u0000\u028f\u0291\u0003\u0088D\u0000\u0290\u028e"+ - "\u0001\u0000\u0000\u0000\u0291\u0294\u0001\u0000\u0000\u0000\u0292\u0290"+ - "\u0001\u0000\u0000\u0000\u0292\u0293\u0001\u0000\u0000\u0000\u0293\u0295"+ - "\u0001\u0000\u0000\u0000\u0294\u0292\u0001\u0000\u0000\u0000\u0295\u0296"+ - "\u0005_\u0000\u0000\u0296\u02ae\u0001\u0000\u0000\u0000\u0297\u0298\u0005"+ - "^\u0000\u0000\u0298\u029d\u0003\u0086C\u0000\u0299\u029a\u0005=\u0000"+ - "\u0000\u029a\u029c\u0003\u0086C\u0000\u029b\u0299\u0001\u0000\u0000\u0000"+ - "\u029c\u029f\u0001\u0000\u0000\u0000\u029d\u029b\u0001\u0000\u0000\u0000"+ - "\u029d\u029e\u0001\u0000\u0000\u0000\u029e\u02a0\u0001\u0000\u0000\u0000"+ - "\u029f\u029d\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005_\u0000\u0000\u02a1"+ - "\u02ae\u0001\u0000\u0000\u0000\u02a2\u02a3\u0005^\u0000\u0000\u02a3\u02a8"+ - "\u0003\u008eG\u0000\u02a4\u02a5\u0005=\u0000\u0000\u02a5\u02a7\u0003\u008e"+ - "G\u0000\u02a6\u02a4\u0001\u0000\u0000\u0000\u02a7\u02aa\u0001\u0000\u0000"+ - "\u0000\u02a8\u02a6\u0001\u0000\u0000\u0000\u02a8\u02a9\u0001\u0000\u0000"+ - "\u0000\u02a9\u02ab\u0001\u0000\u0000\u0000\u02aa\u02a8\u0001\u0000\u0000"+ - "\u0000\u02ab\u02ac\u0005_\u0000\u0000\u02ac\u02ae\u0001\u0000\u0000\u0000"+ - "\u02ad\u0283\u0001\u0000\u0000\u0000\u02ad\u0284\u0001\u0000\u0000\u0000"+ - "\u02ad\u0287\u0001\u0000\u0000\u0000\u02ad\u0288\u0001\u0000\u0000\u0000"+ - "\u02ad\u0289\u0001\u0000\u0000\u0000\u02ad\u028a\u0001\u0000\u0000\u0000"+ - "\u02ad\u028b\u0001\u0000\u0000\u0000\u02ad\u028c\u0001\u0000\u0000\u0000"+ - "\u02ad\u0297\u0001\u0000\u0000\u0000\u02ad\u02a2\u0001\u0000\u0000\u0000"+ - "\u02ae\u0085\u0001\u0000\u0000\u0000\u02af\u02b0\u0007\u0006\u0000\u0000"+ - "\u02b0\u0087\u0001\u0000\u0000\u0000\u02b1\u02b4\u0003\u008aE\u0000\u02b2"+ - "\u02b4\u0003\u008cF\u0000\u02b3\u02b1\u0001\u0000\u0000\u0000\u02b3\u02b2"+ - "\u0001\u0000\u0000\u0000\u02b4\u0089\u0001\u0000\u0000\u0000\u02b5\u02b7"+ - "\u0007\u0004\u0000\u0000\u02b6\u02b5\u0001\u0000\u0000\u0000\u02b6\u02b7"+ - "\u0001\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02b9"+ - "\u00056\u0000\u0000\u02b9\u008b\u0001\u0000\u0000\u0000\u02ba\u02bc\u0007"+ - "\u0004\u0000\u0000\u02bb\u02ba\u0001\u0000\u0000\u0000\u02bb\u02bc\u0001"+ - "\u0000\u0000\u0000\u02bc\u02bd\u0001\u0000\u0000\u0000\u02bd\u02be\u0005"+ - "5\u0000\u0000\u02be\u008d\u0001\u0000\u0000\u0000\u02bf\u02c0\u00054\u0000"+ - "\u0000\u02c0\u008f\u0001\u0000\u0000\u0000\u02c1\u02c2\u0007\u0007\u0000"+ - "\u0000\u02c2\u0091\u0001\u0000\u0000\u0000\u02c3\u02c4\u0007\b\u0000\u0000"+ - "\u02c4\u02c5\u0005o\u0000\u0000\u02c5\u02c6\u0003\u0094J\u0000\u02c6\u02c7"+ - "\u0003\u0096K\u0000\u02c7\u0093\u0001\u0000\u0000\u0000\u02c8\u02c9\u0003"+ - "\u0018\f\u0000\u02c9\u0095\u0001\u0000\u0000\u0000\u02ca\u02cb\u0005#"+ - "\u0000\u0000\u02cb\u02d0\u0003\u0098L\u0000\u02cc\u02cd\u0005=\u0000\u0000"+ - "\u02cd\u02cf\u0003\u0098L\u0000\u02ce\u02cc\u0001\u0000\u0000\u0000\u02cf"+ - "\u02d2\u0001\u0000\u0000\u0000\u02d0\u02ce\u0001\u0000\u0000\u0000\u02d0"+ - "\u02d1\u0001\u0000\u0000\u0000\u02d1\u0097\u0001\u0000\u0000\u0000\u02d2"+ - "\u02d0\u0001\u0000\u0000\u0000\u02d3\u02d4\u0003v;\u0000\u02d4\u0099\u0001"+ - "\u0000\u0000\u0000B\u00a5\u00ae\u00c9\u00d8\u00de\u00ed\u00f1\u00f6\u00fd"+ - "\u00ff\u010d\u0115\u0119\u0120\u0126\u012d\u0135\u013d\u0145\u0149\u014d"+ - "\u0152\u015d\u0162\u0166\u0174\u017f\u018d\u01a2\u01aa\u01ad\u01b2\u01bf"+ - "\u01c5\u01cc\u01d7\u01e5\u01ef\u01fa\u0203\u020b\u0210\u0218\u021a\u021f"+ - "\u0226\u022b\u0230\u023a\u0240\u0248\u024a\u0255\u025c\u0267\u026c\u026e"+ - "\u027a\u0292\u029d\u02a8\u02ad\u02b3\u02b6\u02bb\u02d0"; + "\u01e5\u0001\u0000\u0000\u0000\u01e8\u01ef\u0003\"\u0011\u0000\u01e9\u01ef"+ + "\u0003\b\u0004\u0000\u01ea\u01ef\u0003:\u001d\u0000\u01eb\u01ef\u0003"+ + "$\u0012\u0000\u01ec\u01ef\u0003<\u001e\u0000\u01ed\u01ef\u0003H$\u0000"+ + "\u01ee\u01e8\u0001\u0000\u0000\u0000\u01ee\u01e9\u0001\u0000\u0000\u0000"+ + "\u01ee\u01ea\u0001\u0000\u0000\u0000\u01ee\u01eb\u0001\u0000\u0000\u0000"+ + "\u01ee\u01ec\u0001\u0000\u0000\u0000\u01ee\u01ed\u0001\u0000\u0000\u0000"+ + "\u01efm\u0001\u0000\u0000\u0000\u01f0\u01f1\u0005\u001c\u0000\u0000\u01f1"+ + "o\u0001\u0000\u0000\u0000\u01f2\u01f3\u00068\uffff\uffff\u0000\u01f3\u01f4"+ + "\u0005F\u0000\u0000\u01f4\u0210\u0003p8\b\u01f5\u0210\u0003v;\u0000\u01f6"+ + "\u0210\u0003r9\u0000\u01f7\u01f9\u0003v;\u0000\u01f8\u01fa\u0005F\u0000"+ + "\u0000\u01f9\u01f8\u0001\u0000\u0000\u0000\u01f9\u01fa\u0001\u0000\u0000"+ + "\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005B\u0000\u0000"+ + "\u01fc\u01fd\u0005`\u0000\u0000\u01fd\u0202\u0003v;\u0000\u01fe\u01ff"+ + "\u0005=\u0000\u0000\u01ff\u0201\u0003v;\u0000\u0200\u01fe\u0001\u0000"+ + "\u0000\u0000\u0201\u0204\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000"+ + "\u0000\u0000\u0202\u0203\u0001\u0000\u0000\u0000\u0203\u0205\u0001\u0000"+ + "\u0000\u0000\u0204\u0202\u0001\u0000\u0000\u0000\u0205\u0206\u0005a\u0000"+ + "\u0000\u0206\u0210\u0001\u0000\u0000\u0000\u0207\u0208\u0003v;\u0000\u0208"+ + "\u020a\u0005C\u0000\u0000\u0209\u020b\u0005F\u0000\u0000\u020a\u0209\u0001"+ + "\u0000\u0000\u0000\u020a\u020b\u0001\u0000\u0000\u0000\u020b\u020c\u0001"+ + "\u0000\u0000\u0000\u020c\u020d\u0005G\u0000\u0000\u020d\u0210\u0001\u0000"+ + "\u0000\u0000\u020e\u0210\u0003t:\u0000\u020f\u01f2\u0001\u0000\u0000\u0000"+ + "\u020f\u01f5\u0001\u0000\u0000\u0000\u020f\u01f6\u0001\u0000\u0000\u0000"+ + "\u020f\u01f7\u0001\u0000\u0000\u0000\u020f\u0207\u0001\u0000\u0000\u0000"+ + "\u020f\u020e\u0001\u0000\u0000\u0000\u0210\u0219\u0001\u0000\u0000\u0000"+ + "\u0211\u0212\n\u0005\u0000\u0000\u0212\u0213\u00058\u0000\u0000\u0213"+ + "\u0218\u0003p8\u0006\u0214\u0215\n\u0004\u0000\u0000\u0215\u0216\u0005"+ + "I\u0000\u0000\u0216\u0218\u0003p8\u0005\u0217\u0211\u0001\u0000\u0000"+ + "\u0000\u0217\u0214\u0001\u0000\u0000\u0000\u0218\u021b\u0001\u0000\u0000"+ + "\u0000\u0219\u0217\u0001\u0000\u0000\u0000\u0219\u021a\u0001\u0000\u0000"+ + "\u0000\u021aq\u0001\u0000\u0000\u0000\u021b\u0219\u0001\u0000\u0000\u0000"+ + "\u021c\u021e\u0003v;\u0000\u021d\u021f\u0005F\u0000\u0000\u021e\u021d"+ + "\u0001\u0000\u0000\u0000\u021e\u021f\u0001\u0000\u0000\u0000\u021f\u0220"+ + "\u0001\u0000\u0000\u0000\u0220\u0221\u0005E\u0000\u0000\u0221\u0222\u0003"+ + "\u008eG\u0000\u0222\u022b\u0001\u0000\u0000\u0000\u0223\u0225\u0003v;"+ + "\u0000\u0224\u0226\u0005F\u0000\u0000\u0225\u0224\u0001\u0000\u0000\u0000"+ + "\u0225\u0226\u0001\u0000\u0000\u0000\u0226\u0227\u0001\u0000\u0000\u0000"+ + "\u0227\u0228\u0005K\u0000\u0000\u0228\u0229\u0003\u008eG\u0000\u0229\u022b"+ + "\u0001\u0000\u0000\u0000\u022a\u021c\u0001\u0000\u0000\u0000\u022a\u0223"+ + "\u0001\u0000\u0000\u0000\u022bs\u0001\u0000\u0000\u0000\u022c\u022f\u0003"+ + "*\u0015\u0000\u022d\u022e\u0005;\u0000\u0000\u022e\u0230\u0003\n\u0005"+ + "\u0000\u022f\u022d\u0001\u0000\u0000\u0000\u022f\u0230\u0001\u0000\u0000"+ + "\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231\u0232\u0005<\u0000\u0000"+ + "\u0232\u0233\u0003\u0084B\u0000\u0233u\u0001\u0000\u0000\u0000\u0234\u023a"+ + "\u0003x<\u0000\u0235\u0236\u0003x<\u0000\u0236\u0237\u0003\u0090H\u0000"+ + "\u0237\u0238\u0003x<\u0000\u0238\u023a\u0001\u0000\u0000\u0000\u0239\u0234"+ + "\u0001\u0000\u0000\u0000\u0239\u0235\u0001\u0000\u0000\u0000\u023aw\u0001"+ + "\u0000\u0000\u0000\u023b\u023c\u0006<\uffff\uffff\u0000\u023c\u0240\u0003"+ + "z=\u0000\u023d\u023e\u0007\u0004\u0000\u0000\u023e\u0240\u0003x<\u0003"+ + "\u023f\u023b\u0001\u0000\u0000\u0000\u023f\u023d\u0001\u0000\u0000\u0000"+ + "\u0240\u0249\u0001\u0000\u0000\u0000\u0241\u0242\n\u0002\u0000\u0000\u0242"+ + "\u0243\u0007\u0005\u0000\u0000\u0243\u0248\u0003x<\u0003\u0244\u0245\n"+ + "\u0001\u0000\u0000\u0245\u0246\u0007\u0004\u0000\u0000\u0246\u0248\u0003"+ + "x<\u0002\u0247\u0241\u0001\u0000\u0000\u0000\u0247\u0244\u0001\u0000\u0000"+ + "\u0000\u0248\u024b\u0001\u0000\u0000\u0000\u0249\u0247\u0001\u0000\u0000"+ + "\u0000\u0249\u024a\u0001\u0000\u0000\u0000\u024ay\u0001\u0000\u0000\u0000"+ + "\u024b\u0249\u0001\u0000\u0000\u0000\u024c\u024d\u0006=\uffff\uffff\u0000"+ + "\u024d\u0255\u0003\u0084B\u0000\u024e\u0255\u0003*\u0015\u0000\u024f\u0255"+ + "\u0003|>\u0000\u0250\u0251\u0005`\u0000\u0000\u0251\u0252\u0003p8\u0000"+ + "\u0252\u0253\u0005a\u0000\u0000\u0253\u0255\u0001\u0000\u0000\u0000\u0254"+ + "\u024c\u0001\u0000\u0000\u0000\u0254\u024e\u0001\u0000\u0000\u0000\u0254"+ + "\u024f\u0001\u0000\u0000\u0000\u0254\u0250\u0001\u0000\u0000\u0000\u0255"+ + "\u025b\u0001\u0000\u0000\u0000\u0256\u0257\n\u0001\u0000\u0000\u0257\u0258"+ + "\u0005;\u0000\u0000\u0258\u025a\u0003\n\u0005\u0000\u0259\u0256\u0001"+ + "\u0000\u0000\u0000\u025a\u025d\u0001\u0000\u0000\u0000\u025b\u0259\u0001"+ + "\u0000\u0000\u0000\u025b\u025c\u0001\u0000\u0000\u0000\u025c{\u0001\u0000"+ + "\u0000\u0000\u025d\u025b\u0001\u0000\u0000\u0000\u025e\u025f\u0003~?\u0000"+ + "\u025f\u026d\u0005`\u0000\u0000\u0260\u026e\u0005V\u0000\u0000\u0261\u0266"+ + "\u0003p8\u0000\u0262\u0263\u0005=\u0000\u0000\u0263\u0265\u0003p8\u0000"+ + "\u0264\u0262\u0001\u0000\u0000\u0000\u0265\u0268\u0001\u0000\u0000\u0000"+ + "\u0266\u0264\u0001\u0000\u0000\u0000\u0266\u0267\u0001\u0000\u0000\u0000"+ + "\u0267\u026b\u0001\u0000\u0000\u0000\u0268\u0266\u0001\u0000\u0000\u0000"+ + "\u0269\u026a\u0005=\u0000\u0000\u026a\u026c\u0003\u0080@\u0000\u026b\u0269"+ + "\u0001\u0000\u0000\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u026e"+ + "\u0001\u0000\u0000\u0000\u026d\u0260\u0001\u0000\u0000\u0000\u026d\u0261"+ + "\u0001\u0000\u0000\u0000\u026d\u026e\u0001\u0000\u0000\u0000\u026e\u026f"+ + "\u0001\u0000\u0000\u0000\u026f\u0270\u0005a\u0000\u0000\u0270}\u0001\u0000"+ + "\u0000\u0000\u0271\u0272\u00038\u001c\u0000\u0272\u007f\u0001\u0000\u0000"+ + "\u0000\u0273\u0274\u0005Y\u0000\u0000\u0274\u0279\u0003\u0082A\u0000\u0275"+ + "\u0276\u0005=\u0000\u0000\u0276\u0278\u0003\u0082A\u0000\u0277\u0275\u0001"+ + "\u0000\u0000\u0000\u0278\u027b\u0001\u0000\u0000\u0000\u0279\u0277\u0001"+ + "\u0000\u0000\u0000\u0279\u027a\u0001\u0000\u0000\u0000\u027a\u027c\u0001"+ + "\u0000\u0000\u0000\u027b\u0279\u0001\u0000\u0000\u0000\u027c\u027d\u0005"+ + "Z\u0000\u0000\u027d\u0081\u0001\u0000\u0000\u0000\u027e\u027f\u0003\u008e"+ + "G\u0000\u027f\u0280\u0005<\u0000\u0000\u0280\u0281\u0003\u0084B\u0000"+ + "\u0281\u0083\u0001\u0000\u0000\u0000\u0282\u02ad\u0005G\u0000\u0000\u0283"+ + "\u0284\u0003\u008cF\u0000\u0284\u0285\u0005b\u0000\u0000\u0285\u02ad\u0001"+ + "\u0000\u0000\u0000\u0286\u02ad\u0003\u008aE\u0000\u0287\u02ad\u0003\u008c"+ + "F\u0000\u0288\u02ad\u0003\u0086C\u0000\u0289\u02ad\u00034\u001a\u0000"+ + "\u028a\u02ad\u0003\u008eG\u0000\u028b\u028c\u0005^\u0000\u0000\u028c\u0291"+ + "\u0003\u0088D\u0000\u028d\u028e\u0005=\u0000\u0000\u028e\u0290\u0003\u0088"+ + "D\u0000\u028f\u028d\u0001\u0000\u0000\u0000\u0290\u0293\u0001\u0000\u0000"+ + "\u0000\u0291\u028f\u0001\u0000\u0000\u0000\u0291\u0292\u0001\u0000\u0000"+ + "\u0000\u0292\u0294\u0001\u0000\u0000\u0000\u0293\u0291\u0001\u0000\u0000"+ + "\u0000\u0294\u0295\u0005_\u0000\u0000\u0295\u02ad\u0001\u0000\u0000\u0000"+ + "\u0296\u0297\u0005^\u0000\u0000\u0297\u029c\u0003\u0086C\u0000\u0298\u0299"+ + "\u0005=\u0000\u0000\u0299\u029b\u0003\u0086C\u0000\u029a\u0298\u0001\u0000"+ + "\u0000\u0000\u029b\u029e\u0001\u0000\u0000\u0000\u029c\u029a\u0001\u0000"+ + "\u0000\u0000\u029c\u029d\u0001\u0000\u0000\u0000\u029d\u029f\u0001\u0000"+ + "\u0000\u0000\u029e\u029c\u0001\u0000\u0000\u0000\u029f\u02a0\u0005_\u0000"+ + "\u0000\u02a0\u02ad\u0001\u0000\u0000\u0000\u02a1\u02a2\u0005^\u0000\u0000"+ + "\u02a2\u02a7\u0003\u008eG\u0000\u02a3\u02a4\u0005=\u0000\u0000\u02a4\u02a6"+ + "\u0003\u008eG\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\u02aa\u0001\u0000\u0000\u0000\u02a9\u02a7\u0001"+ + "\u0000\u0000\u0000\u02aa\u02ab\u0005_\u0000\u0000\u02ab\u02ad\u0001\u0000"+ + "\u0000\u0000\u02ac\u0282\u0001\u0000\u0000\u0000\u02ac\u0283\u0001\u0000"+ + "\u0000\u0000\u02ac\u0286\u0001\u0000\u0000\u0000\u02ac\u0287\u0001\u0000"+ + "\u0000\u0000\u02ac\u0288\u0001\u0000\u0000\u0000\u02ac\u0289\u0001\u0000"+ + "\u0000\u0000\u02ac\u028a\u0001\u0000\u0000\u0000\u02ac\u028b\u0001\u0000"+ + "\u0000\u0000\u02ac\u0296\u0001\u0000\u0000\u0000\u02ac\u02a1\u0001\u0000"+ + "\u0000\u0000\u02ad\u0085\u0001\u0000\u0000\u0000\u02ae\u02af\u0007\u0006"+ + "\u0000\u0000\u02af\u0087\u0001\u0000\u0000\u0000\u02b0\u02b3\u0003\u008a"+ + "E\u0000\u02b1\u02b3\u0003\u008cF\u0000\u02b2\u02b0\u0001\u0000\u0000\u0000"+ + "\u02b2\u02b1\u0001\u0000\u0000\u0000\u02b3\u0089\u0001\u0000\u0000\u0000"+ + "\u02b4\u02b6\u0007\u0004\u0000\u0000\u02b5\u02b4\u0001\u0000\u0000\u0000"+ + "\u02b5\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000"+ + "\u02b7\u02b8\u00056\u0000\u0000\u02b8\u008b\u0001\u0000\u0000\u0000\u02b9"+ + "\u02bb\u0007\u0004\u0000\u0000\u02ba\u02b9\u0001\u0000\u0000\u0000\u02ba"+ + "\u02bb\u0001\u0000\u0000\u0000\u02bb\u02bc\u0001\u0000\u0000\u0000\u02bc"+ + "\u02bd\u00055\u0000\u0000\u02bd\u008d\u0001\u0000\u0000\u0000\u02be\u02bf"+ + "\u00054\u0000\u0000\u02bf\u008f\u0001\u0000\u0000\u0000\u02c0\u02c1\u0007"+ + "\u0007\u0000\u0000\u02c1\u0091\u0001\u0000\u0000\u0000\u02c2\u02c3\u0007"+ + "\b\u0000\u0000\u02c3\u02c4\u0005o\u0000\u0000\u02c4\u02c5\u0003\u0094"+ + "J\u0000\u02c5\u02c6\u0003\u0096K\u0000\u02c6\u0093\u0001\u0000\u0000\u0000"+ + "\u02c7\u02c8\u0003\u0018\f\u0000\u02c8\u0095\u0001\u0000\u0000\u0000\u02c9"+ + "\u02ca\u0005#\u0000\u0000\u02ca\u02cf\u0003\u0098L\u0000\u02cb\u02cc\u0005"+ + "=\u0000\u0000\u02cc\u02ce\u0003\u0098L\u0000\u02cd\u02cb\u0001\u0000\u0000"+ + "\u0000\u02ce\u02d1\u0001\u0000\u0000\u0000\u02cf\u02cd\u0001\u0000\u0000"+ + "\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000\u02d0\u0097\u0001\u0000\u0000"+ + "\u0000\u02d1\u02cf\u0001\u0000\u0000\u0000\u02d2\u02d3\u0003v;\u0000\u02d3"+ + "\u0099\u0001\u0000\u0000\u0000B\u00a5\u00ae\u00c9\u00d8\u00de\u00ed\u00f1"+ + "\u00f6\u00fd\u00ff\u010d\u0115\u0119\u0120\u0126\u012d\u0135\u013d\u0145"+ + "\u0149\u014d\u0152\u015d\u0162\u0166\u0174\u017f\u018d\u01a2\u01aa\u01ad"+ + "\u01b2\u01bf\u01c5\u01cc\u01d7\u01e5\u01ee\u01f9\u0202\u020a\u020f\u0217"+ + "\u0219\u021e\u0225\u022a\u022f\u0239\u023f\u0247\u0249\u0254\u025b\u0266"+ + "\u026b\u026d\u0279\u0291\u029c\u02a7\u02ac\u02b2\u02b5\u02ba\u02cf"; 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/plan/logical/Fork.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java index 6f9af93f19fe8..8720e6ce4b951 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Fork.java @@ -65,16 +65,16 @@ public boolean expressionsResolved() { return false; } - if (children().stream().anyMatch(p -> p.outputSet().names().contains(""))) { + if (children().stream().anyMatch(p -> p.outputSet().names().contains(Analyzer.NO_FIELDS_NAME))) { return false; } // Here we check if all sub plans output the same column names. // If they don't then FORK was not resolved. - List firstOutputNames = children().getFirst().output().stream().map(Attribute::name).collect(Collectors.toList()); + List firstOutputNames = children().getFirst().output().stream().map(Attribute::name).toList(); Holder resolved = new Holder<>(true); children().stream().skip(1).forEach(subPlan -> { - List names = subPlan.output().stream().map(Attribute::name).collect(Collectors.toList()); + List names = subPlan.output().stream().map(Attribute::name).toList(); if (names.equals(firstOutputNames) == false) { resolved.set(false); } From f2fa8c0a0e798b5d79e2cfb9516b163c9e3ec01a Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Wed, 9 Apr 2025 20:37:17 +0200 Subject: [PATCH 7/8] address review comments --- .../xpack/esql/analysis/Analyzer.java | 14 ++++---------- .../xpack/esql/analysis/AnalyzerTests.java | 6 +++--- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index 26d70cbf9484a..046b9e9a87805 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -737,10 +737,7 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { } } - List aliases = missing.stream() - .map(attr -> new Alias(source, attr.name(), Literal.of(attr, null))) - .collect(Collectors.toList()); - ; + List aliases = missing.stream().map(attr -> new Alias(source, attr.name(), Literal.of(attr, null))).toList(); // add the missing columns if (aliases.size() > 0) { @@ -748,10 +745,11 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { changed = true; } - List subPlanColumns = logicalPlan.output().stream().map(Attribute::name).collect(Collectors.toList()); + List subPlanColumns = logicalPlan.output().stream().map(Attribute::name).toList(); // We need to add an explicit Keep even if the outputs align // This is because at the moment the sub plans are executed and optimized separately and the output might change // during optimizations. Once we add streaming we might not need to add a Keep when the outputs already align. + // Note that until we add explicit support for KEEP in FORK branches, this condition will always be true. if (logicalPlan instanceof Keep == false || subPlanColumns.equals(forkColumns) == false) { changed = true; List newOutput = new ArrayList<>(); @@ -768,11 +766,7 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { newSubPlans.add(logicalPlan); } - if (changed == false) { - return fork; - } - - return new Fork(fork.source(), newSubPlans); + return changed ? new Fork(fork.source(), newSubPlans) : fork; } private LogicalPlan resolveRerank(Rerank rerank, List childrenOutput) { diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 13d594a0a34d0..b6a8a744ae26e 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3113,7 +3113,7 @@ public void testForkBranchesWithDifferentSchemas() { limit = as(subPlans.get(0), Limit.class); assertThat(as(limit.limit(), Literal.class).value(), equalTo(MAX_LIMIT)); Keep keep = as(limit.child(), Keep.class); - List keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).collect(Collectors.toList()); + List keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).toList(); assertThat(keptColumns, equalTo(expectedOutput)); Eval eval = as(keep.child(), Eval.class); @@ -3144,7 +3144,7 @@ public void testForkBranchesWithDifferentSchemas() { limit = as(subPlans.get(1), Limit.class); assertThat(as(limit.limit(), Literal.class).value(), equalTo(DEFAULT_LIMIT)); keep = as(limit.child(), Keep.class); - keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).collect(Collectors.toList()); + keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).toList(); assertThat(keptColumns, equalTo(expectedOutput)); eval = as(keep.child(), Eval.class); assertEquals(eval.fields().size(), 2); @@ -3174,7 +3174,7 @@ public void testForkBranchesWithDifferentSchemas() { limit = as(subPlans.get(2), Limit.class); assertThat(as(limit.limit(), Literal.class).value(), equalTo(DEFAULT_LIMIT)); keep = as(limit.child(), Keep.class); - keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).collect(Collectors.toList()); + keptColumns = keep.expressions().stream().map(exp -> as(exp, Attribute.class).name()).toList(); assertThat(keptColumns, equalTo(expectedOutput)); eval = as(keep.child(), Eval.class); assertEquals(eval.fields().size(), 2); From 2c1056a5199008b0c6b94b7cd4b1d9a356e247b0 Mon Sep 17 00:00:00 2001 From: Ioana Tagirta Date: Thu, 10 Apr 2025 10:35:36 +0200 Subject: [PATCH 8/8] Fix serverless failure --- .../esql/qa/testFixtures/src/main/resources/fork.csv-spec | 8 ++++---- .../elasticsearch/xpack/esql/action/EsqlCapabilities.java | 7 ++++++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec index 44a3e877f65ee..2dcbc3f48cabe 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fork.csv-spec @@ -114,7 +114,7 @@ fork2 | 6.093784261960139E18 | 2 | all we have to decide is w ; forkWithEvals -required_capability: fork +required_capability: fork_v2 FROM employees | FORK (WHERE emp_no == 10048 OR emp_no == 10081 | EVAL x = "abc" | EVAL y = 1) @@ -131,7 +131,7 @@ fork2 | 10087 | def | null | 2 ; forkWithStats -required_capability: fork +required_capability: fork_v2 FROM employees | FORK (WHERE emp_no == 10048 OR emp_no == 10081) @@ -152,7 +152,7 @@ fork4 | null | 100 | 10001 | null ; forkWithDissect -required_capability: fork +required_capability: fork_v2 FROM employees | WHERE emp_no == 10048 OR emp_no == 10081 @@ -172,7 +172,7 @@ fork2 | 10081 | Rosen | 10081 | null | Zhongwei ; forkWithMixOfCommands -required_capability: fork +required_capability: fork_v2 FROM employees | WHERE emp_no == 10048 OR emp_no == 10081 diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java index b089b42a41ea2..ba9fd985a7877 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java @@ -964,7 +964,12 @@ public enum Cap { /** * Support max_over_time aggregation */ - MAX_OVER_TIME(Build.current().isSnapshot()); + MAX_OVER_TIME(Build.current().isSnapshot()), + + /** + * Support STATS/EVAL/DISSECT in Fork branches + */ + FORK_V2(Build.current().isSnapshot()); private final boolean enabled;