From c9010a9c3ef89e8a151a3c07b09114e51cf99122 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Tue, 11 Nov 2025 06:16:15 -0800
Subject: [PATCH 01/15] Parser and ExpressionBuilder changes for like
parameters
---
.../esql/src/main/antlr/parser/Expression.g4 | 7 +-
.../xpack/esql/parser/ExpressionBuilder.java | 64 ++++++++++++++-----
2 files changed, 54 insertions(+), 17 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4
index 135a104b89139..c6d6e70d6bd7b 100644
--- a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4
+++ b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4
@@ -18,12 +18,17 @@ booleanExpression
;
regexBooleanExpression
- : valueExpression (NOT)? LIKE string #likeExpression
+ : valueExpression (NOT)? LIKE stringOrParameter #likeExpression
| valueExpression (NOT)? RLIKE string #rlikeExpression
| valueExpression (NOT)? LIKE LP string (COMMA string )* RP #likeListExpression
| valueExpression (NOT)? RLIKE LP string (COMMA string )* RP #rlikeListExpression
;
+stringOrParameter
+ : string
+ | parameter
+ ;
+
matchBooleanExpression
: fieldExp=qualifiedName (CAST_OP fieldType=dataType)? COLON matchQuery=constant
;
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
index 353029d651b05..6b6641bf62d0b 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
@@ -805,33 +805,52 @@ public Object visitIsNull(EsqlBaseParser.IsNullContext ctx) {
return ctx.NOT() != null ? new IsNotNull(source, exp) : new IsNull(source, exp);
}
- @Override
- public Expression visitRlikeExpression(EsqlBaseParser.RlikeExpressionContext ctx) {
- Source source = source(ctx);
- Expression left = expression(ctx.valueExpression());
- Literal patternLiteral = visitString(ctx.string());
- try {
- RLike rLike = new RLike(source, left, new RLikePattern(BytesRefs.toString(patternLiteral.fold(FoldContext.small()))));
- return ctx.NOT() == null ? rLike : new Not(source, rLike);
- } catch (InvalidArgumentException e) {
- throw new ParsingException(source, "Invalid pattern for RLIKE [{}]: [{}]", patternLiteral, e.getMessage());
- }
- }
-
@Override
public Expression visitLikeExpression(EsqlBaseParser.LikeExpressionContext ctx) {
Source source = source(ctx);
Expression left = expression(ctx.valueExpression());
- Literal patternLiteral = visitString(ctx.string());
+ EsqlBaseParser.StringOrParameterContext right = ctx.stringOrParameter();
+ String patternString = stringFromStringOrParameter(source, right);
try {
- WildcardPattern pattern = new WildcardPattern(BytesRefs.toString(patternLiteral.fold(FoldContext.small())));
+ WildcardPattern pattern = new WildcardPattern(patternString);
WildcardLike result = new WildcardLike(source, left, pattern);
return ctx.NOT() == null ? result : new Not(source, result);
} catch (InvalidArgumentException e) {
- throw new ParsingException(source, "Invalid pattern for LIKE [{}]: [{}]", patternLiteral, e.getMessage());
+ throw new ParsingException(source, "Invalid pattern for LIKE [{}]: [{}]", patternString, e.getMessage());
}
}
+
+ String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParameterContext ctx)
+ {
+ EsqlBaseParser.StringContext sctx = ctx.string();
+ if (sctx != null) {
+ Literal lit = visitString(sctx);
+ return BytesRefs.toString( lit.fold(FoldContext.small()) );
+ }
+ EsqlBaseParser.ParameterContext pctx = ctx.parameter();
+ if (pctx != null) {
+ if (pctx instanceof EsqlBaseParser.InputParamContext ipctx) {
+ Expression e = visitInputParam(ipctx);
+ if (e instanceof Literal lit) {
+ if (lit.dataType() == KEYWORD) {
+ return BytesRefs.toString( lit.fold(FoldContext.small()) );
+ }
+ }
+ }
+ if (pctx instanceof EsqlBaseParser.InputNamedOrPositionalParamContext inopctx) {
+ Expression e = visitInputNamedOrPositionalParam(inopctx);
+ if (e instanceof Literal lit) {
+ if (lit.dataType() == KEYWORD) {
+ return BytesRefs.toString( lit.fold(FoldContext.small()) );
+ }
+ }
+ }
+ }
+ throw new ParsingException(source, "Invalid StringOrParameterContext");
+ }
+
+
@Override
public Expression visitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx) {
Source source = source(ctx);
@@ -847,6 +866,19 @@ public Expression visitLikeListExpression(EsqlBaseParser.LikeListExpressionConte
return ctx.NOT() == null ? e : new Not(source, e);
}
+ @Override
+ public Expression visitRlikeExpression(EsqlBaseParser.RlikeExpressionContext ctx) {
+ Source source = source(ctx);
+ Expression left = expression(ctx.valueExpression());
+ Literal patternLiteral = visitString(ctx.string());
+ try {
+ RLike rLike = new RLike(source, left, new RLikePattern(BytesRefs.toString(patternLiteral.fold(FoldContext.small()))));
+ return ctx.NOT() == null ? rLike : new Not(source, rLike);
+ } catch (InvalidArgumentException e) {
+ throw new ParsingException(source, "Invalid pattern for RLIKE [{}]: [{}]", patternLiteral, e.getMessage());
+ }
+ }
+
@Override
public Expression visitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx) {
Source source = source(ctx);
From 21b1e332d9ef684ae66ad4810074bdee7c01d00d Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Thu, 13 Nov 2025 07:19:32 -0800
Subject: [PATCH 02/15] Documentation examples for like parameters
Use inline example since it can't be specified in csv-spec
---
.../function/scalar/string/regex/RLike.java | 63 ++++++++++------
.../scalar/string/regex/WildcardLike.java | 74 +++++++++++--------
2 files changed, 83 insertions(+), 54 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
index 66989a514f3d4..68f5ef608807b 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
@@ -31,30 +31,45 @@ public class RLike extends RegexMatch {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "RLike", RLike::new);
public static final String NAME = "RLIKE";
- @FunctionInfo(returnType = "boolean", description = """
- Use `RLIKE` to filter data based on string patterns using
- <>. `RLIKE` usually acts on a field placed on
- the left-hand side of the operator, but it can also act on a constant (literal)
- expression. The right-hand side of the operator represents the pattern.""", detailedDescription = """
- Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
- The escape character is backslash `\\`. Since also backslash is a special character in string literals,
- it will require further escaping.
-
- <>
-
- To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
-
- <>
- ```{applies_to}
- stack: ga 9.2
- serverless: ga
- ```
-
- Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
- the expression will return true if any of the patterns match.
-
- <>
- """, operator = NAME, examples = @Example(file = "docs", tag = "rlike"))
+ @FunctionInfo(
+ returnType = "boolean",
+ description = """
+ Use `RLIKE` to filter data based on string patterns using
+ <>. `RLIKE` usually acts on a field placed on
+ the left-hand side of the operator, but it can also act on a constant (literal)
+ expression. The right-hand side of the operator represents the pattern.""",
+ detailedDescription = """
+ Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
+ The escape character is backslash `\\`. Since also backslash is a special character in string literals,
+ it will require further escaping.
+
+ <>
+
+ To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
+
+ <>
+ ```{applies_to}
+ stack: ga 9.2
+ serverless: ga
+ ```
+
+ Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
+ the expression will return true if any of the patterns match.
+
+ <>
+
+ Pattens may be specified with ReST query placeholders as well
+
+ ```esql
+ FROM employees
+ | WHERE first_name RLIKE ?pattern
+ | KEEP first_name, last_name
+ ```
+
+ ```{applies_to}
+ stack: ga 9.3
+ ```
+ """, operator = NAME, examples = @Example(file = "docs", tag = "rlike"))
public RLike(
Source source,
@Param(name = "str", type = { "keyword", "text" }, description = "A literal value.") Expression value,
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
index 00a8d86769a38..88362932ed172 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
@@ -36,36 +36,50 @@ public class WildcardLike extends RegexMatch {
);
public static final String NAME = "LIKE";
- @FunctionInfo(returnType = "boolean", description = """
- Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`
- usually acts on a field placed on the left-hand side of the operator, but it can
- also act on a constant (literal) expression. The right-hand side of the operator
- represents the pattern.
-
- The following wildcard characters are supported:
-
- * `*` matches zero or more characters.
- * `?` matches one character.""", detailedDescription = """
- Matching the exact characters `*` and `.` will require escaping.
- The escape character is backslash `\\`. Since also backslash is a special character in string literals,
- it will require further escaping.
-
- <>
-
- To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
-
- <>
-
- ```{applies_to}
- stack: ga 9.1
- serverless: ga
- ```
- Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
- the expression will return true if any of the patterns match.
-
- <>
-
- """, operator = NAME, examples = @Example(file = "docs", tag = "like"))
+ @FunctionInfo(
+ returnType = "boolean",
+ description = """
+ Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`
+ usually acts on a field placed on the left-hand side of the operator, but it can
+ also act on a constant (literal) expression. The right-hand side of the operator
+ represents the pattern.
+
+ The following wildcard characters are supported:
+
+ * `*` matches zero or more characters.
+ * `?` matches one character.""",
+ detailedDescription = """
+ Matching the exact characters `*` and `.` will require escaping.
+ The escape character is backslash `\\`. Since also backslash is a special character in string literals,
+ it will require further escaping.
+
+ <>
+
+ To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
+
+ <>
+
+ ```{applies_to}
+ stack: ga 9.1
+ serverless: ga
+ ```
+ Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
+ the expression will return true if any of the patterns match.
+
+ <>
+
+ Pattens may be specified with ReST query placeholders as well
+
+ ```esql
+ FROM employees
+ | WHERE first_name LIKE ?pattern
+ | KEEP first_name, last_name
+ ```
+
+ ```{applies_to}
+ stack: ga 9.3
+ ```
+ """, operator = NAME, examples = @Example(file = "docs", tag = "like"))
public WildcardLike(
Source source,
@Param(name = "str", type = { "keyword", "text" }, description = "A literal expression.") Expression left,
From 4533f2f95dcbc12e3404d3ea1ce7973a16e4d9a8 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Thu, 13 Nov 2025 07:20:02 -0800
Subject: [PATCH 03/15] Unit tests for like parameters
---
.../xpack/esql/qa/rest/RestEsqlTestCase.java | 18 +++++++++++++++
.../xpack/esql/analysis/AnalyzerTests.java | 22 ++++++++++++++++++
.../esql/parser/StatementParserTests.java | 23 +++++++++++++++++++
3 files changed, 63 insertions(+)
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
index fa9f58c63fe04..0b4a10e72580f 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
@@ -1852,6 +1852,24 @@ public void testMatchFunctionAcrossMultipleIndicesWithMissingField() throws IOEx
}
}
+// begin 131356
+/*
+}
+class foo {
+*/
+
+ public void testParamsWithLike() throws IOException {
+ //assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
+ bulkLoadTestData(11);
+ var query = requestObjectBuilder().query(
+ format(null, "from {} | where keyword like ?pattern | keep keyword", testIndexName() )
+ ).params("[{\"pattern\" : \"key*0\"}]");
+ Map result = runEsql(query);
+ assertEquals(List.of(List.of("keyword0"),List.of("keyword10")), result.get("values"));
+ }
+// end 131356
+
+
protected static Request prepareRequestWithOptions(RequestObjectBuilder requestObject, Mode mode) throws IOException {
requestObject.build();
Request request = prepareRequest(mode);
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 ee5a2a653b67d..43b40c4589cba 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
@@ -68,6 +68,7 @@
import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToString;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Concat;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Substring;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.WildcardLike;
import org.elasticsearch.xpack.esql.expression.function.vector.Knn;
import org.elasticsearch.xpack.esql.expression.function.vector.Magnitude;
import org.elasticsearch.xpack.esql.expression.function.vector.VectorSimilarityFunction;
@@ -5599,6 +5600,27 @@ public void testLookupJoinOnFieldNotAnywhereElse() {
assertEquals(IndexMode.LOOKUP, rightRelation.indexMode());
}
+
+// begin 131356
+/*
+}
+class foo {
+*/
+ public void testLikeParameters() {
+ // if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled() == false) { return; }
+ var plan = analyze(
+ String.format(Locale.ROOT, "from test | where first_name like ?pattern"),
+ "mapping-basic.json",
+ new QueryParams(List.of(paramAsConstant("pattern", "Anna*")))
+ );
+ var limit = as(plan, Limit.class);
+ var filter = as(limit.child(), Filter.class);
+ WildcardLike like = as(filter.condition(), WildcardLike.class);
+ assertEquals("Anna*", like.pattern().pattern());
+ }
+// end 131356
+
+
private void verifyNameAndTypeAndMultiTypeEsField(
String actualName,
DataType actualType,
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 c7d1b1874c782..bd2c2f5dfe4d3 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
@@ -1365,6 +1365,29 @@ public void testLikeRLike() {
);
}
+// begin 131356
+/*
+}
+class foo {
+ */
+ public void testLikeRLikeParam() {
+ LogicalPlan cmd = statement("row a = \"abc\" | where a like ?pattern",
+ new QueryParams( List.of(paramAsConstant("pattern", "a*")) )
+ );
+ assertEquals(Filter.class, cmd.getClass());
+ Filter filter = (Filter) cmd;
+ assertEquals(WildcardLike.class, filter.condition().getClass());
+ WildcardLike like = (WildcardLike) filter.condition();
+ assertEquals("a*", like.pattern().pattern());
+
+ expectError(
+ "row a = \"abc\" | where a like ?pattern",
+ List.of(paramAsConstant("pattern", 1)),
+ "Invalid StringOrParameterContext" // XXX need more specific message
+ );
+ }
+// end 131356
+
public void testIdentifierPatternTooComplex() {
// It is incredibly unlikely that we will see this limit hit in practice
// The repetition value 2450 was a ballpark estimate and validated experimentally
From 9dd80b95ed4756bc86d1f647ccb221827cc3f47f Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Thu, 13 Nov 2025 07:24:16 -0800
Subject: [PATCH 04/15] Add EsqlCapabilities LIKE_PARAMETER_SUPPORT
---
.../elasticsearch/xpack/esql/action/EsqlCapabilities.java | 5 +++++
1 file changed, 5 insertions(+)
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 84e99fb09c719..d79008cb3ffe3 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
@@ -1652,6 +1652,11 @@ public enum Cap {
*/
EXPONENTIAL_HISTOGRAM_PERCENTILES_SUPPORT(EXPONENTIAL_HISTOGRAM_FEATURE_FLAG),
+ /**
+ * Support like/rlike parameters https://github.com/elastic/elasticsearch/issues/131356
+ */
+ LIKE_PARAMETER_SUPPORT,
+
// Last capability should still have a comma for fewer merge conflicts when adding new ones :)
// This comment prevents the semicolon from being on the previous capability when Spotless formats the file.
;
From 61155c73d1cadfddeeee1e0938053c3fc75fddac Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Thu, 13 Nov 2025 10:52:47 -0800
Subject: [PATCH 05/15] Add yamlRestTest for like with parameters
---
.../rest-api-spec/test/esql/80_text.yml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml
index b4bfd99dca5fe..af5483a392579 100644
--- a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml
+++ b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml
@@ -645,3 +645,21 @@ setup:
esql.query:
body:
query: 'FROM test | WHERE job RLIKE "(a|b)*a(a|b){13}"'
+
+---
+"like with parameters":
+ - requires:
+ capabilities:
+ - method: POST
+ path: /_query
+ parameters: [ capabilities ]
+ capabilities: [ like_parameter_support ]
+ reason: "parameter support for like"
+ - do:
+ esql.query:
+ body:
+ query: 'FROM test | WHERE job LIKE ?like | KEEP job | LIMIT 2'
+ params: [{"like": "IT*"}]
+
+ - length: { values: 1 }
+ - match: { values.0: [ "IT Director" ] }
From 52b661f2f221fbc3fdfad824b2c88aaefd244e1e Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Thu, 13 Nov 2025 10:53:05 -0800
Subject: [PATCH 06/15] Generated files
---
.../operators/detailedDescription/like.md | 12 +
.../operators/detailedDescription/rlike.md | 12 +
.../xpack/esql/parser/EsqlBaseParser.interp | 3 +-
.../xpack/esql/parser/EsqlBaseParser.java | 2361 +++++++++--------
.../parser/EsqlBaseParserBaseListener.java | 12 +
.../parser/EsqlBaseParserBaseVisitor.java | 7 +
.../esql/parser/EsqlBaseParserListener.java | 10 +
.../esql/parser/EsqlBaseParserVisitor.java | 6 +
8 files changed, 1276 insertions(+), 1147 deletions(-)
diff --git a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md
index 0e9cff4fcefe5..13be3df10951b 100644
--- a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md
+++ b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md
@@ -31,3 +31,15 @@ ROW message = "foobar"
```
+Pattens may be specified with ReST query placeholders as well
+
+```esql
+FROM employees
+| WHERE first_name LIKE ?pattern
+| KEEP first_name, last_name
+```
+
+```{applies_to}
+stack: ga 9.3
+```
+
diff --git a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md
index 3dd13763aeb2e..dc88f1abf995a 100644
--- a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md
+++ b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md
@@ -31,3 +31,15 @@ ROW message = "foobar"
```
+Pattens may be specified with ReST query placeholders as well
+
+```esql
+FROM employees
+| WHERE first_name RLIKE ?pattern
+| KEEP first_name, last_name
+```
+
+```{applies_to}
+stack: ga 9.3
+```
+
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 3c357d48cef9a..ae2f135a846e8 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
@@ -381,6 +381,7 @@ setCommand
setField
booleanExpression
regexBooleanExpression
+stringOrParameter
matchBooleanExpression
valueExpression
operatorExpression
@@ -403,4 +404,4 @@ joinCondition
atn:
-[4, 1, 151, 941, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 1, 0, 5, 0, 188, 8, 0, 10, 0, 12, 0, 191, 9, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 205, 8, 2, 10, 2, 12, 2, 208, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 216, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 242, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 255, 8, 8, 10, 8, 12, 8, 258, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 263, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 270, 8, 10, 10, 10, 12, 10, 273, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 278, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 289, 8, 14, 10, 14, 12, 14, 292, 9, 14, 1, 14, 3, 14, 295, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 300, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 306, 8, 16, 10, 16, 12, 16, 309, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 322, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 336, 8, 22, 10, 22, 12, 22, 339, 9, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 346, 8, 24, 1, 24, 1, 24, 3, 24, 350, 8, 24, 1, 25, 1, 25, 1, 25, 5, 25, 355, 8, 25, 10, 25, 12, 25, 358, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 363, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 368, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 377, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 382, 8, 28, 10, 28, 12, 28, 385, 9, 28, 1, 29, 1, 29, 1, 29, 3, 29, 390, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 399, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 404, 8, 30, 10, 30, 12, 30, 407, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 412, 8, 31, 10, 31, 12, 31, 415, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 3, 33, 422, 8, 33, 1, 34, 1, 34, 3, 34, 426, 8, 34, 1, 35, 1, 35, 3, 35, 430, 8, 35, 1, 36, 1, 36, 1, 36, 3, 36, 435, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 444, 8, 38, 10, 38, 12, 38, 447, 9, 38, 1, 39, 1, 39, 3, 39, 451, 8, 39, 1, 39, 1, 39, 3, 39, 455, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 467, 8, 42, 10, 42, 12, 42, 470, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 480, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 486, 8, 44, 1, 45, 1, 45, 1, 45, 5, 45, 491, 8, 45, 10, 45, 12, 45, 494, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 502, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 509, 8, 48, 10, 48, 12, 48, 512, 9, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 531, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 537, 8, 53, 10, 53, 12, 53, 540, 9, 53, 3, 53, 542, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 3, 55, 549, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 560, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 567, 8, 57, 1, 58, 1, 58, 1, 58, 1, 59, 4, 59, 573, 8, 59, 11, 59, 12, 59, 574, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 587, 8, 61, 10, 61, 12, 61, 590, 9, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 598, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 609, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 619, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 625, 8, 65, 3, 65, 627, 8, 65, 1, 66, 1, 66, 3, 66, 631, 8, 66, 1, 66, 5, 66, 634, 8, 66, 10, 66, 12, 66, 637, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 650, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 675, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 682, 8, 72, 10, 72, 12, 72, 685, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 692, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 697, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 705, 8, 72, 10, 72, 12, 72, 708, 9, 72, 1, 73, 1, 73, 3, 73, 712, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 719, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 726, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 733, 8, 73, 10, 73, 12, 73, 736, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 742, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 749, 8, 73, 10, 73, 12, 73, 752, 9, 73, 1, 73, 1, 73, 3, 73, 756, 8, 73, 1, 74, 1, 74, 1, 74, 3, 74, 761, 8, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 771, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 777, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 785, 8, 76, 10, 76, 12, 76, 788, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 798, 8, 77, 1, 77, 1, 77, 1, 77, 5, 77, 803, 8, 77, 10, 77, 12, 77, 806, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 814, 8, 78, 10, 78, 12, 78, 817, 9, 78, 1, 78, 1, 78, 3, 78, 821, 8, 78, 3, 78, 823, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 830, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 836, 8, 80, 10, 80, 12, 80, 839, 9, 80, 3, 80, 841, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 851, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 866, 8, 83, 10, 83, 12, 83, 869, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 877, 8, 83, 10, 83, 12, 83, 880, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 888, 8, 83, 10, 83, 12, 83, 891, 9, 83, 1, 83, 1, 83, 3, 83, 895, 8, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 901, 8, 85, 1, 86, 3, 86, 904, 8, 86, 1, 86, 1, 86, 1, 87, 3, 87, 909, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 925, 8, 91, 1, 91, 1, 91, 1, 91, 3, 91, 930, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 5, 92, 936, 8, 92, 10, 92, 12, 92, 939, 9, 92, 1, 92, 0, 5, 4, 122, 144, 152, 154, 93, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 984, 0, 189, 1, 0, 0, 0, 2, 195, 1, 0, 0, 0, 4, 198, 1, 0, 0, 0, 6, 215, 1, 0, 0, 0, 8, 241, 1, 0, 0, 0, 10, 243, 1, 0, 0, 0, 12, 246, 1, 0, 0, 0, 14, 248, 1, 0, 0, 0, 16, 251, 1, 0, 0, 0, 18, 262, 1, 0, 0, 0, 20, 266, 1, 0, 0, 0, 22, 274, 1, 0, 0, 0, 24, 279, 1, 0, 0, 0, 26, 282, 1, 0, 0, 0, 28, 285, 1, 0, 0, 0, 30, 299, 1, 0, 0, 0, 32, 301, 1, 0, 0, 0, 34, 321, 1, 0, 0, 0, 36, 323, 1, 0, 0, 0, 38, 325, 1, 0, 0, 0, 40, 327, 1, 0, 0, 0, 42, 329, 1, 0, 0, 0, 44, 331, 1, 0, 0, 0, 46, 340, 1, 0, 0, 0, 48, 343, 1, 0, 0, 0, 50, 351, 1, 0, 0, 0, 52, 359, 1, 0, 0, 0, 54, 376, 1, 0, 0, 0, 56, 378, 1, 0, 0, 0, 58, 398, 1, 0, 0, 0, 60, 400, 1, 0, 0, 0, 62, 408, 1, 0, 0, 0, 64, 416, 1, 0, 0, 0, 66, 421, 1, 0, 0, 0, 68, 425, 1, 0, 0, 0, 70, 429, 1, 0, 0, 0, 72, 434, 1, 0, 0, 0, 74, 436, 1, 0, 0, 0, 76, 439, 1, 0, 0, 0, 78, 448, 1, 0, 0, 0, 80, 456, 1, 0, 0, 0, 82, 459, 1, 0, 0, 0, 84, 462, 1, 0, 0, 0, 86, 479, 1, 0, 0, 0, 88, 481, 1, 0, 0, 0, 90, 487, 1, 0, 0, 0, 92, 495, 1, 0, 0, 0, 94, 501, 1, 0, 0, 0, 96, 503, 1, 0, 0, 0, 98, 513, 1, 0, 0, 0, 100, 516, 1, 0, 0, 0, 102, 519, 1, 0, 0, 0, 104, 523, 1, 0, 0, 0, 106, 526, 1, 0, 0, 0, 108, 543, 1, 0, 0, 0, 110, 548, 1, 0, 0, 0, 112, 552, 1, 0, 0, 0, 114, 555, 1, 0, 0, 0, 116, 568, 1, 0, 0, 0, 118, 572, 1, 0, 0, 0, 120, 576, 1, 0, 0, 0, 122, 580, 1, 0, 0, 0, 124, 591, 1, 0, 0, 0, 126, 593, 1, 0, 0, 0, 128, 604, 1, 0, 0, 0, 130, 626, 1, 0, 0, 0, 132, 628, 1, 0, 0, 0, 134, 649, 1, 0, 0, 0, 136, 651, 1, 0, 0, 0, 138, 656, 1, 0, 0, 0, 140, 659, 1, 0, 0, 0, 142, 663, 1, 0, 0, 0, 144, 696, 1, 0, 0, 0, 146, 755, 1, 0, 0, 0, 148, 757, 1, 0, 0, 0, 150, 770, 1, 0, 0, 0, 152, 776, 1, 0, 0, 0, 154, 797, 1, 0, 0, 0, 156, 807, 1, 0, 0, 0, 158, 829, 1, 0, 0, 0, 160, 831, 1, 0, 0, 0, 162, 844, 1, 0, 0, 0, 164, 850, 1, 0, 0, 0, 166, 894, 1, 0, 0, 0, 168, 896, 1, 0, 0, 0, 170, 900, 1, 0, 0, 0, 172, 903, 1, 0, 0, 0, 174, 908, 1, 0, 0, 0, 176, 912, 1, 0, 0, 0, 178, 914, 1, 0, 0, 0, 180, 916, 1, 0, 0, 0, 182, 929, 1, 0, 0, 0, 184, 931, 1, 0, 0, 0, 186, 188, 3, 140, 70, 0, 187, 186, 1, 0, 0, 0, 188, 191, 1, 0, 0, 0, 189, 187, 1, 0, 0, 0, 189, 190, 1, 0, 0, 0, 190, 192, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 192, 193, 3, 2, 1, 0, 193, 194, 5, 0, 0, 1, 194, 1, 1, 0, 0, 0, 195, 196, 3, 4, 2, 0, 196, 197, 5, 0, 0, 1, 197, 3, 1, 0, 0, 0, 198, 199, 6, 2, -1, 0, 199, 200, 3, 6, 3, 0, 200, 206, 1, 0, 0, 0, 201, 202, 10, 1, 0, 0, 202, 203, 5, 50, 0, 0, 203, 205, 3, 8, 4, 0, 204, 201, 1, 0, 0, 0, 205, 208, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 5, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 209, 216, 3, 24, 12, 0, 210, 216, 3, 14, 7, 0, 211, 216, 3, 104, 52, 0, 212, 216, 3, 26, 13, 0, 213, 214, 4, 3, 1, 0, 214, 216, 3, 100, 50, 0, 215, 209, 1, 0, 0, 0, 215, 210, 1, 0, 0, 0, 215, 211, 1, 0, 0, 0, 215, 212, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 216, 7, 1, 0, 0, 0, 217, 242, 3, 46, 23, 0, 218, 242, 3, 10, 5, 0, 219, 242, 3, 80, 40, 0, 220, 242, 3, 74, 37, 0, 221, 242, 3, 48, 24, 0, 222, 242, 3, 76, 38, 0, 223, 242, 3, 82, 41, 0, 224, 242, 3, 84, 42, 0, 225, 242, 3, 88, 44, 0, 226, 242, 3, 96, 48, 0, 227, 242, 3, 106, 53, 0, 228, 242, 3, 98, 49, 0, 229, 242, 3, 180, 90, 0, 230, 242, 3, 114, 57, 0, 231, 242, 3, 128, 64, 0, 232, 242, 3, 112, 56, 0, 233, 242, 3, 116, 58, 0, 234, 242, 3, 126, 63, 0, 235, 242, 3, 130, 65, 0, 236, 242, 3, 132, 66, 0, 237, 238, 4, 4, 2, 0, 238, 242, 3, 136, 68, 0, 239, 240, 4, 4, 3, 0, 240, 242, 3, 138, 69, 0, 241, 217, 1, 0, 0, 0, 241, 218, 1, 0, 0, 0, 241, 219, 1, 0, 0, 0, 241, 220, 1, 0, 0, 0, 241, 221, 1, 0, 0, 0, 241, 222, 1, 0, 0, 0, 241, 223, 1, 0, 0, 0, 241, 224, 1, 0, 0, 0, 241, 225, 1, 0, 0, 0, 241, 226, 1, 0, 0, 0, 241, 227, 1, 0, 0, 0, 241, 228, 1, 0, 0, 0, 241, 229, 1, 0, 0, 0, 241, 230, 1, 0, 0, 0, 241, 231, 1, 0, 0, 0, 241, 232, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 234, 1, 0, 0, 0, 241, 235, 1, 0, 0, 0, 241, 236, 1, 0, 0, 0, 241, 237, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, 9, 1, 0, 0, 0, 243, 244, 5, 17, 0, 0, 244, 245, 3, 144, 72, 0, 245, 11, 1, 0, 0, 0, 246, 247, 3, 64, 32, 0, 247, 13, 1, 0, 0, 0, 248, 249, 5, 13, 0, 0, 249, 250, 3, 16, 8, 0, 250, 15, 1, 0, 0, 0, 251, 256, 3, 18, 9, 0, 252, 253, 5, 61, 0, 0, 253, 255, 3, 18, 9, 0, 254, 252, 1, 0, 0, 0, 255, 258, 1, 0, 0, 0, 256, 254, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 17, 1, 0, 0, 0, 258, 256, 1, 0, 0, 0, 259, 260, 3, 54, 27, 0, 260, 261, 5, 56, 0, 0, 261, 263, 1, 0, 0, 0, 262, 259, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 3, 144, 72, 0, 265, 19, 1, 0, 0, 0, 266, 271, 3, 22, 11, 0, 267, 268, 5, 61, 0, 0, 268, 270, 3, 22, 11, 0, 269, 267, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 21, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 277, 3, 54, 27, 0, 275, 276, 5, 56, 0, 0, 276, 278, 3, 144, 72, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 23, 1, 0, 0, 0, 279, 280, 5, 18, 0, 0, 280, 281, 3, 28, 14, 0, 281, 25, 1, 0, 0, 0, 282, 283, 5, 19, 0, 0, 283, 284, 3, 28, 14, 0, 284, 27, 1, 0, 0, 0, 285, 290, 3, 30, 15, 0, 286, 287, 5, 61, 0, 0, 287, 289, 3, 30, 15, 0, 288, 286, 1, 0, 0, 0, 289, 292, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 294, 1, 0, 0, 0, 292, 290, 1, 0, 0, 0, 293, 295, 3, 44, 22, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 29, 1, 0, 0, 0, 296, 300, 3, 34, 17, 0, 297, 298, 4, 15, 4, 0, 298, 300, 3, 32, 16, 0, 299, 296, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 300, 31, 1, 0, 0, 0, 301, 302, 5, 98, 0, 0, 302, 307, 3, 24, 12, 0, 303, 304, 5, 50, 0, 0, 304, 306, 3, 8, 4, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 310, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 5, 99, 0, 0, 311, 33, 1, 0, 0, 0, 312, 313, 3, 36, 18, 0, 313, 314, 5, 59, 0, 0, 314, 315, 3, 40, 20, 0, 315, 322, 1, 0, 0, 0, 316, 317, 3, 40, 20, 0, 317, 318, 5, 58, 0, 0, 318, 319, 3, 38, 19, 0, 319, 322, 1, 0, 0, 0, 320, 322, 3, 42, 21, 0, 321, 312, 1, 0, 0, 0, 321, 316, 1, 0, 0, 0, 321, 320, 1, 0, 0, 0, 322, 35, 1, 0, 0, 0, 323, 324, 5, 106, 0, 0, 324, 37, 1, 0, 0, 0, 325, 326, 5, 106, 0, 0, 326, 39, 1, 0, 0, 0, 327, 328, 5, 106, 0, 0, 328, 41, 1, 0, 0, 0, 329, 330, 7, 0, 0, 0, 330, 43, 1, 0, 0, 0, 331, 332, 5, 105, 0, 0, 332, 337, 5, 106, 0, 0, 333, 334, 5, 61, 0, 0, 334, 336, 5, 106, 0, 0, 335, 333, 1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 45, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 340, 341, 5, 9, 0, 0, 341, 342, 3, 16, 8, 0, 342, 47, 1, 0, 0, 0, 343, 345, 5, 16, 0, 0, 344, 346, 3, 50, 25, 0, 345, 344, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 349, 1, 0, 0, 0, 347, 348, 5, 57, 0, 0, 348, 350, 3, 16, 8, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 49, 1, 0, 0, 0, 351, 356, 3, 52, 26, 0, 352, 353, 5, 61, 0, 0, 353, 355, 3, 52, 26, 0, 354, 352, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 51, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 359, 362, 3, 18, 9, 0, 360, 361, 5, 17, 0, 0, 361, 363, 3, 144, 72, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 53, 1, 0, 0, 0, 364, 365, 4, 27, 5, 0, 365, 367, 5, 96, 0, 0, 366, 368, 5, 100, 0, 0, 367, 366, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 370, 5, 97, 0, 0, 370, 371, 5, 63, 0, 0, 371, 372, 5, 96, 0, 0, 372, 373, 3, 56, 28, 0, 373, 374, 5, 97, 0, 0, 374, 377, 1, 0, 0, 0, 375, 377, 3, 56, 28, 0, 376, 364, 1, 0, 0, 0, 376, 375, 1, 0, 0, 0, 377, 55, 1, 0, 0, 0, 378, 383, 3, 72, 36, 0, 379, 380, 5, 63, 0, 0, 380, 382, 3, 72, 36, 0, 381, 379, 1, 0, 0, 0, 382, 385, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 57, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 386, 387, 4, 29, 6, 0, 387, 389, 5, 96, 0, 0, 388, 390, 5, 137, 0, 0, 389, 388, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 392, 5, 97, 0, 0, 392, 393, 5, 63, 0, 0, 393, 394, 5, 96, 0, 0, 394, 395, 3, 60, 30, 0, 395, 396, 5, 97, 0, 0, 396, 399, 1, 0, 0, 0, 397, 399, 3, 60, 30, 0, 398, 386, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 59, 1, 0, 0, 0, 400, 405, 3, 66, 33, 0, 401, 402, 5, 63, 0, 0, 402, 404, 3, 66, 33, 0, 403, 401, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 61, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 408, 413, 3, 58, 29, 0, 409, 410, 5, 61, 0, 0, 410, 412, 3, 58, 29, 0, 411, 409, 1, 0, 0, 0, 412, 415, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 63, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 416, 417, 7, 1, 0, 0, 417, 65, 1, 0, 0, 0, 418, 422, 5, 137, 0, 0, 419, 422, 3, 68, 34, 0, 420, 422, 3, 70, 35, 0, 421, 418, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 420, 1, 0, 0, 0, 422, 67, 1, 0, 0, 0, 423, 426, 5, 75, 0, 0, 424, 426, 5, 94, 0, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 69, 1, 0, 0, 0, 427, 430, 5, 93, 0, 0, 428, 430, 5, 95, 0, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 71, 1, 0, 0, 0, 431, 435, 3, 64, 32, 0, 432, 435, 3, 68, 34, 0, 433, 435, 3, 70, 35, 0, 434, 431, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 433, 1, 0, 0, 0, 435, 73, 1, 0, 0, 0, 436, 437, 5, 11, 0, 0, 437, 438, 3, 166, 83, 0, 438, 75, 1, 0, 0, 0, 439, 440, 5, 15, 0, 0, 440, 445, 3, 78, 39, 0, 441, 442, 5, 61, 0, 0, 442, 444, 3, 78, 39, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 77, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 450, 3, 144, 72, 0, 449, 451, 7, 2, 0, 0, 450, 449, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 454, 1, 0, 0, 0, 452, 453, 5, 72, 0, 0, 453, 455, 7, 3, 0, 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 79, 1, 0, 0, 0, 456, 457, 5, 31, 0, 0, 457, 458, 3, 62, 31, 0, 458, 81, 1, 0, 0, 0, 459, 460, 5, 30, 0, 0, 460, 461, 3, 62, 31, 0, 461, 83, 1, 0, 0, 0, 462, 463, 5, 33, 0, 0, 463, 468, 3, 86, 43, 0, 464, 465, 5, 61, 0, 0, 465, 467, 3, 86, 43, 0, 466, 464, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 85, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 472, 3, 58, 29, 0, 472, 473, 5, 141, 0, 0, 473, 474, 3, 58, 29, 0, 474, 480, 1, 0, 0, 0, 475, 476, 3, 58, 29, 0, 476, 477, 5, 56, 0, 0, 477, 478, 3, 58, 29, 0, 478, 480, 1, 0, 0, 0, 479, 471, 1, 0, 0, 0, 479, 475, 1, 0, 0, 0, 480, 87, 1, 0, 0, 0, 481, 482, 5, 8, 0, 0, 482, 483, 3, 154, 77, 0, 483, 485, 3, 176, 88, 0, 484, 486, 3, 90, 45, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 89, 1, 0, 0, 0, 487, 492, 3, 92, 46, 0, 488, 489, 5, 61, 0, 0, 489, 491, 3, 92, 46, 0, 490, 488, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 91, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 495, 496, 3, 64, 32, 0, 496, 497, 5, 56, 0, 0, 497, 498, 3, 166, 83, 0, 498, 93, 1, 0, 0, 0, 499, 500, 5, 78, 0, 0, 500, 502, 3, 160, 80, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 95, 1, 0, 0, 0, 503, 504, 5, 10, 0, 0, 504, 505, 3, 154, 77, 0, 505, 510, 3, 176, 88, 0, 506, 507, 5, 61, 0, 0, 507, 509, 3, 176, 88, 0, 508, 506, 1, 0, 0, 0, 509, 512, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 97, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 514, 5, 29, 0, 0, 514, 515, 3, 54, 27, 0, 515, 99, 1, 0, 0, 0, 516, 517, 5, 6, 0, 0, 517, 518, 3, 102, 51, 0, 518, 101, 1, 0, 0, 0, 519, 520, 5, 98, 0, 0, 520, 521, 3, 4, 2, 0, 521, 522, 5, 99, 0, 0, 522, 103, 1, 0, 0, 0, 523, 524, 5, 35, 0, 0, 524, 525, 5, 148, 0, 0, 525, 105, 1, 0, 0, 0, 526, 527, 5, 5, 0, 0, 527, 530, 3, 108, 54, 0, 528, 529, 5, 73, 0, 0, 529, 531, 3, 58, 29, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 541, 1, 0, 0, 0, 532, 533, 5, 78, 0, 0, 533, 538, 3, 110, 55, 0, 534, 535, 5, 61, 0, 0, 535, 537, 3, 110, 55, 0, 536, 534, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 541, 532, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 107, 1, 0, 0, 0, 543, 544, 7, 4, 0, 0, 544, 109, 1, 0, 0, 0, 545, 546, 3, 58, 29, 0, 546, 547, 5, 56, 0, 0, 547, 549, 1, 0, 0, 0, 548, 545, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 3, 58, 29, 0, 551, 111, 1, 0, 0, 0, 552, 553, 5, 14, 0, 0, 553, 554, 3, 166, 83, 0, 554, 113, 1, 0, 0, 0, 555, 556, 5, 4, 0, 0, 556, 559, 3, 54, 27, 0, 557, 558, 5, 73, 0, 0, 558, 560, 3, 54, 27, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 566, 1, 0, 0, 0, 561, 562, 5, 141, 0, 0, 562, 563, 3, 54, 27, 0, 563, 564, 5, 61, 0, 0, 564, 565, 3, 54, 27, 0, 565, 567, 1, 0, 0, 0, 566, 561, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 115, 1, 0, 0, 0, 568, 569, 5, 20, 0, 0, 569, 570, 3, 118, 59, 0, 570, 117, 1, 0, 0, 0, 571, 573, 3, 120, 60, 0, 572, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 119, 1, 0, 0, 0, 576, 577, 5, 98, 0, 0, 577, 578, 3, 122, 61, 0, 578, 579, 5, 99, 0, 0, 579, 121, 1, 0, 0, 0, 580, 581, 6, 61, -1, 0, 581, 582, 3, 124, 62, 0, 582, 588, 1, 0, 0, 0, 583, 584, 10, 1, 0, 0, 584, 585, 5, 50, 0, 0, 585, 587, 3, 124, 62, 0, 586, 583, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 123, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 591, 592, 3, 8, 4, 0, 592, 125, 1, 0, 0, 0, 593, 597, 5, 12, 0, 0, 594, 595, 3, 54, 27, 0, 595, 596, 5, 56, 0, 0, 596, 598, 1, 0, 0, 0, 597, 594, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 3, 166, 83, 0, 600, 601, 5, 73, 0, 0, 601, 602, 3, 20, 10, 0, 602, 603, 3, 94, 47, 0, 603, 127, 1, 0, 0, 0, 604, 608, 5, 7, 0, 0, 605, 606, 3, 54, 27, 0, 606, 607, 5, 56, 0, 0, 607, 609, 1, 0, 0, 0, 608, 605, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 3, 154, 77, 0, 611, 612, 3, 94, 47, 0, 612, 129, 1, 0, 0, 0, 613, 614, 5, 22, 0, 0, 614, 615, 5, 119, 0, 0, 615, 618, 3, 50, 25, 0, 616, 617, 5, 57, 0, 0, 617, 619, 3, 16, 8, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 627, 1, 0, 0, 0, 620, 621, 5, 23, 0, 0, 621, 624, 3, 50, 25, 0, 622, 623, 5, 57, 0, 0, 623, 625, 3, 16, 8, 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, 620, 1, 0, 0, 0, 627, 131, 1, 0, 0, 0, 628, 630, 5, 21, 0, 0, 629, 631, 3, 64, 32, 0, 630, 629, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 635, 1, 0, 0, 0, 632, 634, 3, 134, 67, 0, 633, 632, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 133, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 5, 114, 0, 0, 639, 640, 5, 57, 0, 0, 640, 650, 3, 54, 27, 0, 641, 642, 5, 115, 0, 0, 642, 643, 5, 57, 0, 0, 643, 650, 3, 16, 8, 0, 644, 645, 5, 113, 0, 0, 645, 646, 5, 57, 0, 0, 646, 650, 3, 54, 27, 0, 647, 648, 5, 78, 0, 0, 648, 650, 3, 160, 80, 0, 649, 638, 1, 0, 0, 0, 649, 641, 1, 0, 0, 0, 649, 644, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 650, 135, 1, 0, 0, 0, 651, 652, 5, 28, 0, 0, 652, 653, 3, 34, 17, 0, 653, 654, 5, 73, 0, 0, 654, 655, 3, 62, 31, 0, 655, 137, 1, 0, 0, 0, 656, 657, 5, 32, 0, 0, 657, 658, 3, 62, 31, 0, 658, 139, 1, 0, 0, 0, 659, 660, 5, 34, 0, 0, 660, 661, 3, 142, 71, 0, 661, 662, 5, 60, 0, 0, 662, 141, 1, 0, 0, 0, 663, 664, 3, 64, 32, 0, 664, 665, 5, 56, 0, 0, 665, 666, 3, 166, 83, 0, 666, 143, 1, 0, 0, 0, 667, 668, 6, 72, -1, 0, 668, 669, 5, 70, 0, 0, 669, 697, 3, 144, 72, 8, 670, 697, 3, 150, 75, 0, 671, 697, 3, 146, 73, 0, 672, 674, 3, 150, 75, 0, 673, 675, 5, 70, 0, 0, 674, 673, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 5, 66, 0, 0, 677, 678, 5, 98, 0, 0, 678, 683, 3, 150, 75, 0, 679, 680, 5, 61, 0, 0, 680, 682, 3, 150, 75, 0, 681, 679, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 686, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 686, 687, 5, 99, 0, 0, 687, 697, 1, 0, 0, 0, 688, 689, 3, 150, 75, 0, 689, 691, 5, 67, 0, 0, 690, 692, 5, 70, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 5, 71, 0, 0, 694, 697, 1, 0, 0, 0, 695, 697, 3, 148, 74, 0, 696, 667, 1, 0, 0, 0, 696, 670, 1, 0, 0, 0, 696, 671, 1, 0, 0, 0, 696, 672, 1, 0, 0, 0, 696, 688, 1, 0, 0, 0, 696, 695, 1, 0, 0, 0, 697, 706, 1, 0, 0, 0, 698, 699, 10, 5, 0, 0, 699, 700, 5, 54, 0, 0, 700, 705, 3, 144, 72, 6, 701, 702, 10, 4, 0, 0, 702, 703, 5, 74, 0, 0, 703, 705, 3, 144, 72, 5, 704, 698, 1, 0, 0, 0, 704, 701, 1, 0, 0, 0, 705, 708, 1, 0, 0, 0, 706, 704, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 145, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 709, 711, 3, 150, 75, 0, 710, 712, 5, 70, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 69, 0, 0, 714, 715, 3, 176, 88, 0, 715, 756, 1, 0, 0, 0, 716, 718, 3, 150, 75, 0, 717, 719, 5, 70, 0, 0, 718, 717, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 5, 76, 0, 0, 721, 722, 3, 176, 88, 0, 722, 756, 1, 0, 0, 0, 723, 725, 3, 150, 75, 0, 724, 726, 5, 70, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 5, 69, 0, 0, 728, 729, 5, 98, 0, 0, 729, 734, 3, 176, 88, 0, 730, 731, 5, 61, 0, 0, 731, 733, 3, 176, 88, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 5, 99, 0, 0, 738, 756, 1, 0, 0, 0, 739, 741, 3, 150, 75, 0, 740, 742, 5, 70, 0, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 76, 0, 0, 744, 745, 5, 98, 0, 0, 745, 750, 3, 176, 88, 0, 746, 747, 5, 61, 0, 0, 747, 749, 3, 176, 88, 0, 748, 746, 1, 0, 0, 0, 749, 752, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 753, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 753, 754, 5, 99, 0, 0, 754, 756, 1, 0, 0, 0, 755, 709, 1, 0, 0, 0, 755, 716, 1, 0, 0, 0, 755, 723, 1, 0, 0, 0, 755, 739, 1, 0, 0, 0, 756, 147, 1, 0, 0, 0, 757, 760, 3, 54, 27, 0, 758, 759, 5, 58, 0, 0, 759, 761, 3, 12, 6, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 5, 59, 0, 0, 763, 764, 3, 166, 83, 0, 764, 149, 1, 0, 0, 0, 765, 771, 3, 152, 76, 0, 766, 767, 3, 152, 76, 0, 767, 768, 3, 178, 89, 0, 768, 769, 3, 152, 76, 0, 769, 771, 1, 0, 0, 0, 770, 765, 1, 0, 0, 0, 770, 766, 1, 0, 0, 0, 771, 151, 1, 0, 0, 0, 772, 773, 6, 76, -1, 0, 773, 777, 3, 154, 77, 0, 774, 775, 7, 5, 0, 0, 775, 777, 3, 152, 76, 3, 776, 772, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 786, 1, 0, 0, 0, 778, 779, 10, 2, 0, 0, 779, 780, 7, 6, 0, 0, 780, 785, 3, 152, 76, 3, 781, 782, 10, 1, 0, 0, 782, 783, 7, 5, 0, 0, 783, 785, 3, 152, 76, 2, 784, 778, 1, 0, 0, 0, 784, 781, 1, 0, 0, 0, 785, 788, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 153, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 789, 790, 6, 77, -1, 0, 790, 798, 3, 166, 83, 0, 791, 798, 3, 54, 27, 0, 792, 798, 3, 156, 78, 0, 793, 794, 5, 98, 0, 0, 794, 795, 3, 144, 72, 0, 795, 796, 5, 99, 0, 0, 796, 798, 1, 0, 0, 0, 797, 789, 1, 0, 0, 0, 797, 791, 1, 0, 0, 0, 797, 792, 1, 0, 0, 0, 797, 793, 1, 0, 0, 0, 798, 804, 1, 0, 0, 0, 799, 800, 10, 1, 0, 0, 800, 801, 5, 58, 0, 0, 801, 803, 3, 12, 6, 0, 802, 799, 1, 0, 0, 0, 803, 806, 1, 0, 0, 0, 804, 802, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 155, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 808, 3, 158, 79, 0, 808, 822, 5, 98, 0, 0, 809, 823, 5, 88, 0, 0, 810, 815, 3, 144, 72, 0, 811, 812, 5, 61, 0, 0, 812, 814, 3, 144, 72, 0, 813, 811, 1, 0, 0, 0, 814, 817, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 820, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 819, 5, 61, 0, 0, 819, 821, 3, 160, 80, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 809, 1, 0, 0, 0, 822, 810, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 99, 0, 0, 825, 157, 1, 0, 0, 0, 826, 830, 3, 72, 36, 0, 827, 830, 5, 65, 0, 0, 828, 830, 5, 68, 0, 0, 829, 826, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 829, 828, 1, 0, 0, 0, 830, 159, 1, 0, 0, 0, 831, 840, 5, 91, 0, 0, 832, 837, 3, 162, 81, 0, 833, 834, 5, 61, 0, 0, 834, 836, 3, 162, 81, 0, 835, 833, 1, 0, 0, 0, 836, 839, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 841, 1, 0, 0, 0, 839, 837, 1, 0, 0, 0, 840, 832, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 5, 92, 0, 0, 843, 161, 1, 0, 0, 0, 844, 845, 3, 176, 88, 0, 845, 846, 5, 59, 0, 0, 846, 847, 3, 164, 82, 0, 847, 163, 1, 0, 0, 0, 848, 851, 3, 166, 83, 0, 849, 851, 3, 160, 80, 0, 850, 848, 1, 0, 0, 0, 850, 849, 1, 0, 0, 0, 851, 165, 1, 0, 0, 0, 852, 895, 5, 71, 0, 0, 853, 854, 3, 174, 87, 0, 854, 855, 5, 100, 0, 0, 855, 895, 1, 0, 0, 0, 856, 895, 3, 172, 86, 0, 857, 895, 3, 174, 87, 0, 858, 895, 3, 168, 84, 0, 859, 895, 3, 68, 34, 0, 860, 895, 3, 176, 88, 0, 861, 862, 5, 96, 0, 0, 862, 867, 3, 170, 85, 0, 863, 864, 5, 61, 0, 0, 864, 866, 3, 170, 85, 0, 865, 863, 1, 0, 0, 0, 866, 869, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 870, 871, 5, 97, 0, 0, 871, 895, 1, 0, 0, 0, 872, 873, 5, 96, 0, 0, 873, 878, 3, 168, 84, 0, 874, 875, 5, 61, 0, 0, 875, 877, 3, 168, 84, 0, 876, 874, 1, 0, 0, 0, 877, 880, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 881, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 881, 882, 5, 97, 0, 0, 882, 895, 1, 0, 0, 0, 883, 884, 5, 96, 0, 0, 884, 889, 3, 176, 88, 0, 885, 886, 5, 61, 0, 0, 886, 888, 3, 176, 88, 0, 887, 885, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 892, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 892, 893, 5, 97, 0, 0, 893, 895, 1, 0, 0, 0, 894, 852, 1, 0, 0, 0, 894, 853, 1, 0, 0, 0, 894, 856, 1, 0, 0, 0, 894, 857, 1, 0, 0, 0, 894, 858, 1, 0, 0, 0, 894, 859, 1, 0, 0, 0, 894, 860, 1, 0, 0, 0, 894, 861, 1, 0, 0, 0, 894, 872, 1, 0, 0, 0, 894, 883, 1, 0, 0, 0, 895, 167, 1, 0, 0, 0, 896, 897, 7, 7, 0, 0, 897, 169, 1, 0, 0, 0, 898, 901, 3, 172, 86, 0, 899, 901, 3, 174, 87, 0, 900, 898, 1, 0, 0, 0, 900, 899, 1, 0, 0, 0, 901, 171, 1, 0, 0, 0, 902, 904, 7, 5, 0, 0, 903, 902, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 5, 53, 0, 0, 906, 173, 1, 0, 0, 0, 907, 909, 7, 5, 0, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 5, 52, 0, 0, 911, 175, 1, 0, 0, 0, 912, 913, 5, 51, 0, 0, 913, 177, 1, 0, 0, 0, 914, 915, 7, 8, 0, 0, 915, 179, 1, 0, 0, 0, 916, 917, 7, 9, 0, 0, 917, 918, 5, 123, 0, 0, 918, 919, 3, 182, 91, 0, 919, 920, 3, 184, 92, 0, 920, 181, 1, 0, 0, 0, 921, 922, 4, 91, 13, 0, 922, 924, 3, 34, 17, 0, 923, 925, 5, 141, 0, 0, 924, 923, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 5, 106, 0, 0, 927, 930, 1, 0, 0, 0, 928, 930, 3, 34, 17, 0, 929, 921, 1, 0, 0, 0, 929, 928, 1, 0, 0, 0, 930, 183, 1, 0, 0, 0, 931, 932, 5, 73, 0, 0, 932, 937, 3, 144, 72, 0, 933, 934, 5, 61, 0, 0, 934, 936, 3, 144, 72, 0, 935, 933, 1, 0, 0, 0, 936, 939, 1, 0, 0, 0, 937, 935, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 185, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 91, 189, 206, 215, 241, 256, 262, 271, 277, 290, 294, 299, 307, 321, 337, 345, 349, 356, 362, 367, 376, 383, 389, 398, 405, 413, 421, 425, 429, 434, 445, 450, 454, 468, 479, 485, 492, 501, 510, 530, 538, 541, 548, 559, 566, 574, 588, 597, 608, 618, 624, 626, 630, 635, 649, 674, 683, 691, 696, 704, 706, 711, 718, 725, 734, 741, 750, 755, 760, 770, 776, 784, 786, 797, 804, 815, 820, 822, 829, 837, 840, 850, 867, 878, 889, 894, 900, 903, 908, 924, 929, 937]
\ No newline at end of file
+[4, 1, 151, 947, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 1, 0, 5, 0, 190, 8, 0, 10, 0, 12, 0, 193, 9, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 207, 8, 2, 10, 2, 12, 2, 210, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 218, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 244, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 257, 8, 8, 10, 8, 12, 8, 260, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 265, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 272, 8, 10, 10, 10, 12, 10, 275, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 280, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 291, 8, 14, 10, 14, 12, 14, 294, 9, 14, 1, 14, 3, 14, 297, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 302, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 308, 8, 16, 10, 16, 12, 16, 311, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 324, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 338, 8, 22, 10, 22, 12, 22, 341, 9, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 348, 8, 24, 1, 24, 1, 24, 3, 24, 352, 8, 24, 1, 25, 1, 25, 1, 25, 5, 25, 357, 8, 25, 10, 25, 12, 25, 360, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 365, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 370, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 379, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 384, 8, 28, 10, 28, 12, 28, 387, 9, 28, 1, 29, 1, 29, 1, 29, 3, 29, 392, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 401, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 406, 8, 30, 10, 30, 12, 30, 409, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 414, 8, 31, 10, 31, 12, 31, 417, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 3, 33, 424, 8, 33, 1, 34, 1, 34, 3, 34, 428, 8, 34, 1, 35, 1, 35, 3, 35, 432, 8, 35, 1, 36, 1, 36, 1, 36, 3, 36, 437, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 446, 8, 38, 10, 38, 12, 38, 449, 9, 38, 1, 39, 1, 39, 3, 39, 453, 8, 39, 1, 39, 1, 39, 3, 39, 457, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 469, 8, 42, 10, 42, 12, 42, 472, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 482, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 488, 8, 44, 1, 45, 1, 45, 1, 45, 5, 45, 493, 8, 45, 10, 45, 12, 45, 496, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 504, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 511, 8, 48, 10, 48, 12, 48, 514, 9, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 533, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 539, 8, 53, 10, 53, 12, 53, 542, 9, 53, 3, 53, 544, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 3, 55, 551, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 562, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 569, 8, 57, 1, 58, 1, 58, 1, 58, 1, 59, 4, 59, 575, 8, 59, 11, 59, 12, 59, 576, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 589, 8, 61, 10, 61, 12, 61, 592, 9, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 600, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 611, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 621, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 627, 8, 65, 3, 65, 629, 8, 65, 1, 66, 1, 66, 3, 66, 633, 8, 66, 1, 66, 5, 66, 636, 8, 66, 10, 66, 12, 66, 639, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 652, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 677, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 684, 8, 72, 10, 72, 12, 72, 687, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 694, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 699, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 707, 8, 72, 10, 72, 12, 72, 710, 9, 72, 1, 73, 1, 73, 3, 73, 714, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 721, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 728, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 735, 8, 73, 10, 73, 12, 73, 738, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 744, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 751, 8, 73, 10, 73, 12, 73, 754, 9, 73, 1, 73, 1, 73, 3, 73, 758, 8, 73, 1, 74, 1, 74, 3, 74, 762, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 767, 8, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 777, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 783, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 791, 8, 77, 10, 77, 12, 77, 794, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 804, 8, 78, 1, 78, 1, 78, 1, 78, 5, 78, 809, 8, 78, 10, 78, 12, 78, 812, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 820, 8, 79, 10, 79, 12, 79, 823, 9, 79, 1, 79, 1, 79, 3, 79, 827, 8, 79, 3, 79, 829, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 836, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 842, 8, 81, 10, 81, 12, 81, 845, 9, 81, 3, 81, 847, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 857, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 872, 8, 84, 10, 84, 12, 84, 875, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 883, 8, 84, 10, 84, 12, 84, 886, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 894, 8, 84, 10, 84, 12, 84, 897, 9, 84, 1, 84, 1, 84, 3, 84, 901, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 907, 8, 86, 1, 87, 3, 87, 910, 8, 87, 1, 87, 1, 87, 1, 88, 3, 88, 915, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 931, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 936, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 942, 8, 93, 10, 93, 12, 93, 945, 9, 93, 1, 93, 0, 5, 4, 122, 144, 154, 156, 94, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 990, 0, 191, 1, 0, 0, 0, 2, 197, 1, 0, 0, 0, 4, 200, 1, 0, 0, 0, 6, 217, 1, 0, 0, 0, 8, 243, 1, 0, 0, 0, 10, 245, 1, 0, 0, 0, 12, 248, 1, 0, 0, 0, 14, 250, 1, 0, 0, 0, 16, 253, 1, 0, 0, 0, 18, 264, 1, 0, 0, 0, 20, 268, 1, 0, 0, 0, 22, 276, 1, 0, 0, 0, 24, 281, 1, 0, 0, 0, 26, 284, 1, 0, 0, 0, 28, 287, 1, 0, 0, 0, 30, 301, 1, 0, 0, 0, 32, 303, 1, 0, 0, 0, 34, 323, 1, 0, 0, 0, 36, 325, 1, 0, 0, 0, 38, 327, 1, 0, 0, 0, 40, 329, 1, 0, 0, 0, 42, 331, 1, 0, 0, 0, 44, 333, 1, 0, 0, 0, 46, 342, 1, 0, 0, 0, 48, 345, 1, 0, 0, 0, 50, 353, 1, 0, 0, 0, 52, 361, 1, 0, 0, 0, 54, 378, 1, 0, 0, 0, 56, 380, 1, 0, 0, 0, 58, 400, 1, 0, 0, 0, 60, 402, 1, 0, 0, 0, 62, 410, 1, 0, 0, 0, 64, 418, 1, 0, 0, 0, 66, 423, 1, 0, 0, 0, 68, 427, 1, 0, 0, 0, 70, 431, 1, 0, 0, 0, 72, 436, 1, 0, 0, 0, 74, 438, 1, 0, 0, 0, 76, 441, 1, 0, 0, 0, 78, 450, 1, 0, 0, 0, 80, 458, 1, 0, 0, 0, 82, 461, 1, 0, 0, 0, 84, 464, 1, 0, 0, 0, 86, 481, 1, 0, 0, 0, 88, 483, 1, 0, 0, 0, 90, 489, 1, 0, 0, 0, 92, 497, 1, 0, 0, 0, 94, 503, 1, 0, 0, 0, 96, 505, 1, 0, 0, 0, 98, 515, 1, 0, 0, 0, 100, 518, 1, 0, 0, 0, 102, 521, 1, 0, 0, 0, 104, 525, 1, 0, 0, 0, 106, 528, 1, 0, 0, 0, 108, 545, 1, 0, 0, 0, 110, 550, 1, 0, 0, 0, 112, 554, 1, 0, 0, 0, 114, 557, 1, 0, 0, 0, 116, 570, 1, 0, 0, 0, 118, 574, 1, 0, 0, 0, 120, 578, 1, 0, 0, 0, 122, 582, 1, 0, 0, 0, 124, 593, 1, 0, 0, 0, 126, 595, 1, 0, 0, 0, 128, 606, 1, 0, 0, 0, 130, 628, 1, 0, 0, 0, 132, 630, 1, 0, 0, 0, 134, 651, 1, 0, 0, 0, 136, 653, 1, 0, 0, 0, 138, 658, 1, 0, 0, 0, 140, 661, 1, 0, 0, 0, 142, 665, 1, 0, 0, 0, 144, 698, 1, 0, 0, 0, 146, 757, 1, 0, 0, 0, 148, 761, 1, 0, 0, 0, 150, 763, 1, 0, 0, 0, 152, 776, 1, 0, 0, 0, 154, 782, 1, 0, 0, 0, 156, 803, 1, 0, 0, 0, 158, 813, 1, 0, 0, 0, 160, 835, 1, 0, 0, 0, 162, 837, 1, 0, 0, 0, 164, 850, 1, 0, 0, 0, 166, 856, 1, 0, 0, 0, 168, 900, 1, 0, 0, 0, 170, 902, 1, 0, 0, 0, 172, 906, 1, 0, 0, 0, 174, 909, 1, 0, 0, 0, 176, 914, 1, 0, 0, 0, 178, 918, 1, 0, 0, 0, 180, 920, 1, 0, 0, 0, 182, 922, 1, 0, 0, 0, 184, 935, 1, 0, 0, 0, 186, 937, 1, 0, 0, 0, 188, 190, 3, 140, 70, 0, 189, 188, 1, 0, 0, 0, 190, 193, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 194, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 195, 3, 2, 1, 0, 195, 196, 5, 0, 0, 1, 196, 1, 1, 0, 0, 0, 197, 198, 3, 4, 2, 0, 198, 199, 5, 0, 0, 1, 199, 3, 1, 0, 0, 0, 200, 201, 6, 2, -1, 0, 201, 202, 3, 6, 3, 0, 202, 208, 1, 0, 0, 0, 203, 204, 10, 1, 0, 0, 204, 205, 5, 50, 0, 0, 205, 207, 3, 8, 4, 0, 206, 203, 1, 0, 0, 0, 207, 210, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 5, 1, 0, 0, 0, 210, 208, 1, 0, 0, 0, 211, 218, 3, 24, 12, 0, 212, 218, 3, 14, 7, 0, 213, 218, 3, 104, 52, 0, 214, 218, 3, 26, 13, 0, 215, 216, 4, 3, 1, 0, 216, 218, 3, 100, 50, 0, 217, 211, 1, 0, 0, 0, 217, 212, 1, 0, 0, 0, 217, 213, 1, 0, 0, 0, 217, 214, 1, 0, 0, 0, 217, 215, 1, 0, 0, 0, 218, 7, 1, 0, 0, 0, 219, 244, 3, 46, 23, 0, 220, 244, 3, 10, 5, 0, 221, 244, 3, 80, 40, 0, 222, 244, 3, 74, 37, 0, 223, 244, 3, 48, 24, 0, 224, 244, 3, 76, 38, 0, 225, 244, 3, 82, 41, 0, 226, 244, 3, 84, 42, 0, 227, 244, 3, 88, 44, 0, 228, 244, 3, 96, 48, 0, 229, 244, 3, 106, 53, 0, 230, 244, 3, 98, 49, 0, 231, 244, 3, 182, 91, 0, 232, 244, 3, 114, 57, 0, 233, 244, 3, 128, 64, 0, 234, 244, 3, 112, 56, 0, 235, 244, 3, 116, 58, 0, 236, 244, 3, 126, 63, 0, 237, 244, 3, 130, 65, 0, 238, 244, 3, 132, 66, 0, 239, 240, 4, 4, 2, 0, 240, 244, 3, 136, 68, 0, 241, 242, 4, 4, 3, 0, 242, 244, 3, 138, 69, 0, 243, 219, 1, 0, 0, 0, 243, 220, 1, 0, 0, 0, 243, 221, 1, 0, 0, 0, 243, 222, 1, 0, 0, 0, 243, 223, 1, 0, 0, 0, 243, 224, 1, 0, 0, 0, 243, 225, 1, 0, 0, 0, 243, 226, 1, 0, 0, 0, 243, 227, 1, 0, 0, 0, 243, 228, 1, 0, 0, 0, 243, 229, 1, 0, 0, 0, 243, 230, 1, 0, 0, 0, 243, 231, 1, 0, 0, 0, 243, 232, 1, 0, 0, 0, 243, 233, 1, 0, 0, 0, 243, 234, 1, 0, 0, 0, 243, 235, 1, 0, 0, 0, 243, 236, 1, 0, 0, 0, 243, 237, 1, 0, 0, 0, 243, 238, 1, 0, 0, 0, 243, 239, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 9, 1, 0, 0, 0, 245, 246, 5, 17, 0, 0, 246, 247, 3, 144, 72, 0, 247, 11, 1, 0, 0, 0, 248, 249, 3, 64, 32, 0, 249, 13, 1, 0, 0, 0, 250, 251, 5, 13, 0, 0, 251, 252, 3, 16, 8, 0, 252, 15, 1, 0, 0, 0, 253, 258, 3, 18, 9, 0, 254, 255, 5, 61, 0, 0, 255, 257, 3, 18, 9, 0, 256, 254, 1, 0, 0, 0, 257, 260, 1, 0, 0, 0, 258, 256, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 17, 1, 0, 0, 0, 260, 258, 1, 0, 0, 0, 261, 262, 3, 54, 27, 0, 262, 263, 5, 56, 0, 0, 263, 265, 1, 0, 0, 0, 264, 261, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 267, 3, 144, 72, 0, 267, 19, 1, 0, 0, 0, 268, 273, 3, 22, 11, 0, 269, 270, 5, 61, 0, 0, 270, 272, 3, 22, 11, 0, 271, 269, 1, 0, 0, 0, 272, 275, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 21, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 276, 279, 3, 54, 27, 0, 277, 278, 5, 56, 0, 0, 278, 280, 3, 144, 72, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 23, 1, 0, 0, 0, 281, 282, 5, 18, 0, 0, 282, 283, 3, 28, 14, 0, 283, 25, 1, 0, 0, 0, 284, 285, 5, 19, 0, 0, 285, 286, 3, 28, 14, 0, 286, 27, 1, 0, 0, 0, 287, 292, 3, 30, 15, 0, 288, 289, 5, 61, 0, 0, 289, 291, 3, 30, 15, 0, 290, 288, 1, 0, 0, 0, 291, 294, 1, 0, 0, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 297, 3, 44, 22, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 29, 1, 0, 0, 0, 298, 302, 3, 34, 17, 0, 299, 300, 4, 15, 4, 0, 300, 302, 3, 32, 16, 0, 301, 298, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 31, 1, 0, 0, 0, 303, 304, 5, 98, 0, 0, 304, 309, 3, 24, 12, 0, 305, 306, 5, 50, 0, 0, 306, 308, 3, 8, 4, 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, 312, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 5, 99, 0, 0, 313, 33, 1, 0, 0, 0, 314, 315, 3, 36, 18, 0, 315, 316, 5, 59, 0, 0, 316, 317, 3, 40, 20, 0, 317, 324, 1, 0, 0, 0, 318, 319, 3, 40, 20, 0, 319, 320, 5, 58, 0, 0, 320, 321, 3, 38, 19, 0, 321, 324, 1, 0, 0, 0, 322, 324, 3, 42, 21, 0, 323, 314, 1, 0, 0, 0, 323, 318, 1, 0, 0, 0, 323, 322, 1, 0, 0, 0, 324, 35, 1, 0, 0, 0, 325, 326, 5, 106, 0, 0, 326, 37, 1, 0, 0, 0, 327, 328, 5, 106, 0, 0, 328, 39, 1, 0, 0, 0, 329, 330, 5, 106, 0, 0, 330, 41, 1, 0, 0, 0, 331, 332, 7, 0, 0, 0, 332, 43, 1, 0, 0, 0, 333, 334, 5, 105, 0, 0, 334, 339, 5, 106, 0, 0, 335, 336, 5, 61, 0, 0, 336, 338, 5, 106, 0, 0, 337, 335, 1, 0, 0, 0, 338, 341, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 45, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 343, 5, 9, 0, 0, 343, 344, 3, 16, 8, 0, 344, 47, 1, 0, 0, 0, 345, 347, 5, 16, 0, 0, 346, 348, 3, 50, 25, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 350, 5, 57, 0, 0, 350, 352, 3, 16, 8, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 49, 1, 0, 0, 0, 353, 358, 3, 52, 26, 0, 354, 355, 5, 61, 0, 0, 355, 357, 3, 52, 26, 0, 356, 354, 1, 0, 0, 0, 357, 360, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 51, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 361, 364, 3, 18, 9, 0, 362, 363, 5, 17, 0, 0, 363, 365, 3, 144, 72, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 53, 1, 0, 0, 0, 366, 367, 4, 27, 5, 0, 367, 369, 5, 96, 0, 0, 368, 370, 5, 100, 0, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 5, 97, 0, 0, 372, 373, 5, 63, 0, 0, 373, 374, 5, 96, 0, 0, 374, 375, 3, 56, 28, 0, 375, 376, 5, 97, 0, 0, 376, 379, 1, 0, 0, 0, 377, 379, 3, 56, 28, 0, 378, 366, 1, 0, 0, 0, 378, 377, 1, 0, 0, 0, 379, 55, 1, 0, 0, 0, 380, 385, 3, 72, 36, 0, 381, 382, 5, 63, 0, 0, 382, 384, 3, 72, 36, 0, 383, 381, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 57, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 389, 4, 29, 6, 0, 389, 391, 5, 96, 0, 0, 390, 392, 5, 137, 0, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 394, 5, 97, 0, 0, 394, 395, 5, 63, 0, 0, 395, 396, 5, 96, 0, 0, 396, 397, 3, 60, 30, 0, 397, 398, 5, 97, 0, 0, 398, 401, 1, 0, 0, 0, 399, 401, 3, 60, 30, 0, 400, 388, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 59, 1, 0, 0, 0, 402, 407, 3, 66, 33, 0, 403, 404, 5, 63, 0, 0, 404, 406, 3, 66, 33, 0, 405, 403, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 61, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 410, 415, 3, 58, 29, 0, 411, 412, 5, 61, 0, 0, 412, 414, 3, 58, 29, 0, 413, 411, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 63, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 7, 1, 0, 0, 419, 65, 1, 0, 0, 0, 420, 424, 5, 137, 0, 0, 421, 424, 3, 68, 34, 0, 422, 424, 3, 70, 35, 0, 423, 420, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 67, 1, 0, 0, 0, 425, 428, 5, 75, 0, 0, 426, 428, 5, 94, 0, 0, 427, 425, 1, 0, 0, 0, 427, 426, 1, 0, 0, 0, 428, 69, 1, 0, 0, 0, 429, 432, 5, 93, 0, 0, 430, 432, 5, 95, 0, 0, 431, 429, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 71, 1, 0, 0, 0, 433, 437, 3, 64, 32, 0, 434, 437, 3, 68, 34, 0, 435, 437, 3, 70, 35, 0, 436, 433, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 436, 435, 1, 0, 0, 0, 437, 73, 1, 0, 0, 0, 438, 439, 5, 11, 0, 0, 439, 440, 3, 168, 84, 0, 440, 75, 1, 0, 0, 0, 441, 442, 5, 15, 0, 0, 442, 447, 3, 78, 39, 0, 443, 444, 5, 61, 0, 0, 444, 446, 3, 78, 39, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 77, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 452, 3, 144, 72, 0, 451, 453, 7, 2, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 455, 5, 72, 0, 0, 455, 457, 7, 3, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 79, 1, 0, 0, 0, 458, 459, 5, 31, 0, 0, 459, 460, 3, 62, 31, 0, 460, 81, 1, 0, 0, 0, 461, 462, 5, 30, 0, 0, 462, 463, 3, 62, 31, 0, 463, 83, 1, 0, 0, 0, 464, 465, 5, 33, 0, 0, 465, 470, 3, 86, 43, 0, 466, 467, 5, 61, 0, 0, 467, 469, 3, 86, 43, 0, 468, 466, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 85, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 474, 3, 58, 29, 0, 474, 475, 5, 141, 0, 0, 475, 476, 3, 58, 29, 0, 476, 482, 1, 0, 0, 0, 477, 478, 3, 58, 29, 0, 478, 479, 5, 56, 0, 0, 479, 480, 3, 58, 29, 0, 480, 482, 1, 0, 0, 0, 481, 473, 1, 0, 0, 0, 481, 477, 1, 0, 0, 0, 482, 87, 1, 0, 0, 0, 483, 484, 5, 8, 0, 0, 484, 485, 3, 156, 78, 0, 485, 487, 3, 178, 89, 0, 486, 488, 3, 90, 45, 0, 487, 486, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 89, 1, 0, 0, 0, 489, 494, 3, 92, 46, 0, 490, 491, 5, 61, 0, 0, 491, 493, 3, 92, 46, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 91, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 498, 3, 64, 32, 0, 498, 499, 5, 56, 0, 0, 499, 500, 3, 168, 84, 0, 500, 93, 1, 0, 0, 0, 501, 502, 5, 78, 0, 0, 502, 504, 3, 162, 81, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 95, 1, 0, 0, 0, 505, 506, 5, 10, 0, 0, 506, 507, 3, 156, 78, 0, 507, 512, 3, 178, 89, 0, 508, 509, 5, 61, 0, 0, 509, 511, 3, 178, 89, 0, 510, 508, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 97, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 29, 0, 0, 516, 517, 3, 54, 27, 0, 517, 99, 1, 0, 0, 0, 518, 519, 5, 6, 0, 0, 519, 520, 3, 102, 51, 0, 520, 101, 1, 0, 0, 0, 521, 522, 5, 98, 0, 0, 522, 523, 3, 4, 2, 0, 523, 524, 5, 99, 0, 0, 524, 103, 1, 0, 0, 0, 525, 526, 5, 35, 0, 0, 526, 527, 5, 148, 0, 0, 527, 105, 1, 0, 0, 0, 528, 529, 5, 5, 0, 0, 529, 532, 3, 108, 54, 0, 530, 531, 5, 73, 0, 0, 531, 533, 3, 58, 29, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 543, 1, 0, 0, 0, 534, 535, 5, 78, 0, 0, 535, 540, 3, 110, 55, 0, 536, 537, 5, 61, 0, 0, 537, 539, 3, 110, 55, 0, 538, 536, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 543, 534, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 107, 1, 0, 0, 0, 545, 546, 7, 4, 0, 0, 546, 109, 1, 0, 0, 0, 547, 548, 3, 58, 29, 0, 548, 549, 5, 56, 0, 0, 549, 551, 1, 0, 0, 0, 550, 547, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 3, 58, 29, 0, 553, 111, 1, 0, 0, 0, 554, 555, 5, 14, 0, 0, 555, 556, 3, 168, 84, 0, 556, 113, 1, 0, 0, 0, 557, 558, 5, 4, 0, 0, 558, 561, 3, 54, 27, 0, 559, 560, 5, 73, 0, 0, 560, 562, 3, 54, 27, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 568, 1, 0, 0, 0, 563, 564, 5, 141, 0, 0, 564, 565, 3, 54, 27, 0, 565, 566, 5, 61, 0, 0, 566, 567, 3, 54, 27, 0, 567, 569, 1, 0, 0, 0, 568, 563, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 115, 1, 0, 0, 0, 570, 571, 5, 20, 0, 0, 571, 572, 3, 118, 59, 0, 572, 117, 1, 0, 0, 0, 573, 575, 3, 120, 60, 0, 574, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 119, 1, 0, 0, 0, 578, 579, 5, 98, 0, 0, 579, 580, 3, 122, 61, 0, 580, 581, 5, 99, 0, 0, 581, 121, 1, 0, 0, 0, 582, 583, 6, 61, -1, 0, 583, 584, 3, 124, 62, 0, 584, 590, 1, 0, 0, 0, 585, 586, 10, 1, 0, 0, 586, 587, 5, 50, 0, 0, 587, 589, 3, 124, 62, 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, 123, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 593, 594, 3, 8, 4, 0, 594, 125, 1, 0, 0, 0, 595, 599, 5, 12, 0, 0, 596, 597, 3, 54, 27, 0, 597, 598, 5, 56, 0, 0, 598, 600, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 3, 168, 84, 0, 602, 603, 5, 73, 0, 0, 603, 604, 3, 20, 10, 0, 604, 605, 3, 94, 47, 0, 605, 127, 1, 0, 0, 0, 606, 610, 5, 7, 0, 0, 607, 608, 3, 54, 27, 0, 608, 609, 5, 56, 0, 0, 609, 611, 1, 0, 0, 0, 610, 607, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 3, 156, 78, 0, 613, 614, 3, 94, 47, 0, 614, 129, 1, 0, 0, 0, 615, 616, 5, 22, 0, 0, 616, 617, 5, 119, 0, 0, 617, 620, 3, 50, 25, 0, 618, 619, 5, 57, 0, 0, 619, 621, 3, 16, 8, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 629, 1, 0, 0, 0, 622, 623, 5, 23, 0, 0, 623, 626, 3, 50, 25, 0, 624, 625, 5, 57, 0, 0, 625, 627, 3, 16, 8, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 1, 0, 0, 0, 628, 615, 1, 0, 0, 0, 628, 622, 1, 0, 0, 0, 629, 131, 1, 0, 0, 0, 630, 632, 5, 21, 0, 0, 631, 633, 3, 64, 32, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 637, 1, 0, 0, 0, 634, 636, 3, 134, 67, 0, 635, 634, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 133, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 641, 5, 114, 0, 0, 641, 642, 5, 57, 0, 0, 642, 652, 3, 54, 27, 0, 643, 644, 5, 115, 0, 0, 644, 645, 5, 57, 0, 0, 645, 652, 3, 16, 8, 0, 646, 647, 5, 113, 0, 0, 647, 648, 5, 57, 0, 0, 648, 652, 3, 54, 27, 0, 649, 650, 5, 78, 0, 0, 650, 652, 3, 162, 81, 0, 651, 640, 1, 0, 0, 0, 651, 643, 1, 0, 0, 0, 651, 646, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 135, 1, 0, 0, 0, 653, 654, 5, 28, 0, 0, 654, 655, 3, 34, 17, 0, 655, 656, 5, 73, 0, 0, 656, 657, 3, 62, 31, 0, 657, 137, 1, 0, 0, 0, 658, 659, 5, 32, 0, 0, 659, 660, 3, 62, 31, 0, 660, 139, 1, 0, 0, 0, 661, 662, 5, 34, 0, 0, 662, 663, 3, 142, 71, 0, 663, 664, 5, 60, 0, 0, 664, 141, 1, 0, 0, 0, 665, 666, 3, 64, 32, 0, 666, 667, 5, 56, 0, 0, 667, 668, 3, 168, 84, 0, 668, 143, 1, 0, 0, 0, 669, 670, 6, 72, -1, 0, 670, 671, 5, 70, 0, 0, 671, 699, 3, 144, 72, 8, 672, 699, 3, 152, 76, 0, 673, 699, 3, 146, 73, 0, 674, 676, 3, 152, 76, 0, 675, 677, 5, 70, 0, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 66, 0, 0, 679, 680, 5, 98, 0, 0, 680, 685, 3, 152, 76, 0, 681, 682, 5, 61, 0, 0, 682, 684, 3, 152, 76, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 689, 5, 99, 0, 0, 689, 699, 1, 0, 0, 0, 690, 691, 3, 152, 76, 0, 691, 693, 5, 67, 0, 0, 692, 694, 5, 70, 0, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 71, 0, 0, 696, 699, 1, 0, 0, 0, 697, 699, 3, 150, 75, 0, 698, 669, 1, 0, 0, 0, 698, 672, 1, 0, 0, 0, 698, 673, 1, 0, 0, 0, 698, 674, 1, 0, 0, 0, 698, 690, 1, 0, 0, 0, 698, 697, 1, 0, 0, 0, 699, 708, 1, 0, 0, 0, 700, 701, 10, 5, 0, 0, 701, 702, 5, 54, 0, 0, 702, 707, 3, 144, 72, 6, 703, 704, 10, 4, 0, 0, 704, 705, 5, 74, 0, 0, 705, 707, 3, 144, 72, 5, 706, 700, 1, 0, 0, 0, 706, 703, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 145, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 713, 3, 152, 76, 0, 712, 714, 5, 70, 0, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 69, 0, 0, 716, 717, 3, 148, 74, 0, 717, 758, 1, 0, 0, 0, 718, 720, 3, 152, 76, 0, 719, 721, 5, 70, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 5, 76, 0, 0, 723, 724, 3, 178, 89, 0, 724, 758, 1, 0, 0, 0, 725, 727, 3, 152, 76, 0, 726, 728, 5, 70, 0, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 5, 69, 0, 0, 730, 731, 5, 98, 0, 0, 731, 736, 3, 178, 89, 0, 732, 733, 5, 61, 0, 0, 733, 735, 3, 178, 89, 0, 734, 732, 1, 0, 0, 0, 735, 738, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 739, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 739, 740, 5, 99, 0, 0, 740, 758, 1, 0, 0, 0, 741, 743, 3, 152, 76, 0, 742, 744, 5, 70, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 76, 0, 0, 746, 747, 5, 98, 0, 0, 747, 752, 3, 178, 89, 0, 748, 749, 5, 61, 0, 0, 749, 751, 3, 178, 89, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 756, 5, 99, 0, 0, 756, 758, 1, 0, 0, 0, 757, 711, 1, 0, 0, 0, 757, 718, 1, 0, 0, 0, 757, 725, 1, 0, 0, 0, 757, 741, 1, 0, 0, 0, 758, 147, 1, 0, 0, 0, 759, 762, 3, 178, 89, 0, 760, 762, 3, 68, 34, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 149, 1, 0, 0, 0, 763, 766, 3, 54, 27, 0, 764, 765, 5, 58, 0, 0, 765, 767, 3, 12, 6, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 59, 0, 0, 769, 770, 3, 168, 84, 0, 770, 151, 1, 0, 0, 0, 771, 777, 3, 154, 77, 0, 772, 773, 3, 154, 77, 0, 773, 774, 3, 180, 90, 0, 774, 775, 3, 154, 77, 0, 775, 777, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 777, 153, 1, 0, 0, 0, 778, 779, 6, 77, -1, 0, 779, 783, 3, 156, 78, 0, 780, 781, 7, 5, 0, 0, 781, 783, 3, 154, 77, 3, 782, 778, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 792, 1, 0, 0, 0, 784, 785, 10, 2, 0, 0, 785, 786, 7, 6, 0, 0, 786, 791, 3, 154, 77, 3, 787, 788, 10, 1, 0, 0, 788, 789, 7, 5, 0, 0, 789, 791, 3, 154, 77, 2, 790, 784, 1, 0, 0, 0, 790, 787, 1, 0, 0, 0, 791, 794, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 155, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 795, 796, 6, 78, -1, 0, 796, 804, 3, 168, 84, 0, 797, 804, 3, 54, 27, 0, 798, 804, 3, 158, 79, 0, 799, 800, 5, 98, 0, 0, 800, 801, 3, 144, 72, 0, 801, 802, 5, 99, 0, 0, 802, 804, 1, 0, 0, 0, 803, 795, 1, 0, 0, 0, 803, 797, 1, 0, 0, 0, 803, 798, 1, 0, 0, 0, 803, 799, 1, 0, 0, 0, 804, 810, 1, 0, 0, 0, 805, 806, 10, 1, 0, 0, 806, 807, 5, 58, 0, 0, 807, 809, 3, 12, 6, 0, 808, 805, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 157, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 814, 3, 160, 80, 0, 814, 828, 5, 98, 0, 0, 815, 829, 5, 88, 0, 0, 816, 821, 3, 144, 72, 0, 817, 818, 5, 61, 0, 0, 818, 820, 3, 144, 72, 0, 819, 817, 1, 0, 0, 0, 820, 823, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 826, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 825, 5, 61, 0, 0, 825, 827, 3, 162, 81, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 815, 1, 0, 0, 0, 828, 816, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 5, 99, 0, 0, 831, 159, 1, 0, 0, 0, 832, 836, 3, 72, 36, 0, 833, 836, 5, 65, 0, 0, 834, 836, 5, 68, 0, 0, 835, 832, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 835, 834, 1, 0, 0, 0, 836, 161, 1, 0, 0, 0, 837, 846, 5, 91, 0, 0, 838, 843, 3, 164, 82, 0, 839, 840, 5, 61, 0, 0, 840, 842, 3, 164, 82, 0, 841, 839, 1, 0, 0, 0, 842, 845, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 846, 838, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 92, 0, 0, 849, 163, 1, 0, 0, 0, 850, 851, 3, 178, 89, 0, 851, 852, 5, 59, 0, 0, 852, 853, 3, 166, 83, 0, 853, 165, 1, 0, 0, 0, 854, 857, 3, 168, 84, 0, 855, 857, 3, 162, 81, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 167, 1, 0, 0, 0, 858, 901, 5, 71, 0, 0, 859, 860, 3, 176, 88, 0, 860, 861, 5, 100, 0, 0, 861, 901, 1, 0, 0, 0, 862, 901, 3, 174, 87, 0, 863, 901, 3, 176, 88, 0, 864, 901, 3, 170, 85, 0, 865, 901, 3, 68, 34, 0, 866, 901, 3, 178, 89, 0, 867, 868, 5, 96, 0, 0, 868, 873, 3, 172, 86, 0, 869, 870, 5, 61, 0, 0, 870, 872, 3, 172, 86, 0, 871, 869, 1, 0, 0, 0, 872, 875, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 876, 877, 5, 97, 0, 0, 877, 901, 1, 0, 0, 0, 878, 879, 5, 96, 0, 0, 879, 884, 3, 170, 85, 0, 880, 881, 5, 61, 0, 0, 881, 883, 3, 170, 85, 0, 882, 880, 1, 0, 0, 0, 883, 886, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 887, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 887, 888, 5, 97, 0, 0, 888, 901, 1, 0, 0, 0, 889, 890, 5, 96, 0, 0, 890, 895, 3, 178, 89, 0, 891, 892, 5, 61, 0, 0, 892, 894, 3, 178, 89, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 97, 0, 0, 899, 901, 1, 0, 0, 0, 900, 858, 1, 0, 0, 0, 900, 859, 1, 0, 0, 0, 900, 862, 1, 0, 0, 0, 900, 863, 1, 0, 0, 0, 900, 864, 1, 0, 0, 0, 900, 865, 1, 0, 0, 0, 900, 866, 1, 0, 0, 0, 900, 867, 1, 0, 0, 0, 900, 878, 1, 0, 0, 0, 900, 889, 1, 0, 0, 0, 901, 169, 1, 0, 0, 0, 902, 903, 7, 7, 0, 0, 903, 171, 1, 0, 0, 0, 904, 907, 3, 174, 87, 0, 905, 907, 3, 176, 88, 0, 906, 904, 1, 0, 0, 0, 906, 905, 1, 0, 0, 0, 907, 173, 1, 0, 0, 0, 908, 910, 7, 5, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 53, 0, 0, 912, 175, 1, 0, 0, 0, 913, 915, 7, 5, 0, 0, 914, 913, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 52, 0, 0, 917, 177, 1, 0, 0, 0, 918, 919, 5, 51, 0, 0, 919, 179, 1, 0, 0, 0, 920, 921, 7, 8, 0, 0, 921, 181, 1, 0, 0, 0, 922, 923, 7, 9, 0, 0, 923, 924, 5, 123, 0, 0, 924, 925, 3, 184, 92, 0, 925, 926, 3, 186, 93, 0, 926, 183, 1, 0, 0, 0, 927, 928, 4, 92, 13, 0, 928, 930, 3, 34, 17, 0, 929, 931, 5, 141, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 5, 106, 0, 0, 933, 936, 1, 0, 0, 0, 934, 936, 3, 34, 17, 0, 935, 927, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 185, 1, 0, 0, 0, 937, 938, 5, 73, 0, 0, 938, 943, 3, 144, 72, 0, 939, 940, 5, 61, 0, 0, 940, 942, 3, 144, 72, 0, 941, 939, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 187, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 92, 191, 208, 217, 243, 258, 264, 273, 279, 292, 296, 301, 309, 323, 339, 347, 351, 358, 364, 369, 378, 385, 391, 400, 407, 415, 423, 427, 431, 436, 447, 452, 456, 470, 481, 487, 494, 503, 512, 532, 540, 543, 550, 561, 568, 576, 590, 599, 610, 620, 626, 628, 632, 637, 651, 676, 685, 693, 698, 706, 708, 713, 720, 727, 736, 743, 752, 757, 761, 766, 776, 782, 790, 792, 803, 810, 821, 826, 828, 835, 843, 846, 856, 873, 884, 895, 900, 906, 909, 914, 930, 935, 943]
\ 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 bd51bf8b75e86..e4b05862b2f21 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
@@ -80,12 +80,13 @@ public class EsqlBaseParser extends ParserConfig {
RULE_rerankCommand = 63, RULE_completionCommand = 64, RULE_inlineStatsCommand = 65,
RULE_fuseCommand = 66, RULE_fuseConfiguration = 67, RULE_lookupCommand = 68,
RULE_insistCommand = 69, RULE_setCommand = 70, RULE_setField = 71, RULE_booleanExpression = 72,
- RULE_regexBooleanExpression = 73, RULE_matchBooleanExpression = 74, RULE_valueExpression = 75,
- RULE_operatorExpression = 76, RULE_primaryExpression = 77, RULE_functionExpression = 78,
- RULE_functionName = 79, RULE_mapExpression = 80, RULE_entryExpression = 81,
- RULE_mapValue = 82, RULE_constant = 83, RULE_booleanValue = 84, RULE_numericValue = 85,
- RULE_decimalValue = 86, RULE_integerValue = 87, RULE_string = 88, RULE_comparisonOperator = 89,
- RULE_joinCommand = 90, RULE_joinTarget = 91, RULE_joinCondition = 92;
+ RULE_regexBooleanExpression = 73, RULE_stringOrParameter = 74, RULE_matchBooleanExpression = 75,
+ RULE_valueExpression = 76, RULE_operatorExpression = 77, RULE_primaryExpression = 78,
+ RULE_functionExpression = 79, RULE_functionName = 80, RULE_mapExpression = 81,
+ RULE_entryExpression = 82, RULE_mapValue = 83, RULE_constant = 84, RULE_booleanValue = 85,
+ RULE_numericValue = 86, RULE_decimalValue = 87, RULE_integerValue = 88,
+ RULE_string = 89, RULE_comparisonOperator = 90, RULE_joinCommand = 91,
+ RULE_joinTarget = 92, RULE_joinCondition = 93;
private static String[] makeRuleNames() {
return new String[] {
"statements", "singleStatement", "query", "sourceCommand", "processingCommand",
@@ -105,11 +106,11 @@ private static String[] makeRuleNames() {
"forkSubQueryProcessingCommand", "rerankCommand", "completionCommand",
"inlineStatsCommand", "fuseCommand", "fuseConfiguration", "lookupCommand",
"insistCommand", "setCommand", "setField", "booleanExpression", "regexBooleanExpression",
- "matchBooleanExpression", "valueExpression", "operatorExpression", "primaryExpression",
- "functionExpression", "functionName", "mapExpression", "entryExpression",
- "mapValue", "constant", "booleanValue", "numericValue", "decimalValue",
- "integerValue", "string", "comparisonOperator", "joinCommand", "joinTarget",
- "joinCondition"
+ "stringOrParameter", "matchBooleanExpression", "valueExpression", "operatorExpression",
+ "primaryExpression", "functionExpression", "functionName", "mapExpression",
+ "entryExpression", "mapValue", "constant", "booleanValue", "numericValue",
+ "decimalValue", "integerValue", "string", "comparisonOperator", "joinCommand",
+ "joinTarget", "joinCondition"
};
}
public static final String[] ruleNames = makeRuleNames();
@@ -259,25 +260,25 @@ public final StatementsContext statements() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(189);
+ setState(191);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(186);
+ setState(188);
setCommand();
}
}
}
- setState(191);
+ setState(193);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
}
- setState(192);
+ setState(194);
singleStatement();
- setState(193);
+ setState(195);
match(EOF);
}
}
@@ -324,9 +325,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(195);
+ setState(197);
query(0);
- setState(196);
+ setState(198);
match(EOF);
}
}
@@ -422,11 +423,11 @@ private QueryContext query(int _p) throws RecognitionException {
_ctx = _localctx;
_prevctx = _localctx;
- setState(199);
+ setState(201);
sourceCommand();
}
_ctx.stop = _input.LT(-1);
- setState(206);
+ setState(208);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,1,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -437,16 +438,16 @@ private QueryContext query(int _p) throws RecognitionException {
{
_localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_query);
- setState(201);
+ setState(203);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(202);
+ setState(204);
match(PIPE);
- setState(203);
+ setState(205);
processingCommand();
}
}
}
- setState(208);
+ setState(210);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,1,_ctx);
}
@@ -504,43 +505,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException {
SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState());
enterRule(_localctx, 6, RULE_sourceCommand);
try {
- setState(215);
+ setState(217);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(209);
+ setState(211);
fromCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(210);
+ setState(212);
rowCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(211);
+ setState(213);
showCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(212);
+ setState(214);
timeSeriesCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(213);
+ setState(215);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(214);
+ setState(216);
explainCommand();
}
break;
@@ -649,164 +650,164 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState());
enterRule(_localctx, 8, RULE_processingCommand);
try {
- setState(241);
+ setState(243);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,3,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(217);
+ setState(219);
evalCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(218);
+ setState(220);
whereCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(219);
+ setState(221);
keepCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(220);
+ setState(222);
limitCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(221);
+ setState(223);
statsCommand();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(222);
+ setState(224);
sortCommand();
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
- setState(223);
+ setState(225);
dropCommand();
}
break;
case 8:
enterOuterAlt(_localctx, 8);
{
- setState(224);
+ setState(226);
renameCommand();
}
break;
case 9:
enterOuterAlt(_localctx, 9);
{
- setState(225);
+ setState(227);
dissectCommand();
}
break;
case 10:
enterOuterAlt(_localctx, 10);
{
- setState(226);
+ setState(228);
grokCommand();
}
break;
case 11:
enterOuterAlt(_localctx, 11);
{
- setState(227);
+ setState(229);
enrichCommand();
}
break;
case 12:
enterOuterAlt(_localctx, 12);
{
- setState(228);
+ setState(230);
mvExpandCommand();
}
break;
case 13:
enterOuterAlt(_localctx, 13);
{
- setState(229);
+ setState(231);
joinCommand();
}
break;
case 14:
enterOuterAlt(_localctx, 14);
{
- setState(230);
+ setState(232);
changePointCommand();
}
break;
case 15:
enterOuterAlt(_localctx, 15);
{
- setState(231);
+ setState(233);
completionCommand();
}
break;
case 16:
enterOuterAlt(_localctx, 16);
{
- setState(232);
+ setState(234);
sampleCommand();
}
break;
case 17:
enterOuterAlt(_localctx, 17);
{
- setState(233);
+ setState(235);
forkCommand();
}
break;
case 18:
enterOuterAlt(_localctx, 18);
{
- setState(234);
+ setState(236);
rerankCommand();
}
break;
case 19:
enterOuterAlt(_localctx, 19);
{
- setState(235);
+ setState(237);
inlineStatsCommand();
}
break;
case 20:
enterOuterAlt(_localctx, 20);
{
- setState(236);
+ setState(238);
fuseCommand();
}
break;
case 21:
enterOuterAlt(_localctx, 21);
{
- setState(237);
+ setState(239);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(238);
+ setState(240);
lookupCommand();
}
break;
case 22:
enterOuterAlt(_localctx, 22);
{
- setState(239);
+ setState(241);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(240);
+ setState(242);
insistCommand();
}
break;
@@ -855,9 +856,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(243);
+ setState(245);
match(WHERE);
- setState(244);
+ setState(246);
booleanExpression(0);
}
}
@@ -915,7 +916,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(246);
+ setState(248);
identifier();
}
}
@@ -962,9 +963,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(248);
+ setState(250);
match(ROW);
- setState(249);
+ setState(251);
fields();
}
}
@@ -1018,23 +1019,23 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(251);
+ setState(253);
field();
- setState(256);
+ setState(258);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,4,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(252);
+ setState(254);
match(COMMA);
- setState(253);
+ setState(255);
field();
}
}
}
- setState(258);
+ setState(260);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,4,_ctx);
}
@@ -1086,19 +1087,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(262);
+ setState(264);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,5,_ctx) ) {
case 1:
{
- setState(259);
+ setState(261);
qualifiedName();
- setState(260);
+ setState(262);
match(ASSIGN);
}
break;
}
- setState(264);
+ setState(266);
booleanExpression(0);
}
}
@@ -1152,23 +1153,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(266);
+ setState(268);
rerankField();
- setState(271);
+ setState(273);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,6,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(267);
+ setState(269);
match(COMMA);
- setState(268);
+ setState(270);
rerankField();
}
}
}
- setState(273);
+ setState(275);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,6,_ctx);
}
@@ -1220,16 +1221,16 @@ public final RerankFieldContext rerankField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(274);
+ setState(276);
qualifiedName();
- setState(277);
+ setState(279);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
case 1:
{
- setState(275);
+ setState(277);
match(ASSIGN);
- setState(276);
+ setState(278);
booleanExpression(0);
}
break;
@@ -1279,9 +1280,9 @@ public final FromCommandContext fromCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(279);
+ setState(281);
match(FROM);
- setState(280);
+ setState(282);
indexPatternAndMetadataFields();
}
}
@@ -1328,9 +1329,9 @@ public final TimeSeriesCommandContext timeSeriesCommand() throws RecognitionExce
try {
enterOuterAlt(_localctx, 1);
{
- setState(282);
+ setState(284);
match(TS);
- setState(283);
+ setState(285);
indexPatternAndMetadataFields();
}
}
@@ -1387,32 +1388,32 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields(
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(285);
+ setState(287);
indexPatternOrSubquery();
- setState(290);
+ setState(292);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(286);
+ setState(288);
match(COMMA);
- setState(287);
+ setState(289);
indexPatternOrSubquery();
}
}
}
- setState(292);
+ setState(294);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
}
- setState(294);
+ setState(296);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) {
case 1:
{
- setState(293);
+ setState(295);
metadata();
}
break;
@@ -1462,22 +1463,22 @@ public final IndexPatternOrSubqueryContext indexPatternOrSubquery() throws Recog
IndexPatternOrSubqueryContext _localctx = new IndexPatternOrSubqueryContext(_ctx, getState());
enterRule(_localctx, 30, RULE_indexPatternOrSubquery);
try {
- setState(299);
+ setState(301);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(296);
+ setState(298);
indexPattern();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(297);
+ setState(299);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(298);
+ setState(300);
subquery();
}
break;
@@ -1538,27 +1539,27 @@ public final SubqueryContext subquery() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(301);
+ setState(303);
match(LP);
- setState(302);
+ setState(304);
fromCommand();
- setState(307);
+ setState(309);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==PIPE) {
{
{
- setState(303);
+ setState(305);
match(PIPE);
- setState(304);
+ setState(306);
processingCommand();
}
}
- setState(309);
+ setState(311);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(310);
+ setState(312);
match(RP);
}
}
@@ -1613,35 +1614,35 @@ public final IndexPatternContext indexPattern() throws RecognitionException {
IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState());
enterRule(_localctx, 34, RULE_indexPattern);
try {
- setState(321);
+ setState(323);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(312);
+ setState(314);
clusterString();
- setState(313);
+ setState(315);
match(COLON);
- setState(314);
+ setState(316);
unquotedIndexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(316);
+ setState(318);
unquotedIndexString();
- setState(317);
+ setState(319);
match(CAST_OP);
- setState(318);
+ setState(320);
selectorString();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(320);
+ setState(322);
indexString();
}
break;
@@ -1687,7 +1688,7 @@ public final ClusterStringContext clusterString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(323);
+ setState(325);
match(UNQUOTED_SOURCE);
}
}
@@ -1731,7 +1732,7 @@ public final SelectorStringContext selectorString() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(325);
+ setState(327);
match(UNQUOTED_SOURCE);
}
}
@@ -1775,7 +1776,7 @@ public final UnquotedIndexStringContext unquotedIndexString() throws Recognition
try {
enterOuterAlt(_localctx, 1);
{
- setState(327);
+ setState(329);
match(UNQUOTED_SOURCE);
}
}
@@ -1821,7 +1822,7 @@ public final IndexStringContext indexString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(329);
+ setState(331);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -1882,25 +1883,25 @@ public final MetadataContext metadata() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(331);
+ setState(333);
match(METADATA);
- setState(332);
+ setState(334);
match(UNQUOTED_SOURCE);
- setState(337);
+ setState(339);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,13,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(333);
+ setState(335);
match(COMMA);
- setState(334);
+ setState(336);
match(UNQUOTED_SOURCE);
}
}
}
- setState(339);
+ setState(341);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,13,_ctx);
}
@@ -1949,9 +1950,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(340);
+ setState(342);
match(EVAL);
- setState(341);
+ setState(343);
fields();
}
}
@@ -2004,26 +2005,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(343);
- match(STATS);
setState(345);
+ match(STATS);
+ setState(347);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
case 1:
{
- setState(344);
+ setState(346);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(349);
+ setState(351);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
{
- setState(347);
+ setState(349);
match(BY);
- setState(348);
+ setState(350);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -2080,23 +2081,23 @@ public final AggFieldsContext aggFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(351);
+ setState(353);
aggField();
- setState(356);
+ setState(358);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(352);
+ setState(354);
match(COMMA);
- setState(353);
+ setState(355);
aggField();
}
}
}
- setState(358);
+ setState(360);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
}
@@ -2148,16 +2149,16 @@ public final AggFieldContext aggField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(359);
+ setState(361);
field();
- setState(362);
+ setState(364);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
case 1:
{
- setState(360);
+ setState(362);
match(WHERE);
- setState(361);
+ setState(363);
booleanExpression(0);
}
break;
@@ -2217,42 +2218,42 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException {
enterRule(_localctx, 54, RULE_qualifiedName);
int _la;
try {
- setState(376);
+ setState(378);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(364);
+ setState(366);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(365);
- match(OPENING_BRACKET);
setState(367);
+ match(OPENING_BRACKET);
+ setState(369);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==UNQUOTED_IDENTIFIER) {
{
- setState(366);
+ setState(368);
((QualifiedNameContext)_localctx).qualifier = match(UNQUOTED_IDENTIFIER);
}
}
- setState(369);
+ setState(371);
match(CLOSING_BRACKET);
- setState(370);
+ setState(372);
match(DOT);
- setState(371);
+ setState(373);
match(OPENING_BRACKET);
- setState(372);
+ setState(374);
((QualifiedNameContext)_localctx).name = fieldName();
- setState(373);
+ setState(375);
match(CLOSING_BRACKET);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(375);
+ setState(377);
((QualifiedNameContext)_localctx).name = fieldName();
}
break;
@@ -2308,23 +2309,23 @@ public final FieldNameContext fieldName() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(378);
+ setState(380);
identifierOrParameter();
- setState(383);
+ setState(385);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,20,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(379);
+ setState(381);
match(DOT);
- setState(380);
+ setState(382);
identifierOrParameter();
}
}
}
- setState(385);
+ setState(387);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,20,_ctx);
}
@@ -2383,42 +2384,42 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti
enterRule(_localctx, 58, RULE_qualifiedNamePattern);
int _la;
try {
- setState(398);
+ setState(400);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(386);
+ setState(388);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(387);
- match(OPENING_BRACKET);
setState(389);
+ match(OPENING_BRACKET);
+ setState(391);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==ID_PATTERN) {
{
- setState(388);
+ setState(390);
((QualifiedNamePatternContext)_localctx).qualifier = match(ID_PATTERN);
}
}
- setState(391);
+ setState(393);
match(CLOSING_BRACKET);
- setState(392);
+ setState(394);
match(DOT);
- setState(393);
+ setState(395);
match(OPENING_BRACKET);
- setState(394);
+ setState(396);
((QualifiedNamePatternContext)_localctx).name = fieldNamePattern();
- setState(395);
+ setState(397);
match(CLOSING_BRACKET);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(397);
+ setState(399);
((QualifiedNamePatternContext)_localctx).name = fieldNamePattern();
}
break;
@@ -2475,23 +2476,23 @@ public final FieldNamePatternContext fieldNamePattern() throws RecognitionExcept
enterOuterAlt(_localctx, 1);
{
{
- setState(400);
+ setState(402);
identifierPattern();
- setState(405);
+ setState(407);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,23,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(401);
+ setState(403);
match(DOT);
- setState(402);
+ setState(404);
identifierPattern();
}
}
}
- setState(407);
+ setState(409);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,23,_ctx);
}
@@ -2548,23 +2549,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(408);
+ setState(410);
qualifiedNamePattern();
- setState(413);
+ setState(415);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,24,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(409);
+ setState(411);
match(COMMA);
- setState(410);
+ setState(412);
qualifiedNamePattern();
}
}
}
- setState(415);
+ setState(417);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,24,_ctx);
}
@@ -2612,7 +2613,7 @@ public final IdentifierContext identifier() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(416);
+ setState(418);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -2668,13 +2669,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
enterRule(_localctx, 66, RULE_identifierPattern);
try {
- setState(421);
+ setState(423);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(418);
+ setState(420);
match(ID_PATTERN);
}
break;
@@ -2682,7 +2683,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(419);
+ setState(421);
parameter();
}
break;
@@ -2690,7 +2691,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(420);
+ setState(422);
doubleParameter();
}
break;
@@ -2766,14 +2767,14 @@ public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
enterRule(_localctx, 68, RULE_parameter);
try {
- setState(425);
+ setState(427);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(423);
+ setState(425);
match(PARAM);
}
break;
@@ -2781,7 +2782,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(424);
+ setState(426);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -2857,14 +2858,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
enterRule(_localctx, 70, RULE_doubleParameter);
try {
- setState(429);
+ setState(431);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(427);
+ setState(429);
match(DOUBLE_PARAMS);
}
break;
@@ -2872,7 +2873,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(428);
+ setState(430);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -2926,14 +2927,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
enterRule(_localctx, 72, RULE_identifierOrParameter);
try {
- setState(434);
+ setState(436);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(431);
+ setState(433);
identifier();
}
break;
@@ -2941,7 +2942,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(432);
+ setState(434);
parameter();
}
break;
@@ -2949,7 +2950,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(433);
+ setState(435);
doubleParameter();
}
break;
@@ -3000,9 +3001,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(436);
+ setState(438);
match(LIMIT);
- setState(437);
+ setState(439);
constant();
}
}
@@ -3057,25 +3058,25 @@ public final SortCommandContext sortCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(439);
+ setState(441);
match(SORT);
- setState(440);
+ setState(442);
orderExpression();
- setState(445);
+ setState(447);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,29,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(441);
+ setState(443);
match(COMMA);
- setState(442);
+ setState(444);
orderExpression();
}
}
}
- setState(447);
+ setState(449);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,29,_ctx);
}
@@ -3131,14 +3132,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(448);
- booleanExpression(0);
setState(450);
+ booleanExpression(0);
+ setState(452);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
case 1:
{
- setState(449);
+ setState(451);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -3152,14 +3153,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(454);
+ setState(456);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
case 1:
{
- setState(452);
+ setState(454);
match(NULLS);
- setState(453);
+ setState(455);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -3218,9 +3219,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(456);
+ setState(458);
match(KEEP);
- setState(457);
+ setState(459);
qualifiedNamePatterns();
}
}
@@ -3267,9 +3268,9 @@ public final DropCommandContext dropCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(459);
+ setState(461);
match(DROP);
- setState(460);
+ setState(462);
qualifiedNamePatterns();
}
}
@@ -3324,25 +3325,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(462);
+ setState(464);
match(RENAME);
- setState(463);
+ setState(465);
renameClause();
- setState(468);
+ setState(470);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,32,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(464);
+ setState(466);
match(COMMA);
- setState(465);
+ setState(467);
renameClause();
}
}
}
- setState(470);
+ setState(472);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,32,_ctx);
}
@@ -3395,28 +3396,28 @@ public final RenameClauseContext renameClause() throws RecognitionException {
RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState());
enterRule(_localctx, 86, RULE_renameClause);
try {
- setState(479);
+ setState(481);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(471);
+ setState(473);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(472);
+ setState(474);
match(AS);
- setState(473);
+ setState(475);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(475);
+ setState(477);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(476);
+ setState(478);
match(ASSIGN);
- setState(477);
+ setState(479);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
}
break;
@@ -3471,18 +3472,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(481);
+ setState(483);
match(DISSECT);
- setState(482);
+ setState(484);
primaryExpression(0);
- setState(483);
- string();
setState(485);
+ string();
+ setState(487);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
case 1:
{
- setState(484);
+ setState(486);
dissectCommandOptions();
}
break;
@@ -3539,23 +3540,23 @@ public final DissectCommandOptionsContext dissectCommandOptions() throws Recogni
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(487);
+ setState(489);
dissectCommandOption();
- setState(492);
+ setState(494);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,35,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(488);
+ setState(490);
match(COMMA);
- setState(489);
+ setState(491);
dissectCommandOption();
}
}
}
- setState(494);
+ setState(496);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,35,_ctx);
}
@@ -3607,11 +3608,11 @@ public final DissectCommandOptionContext dissectCommandOption() throws Recogniti
try {
enterOuterAlt(_localctx, 1);
{
- setState(495);
+ setState(497);
identifier();
- setState(496);
+ setState(498);
match(ASSIGN);
- setState(497);
+ setState(499);
constant();
}
}
@@ -3658,14 +3659,14 @@ public final CommandNamedParametersContext commandNamedParameters() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(501);
+ setState(503);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
{
- setState(499);
+ setState(501);
match(WITH);
- setState(500);
+ setState(502);
mapExpression();
}
break;
@@ -3726,27 +3727,27 @@ public final GrokCommandContext grokCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(503);
+ setState(505);
match(GROK);
- setState(504);
+ setState(506);
primaryExpression(0);
- setState(505);
+ setState(507);
string();
- setState(510);
+ setState(512);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,37,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(506);
+ setState(508);
match(COMMA);
- setState(507);
+ setState(509);
string();
}
}
}
- setState(512);
+ setState(514);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,37,_ctx);
}
@@ -3795,9 +3796,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(513);
+ setState(515);
match(MV_EXPAND);
- setState(514);
+ setState(516);
qualifiedName();
}
}
@@ -3844,9 +3845,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(516);
+ setState(518);
match(DEV_EXPLAIN);
- setState(517);
+ setState(519);
subqueryExpression();
}
}
@@ -3894,11 +3895,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(519);
+ setState(521);
match(LP);
- setState(520);
+ setState(522);
query(0);
- setState(521);
+ setState(523);
match(RP);
}
}
@@ -3955,9 +3956,9 @@ public final ShowCommandContext showCommand() throws RecognitionException {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(523);
+ setState(525);
match(SHOW);
- setState(524);
+ setState(526);
match(INFO);
}
}
@@ -4022,46 +4023,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(526);
+ setState(528);
match(ENRICH);
- setState(527);
+ setState(529);
((EnrichCommandContext)_localctx).policyName = enrichPolicyName();
- setState(530);
+ setState(532);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(528);
+ setState(530);
match(ON);
- setState(529);
+ setState(531);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(541);
+ setState(543);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
- setState(532);
+ setState(534);
match(WITH);
- setState(533);
+ setState(535);
enrichWithClause();
- setState(538);
+ setState(540);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,39,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(534);
+ setState(536);
match(COMMA);
- setState(535);
+ setState(537);
enrichWithClause();
}
}
}
- setState(540);
+ setState(542);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,39,_ctx);
}
@@ -4112,7 +4113,7 @@ public final EnrichPolicyNameContext enrichPolicyName() throws RecognitionExcept
try {
enterOuterAlt(_localctx, 1);
{
- setState(543);
+ setState(545);
_la = _input.LA(1);
if ( !(_la==ENRICH_POLICY_NAME || _la==QUOTED_STRING) ) {
_errHandler.recoverInline(this);
@@ -4172,19 +4173,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept
try {
enterOuterAlt(_localctx, 1);
{
- setState(548);
+ setState(550);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) {
case 1:
{
- setState(545);
+ setState(547);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(546);
+ setState(548);
match(ASSIGN);
}
break;
}
- setState(550);
+ setState(552);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -4232,9 +4233,9 @@ public final SampleCommandContext sampleCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(552);
+ setState(554);
match(SAMPLE);
- setState(553);
+ setState(555);
((SampleCommandContext)_localctx).probability = constant();
}
}
@@ -4291,34 +4292,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(555);
+ setState(557);
match(CHANGE_POINT);
- setState(556);
+ setState(558);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(559);
+ setState(561);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) {
case 1:
{
- setState(557);
+ setState(559);
match(ON);
- setState(558);
+ setState(560);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(566);
+ setState(568);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) {
case 1:
{
- setState(561);
+ setState(563);
match(AS);
- setState(562);
+ setState(564);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(563);
+ setState(565);
match(COMMA);
- setState(564);
+ setState(566);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -4368,9 +4369,9 @@ public final ForkCommandContext forkCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(568);
+ setState(570);
match(FORK);
- setState(569);
+ setState(571);
forkSubQueries();
}
}
@@ -4420,7 +4421,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(572);
+ setState(574);
_errHandler.sync(this);
_alt = 1;
do {
@@ -4428,7 +4429,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
case 1:
{
{
- setState(571);
+ setState(573);
forkSubQuery();
}
}
@@ -4436,7 +4437,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException
default:
throw new NoViableAltException(this);
}
- setState(574);
+ setState(576);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,44,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
@@ -4486,11 +4487,11 @@ public final ForkSubQueryContext forkSubQuery() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(576);
+ setState(578);
match(LP);
- setState(577);
+ setState(579);
forkSubQueryCommand(0);
- setState(578);
+ setState(580);
match(RP);
}
}
@@ -4586,11 +4587,11 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
_ctx = _localctx;
_prevctx = _localctx;
- setState(581);
+ setState(583);
forkSubQueryProcessingCommand();
}
_ctx.stop = _input.LT(-1);
- setState(588);
+ setState(590);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,45,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -4601,16 +4602,16 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio
{
_localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand);
- setState(583);
+ setState(585);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(584);
+ setState(586);
match(PIPE);
- setState(585);
+ setState(587);
forkSubQueryProcessingCommand();
}
}
}
- setState(590);
+ setState(592);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,45,_ctx);
}
@@ -4658,7 +4659,7 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand(
try {
enterOuterAlt(_localctx, 1);
{
- setState(591);
+ setState(593);
processingCommand();
}
}
@@ -4718,27 +4719,27 @@ public final RerankCommandContext rerankCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(593);
+ setState(595);
match(RERANK);
- setState(597);
+ setState(599);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
case 1:
{
- setState(594);
+ setState(596);
((RerankCommandContext)_localctx).targetField = qualifiedName();
- setState(595);
+ setState(597);
match(ASSIGN);
}
break;
}
- setState(599);
+ setState(601);
((RerankCommandContext)_localctx).queryText = constant();
- setState(600);
+ setState(602);
match(ON);
- setState(601);
+ setState(603);
rerankFields();
- setState(602);
+ setState(604);
commandNamedParameters();
}
}
@@ -4794,23 +4795,23 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce
try {
enterOuterAlt(_localctx, 1);
{
- setState(604);
+ setState(606);
match(COMPLETION);
- setState(608);
+ setState(610);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) {
case 1:
{
- setState(605);
+ setState(607);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
- setState(606);
+ setState(608);
match(ASSIGN);
}
break;
}
- setState(610);
+ setState(612);
((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
- setState(611);
+ setState(613);
commandNamedParameters();
}
}
@@ -4863,26 +4864,26 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx
InlineStatsCommandContext _localctx = new InlineStatsCommandContext(_ctx, getState());
enterRule(_localctx, 130, RULE_inlineStatsCommand);
try {
- setState(626);
+ setState(628);
_errHandler.sync(this);
switch (_input.LA(1)) {
case INLINE:
enterOuterAlt(_localctx, 1);
{
- setState(613);
+ setState(615);
match(INLINE);
- setState(614);
+ setState(616);
match(INLINE_STATS);
- setState(615);
+ setState(617);
((InlineStatsCommandContext)_localctx).stats = aggFields();
- setState(618);
+ setState(620);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
{
- setState(616);
+ setState(618);
match(BY);
- setState(617);
+ setState(619);
((InlineStatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -4892,18 +4893,18 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx
case INLINESTATS:
enterOuterAlt(_localctx, 2);
{
- setState(620);
+ setState(622);
match(INLINESTATS);
- setState(621);
+ setState(623);
((InlineStatsCommandContext)_localctx).stats = aggFields();
- setState(624);
+ setState(626);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) {
case 1:
{
- setState(622);
+ setState(624);
match(BY);
- setState(623);
+ setState(625);
((InlineStatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -4965,31 +4966,31 @@ public final FuseCommandContext fuseCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(628);
- match(FUSE);
setState(630);
+ match(FUSE);
+ setState(632);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
case 1:
{
- setState(629);
+ setState(631);
((FuseCommandContext)_localctx).fuseType = identifier();
}
break;
}
- setState(635);
+ setState(637);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,52,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(632);
+ setState(634);
fuseConfiguration();
}
}
}
- setState(637);
+ setState(639);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,52,_ctx);
}
@@ -5050,48 +5051,48 @@ public final FuseConfigurationContext fuseConfiguration() throws RecognitionExce
FuseConfigurationContext _localctx = new FuseConfigurationContext(_ctx, getState());
enterRule(_localctx, 134, RULE_fuseConfiguration);
try {
- setState(649);
+ setState(651);
_errHandler.sync(this);
switch (_input.LA(1)) {
case SCORE:
enterOuterAlt(_localctx, 1);
{
- setState(638);
+ setState(640);
match(SCORE);
- setState(639);
+ setState(641);
match(BY);
- setState(640);
+ setState(642);
((FuseConfigurationContext)_localctx).score = qualifiedName();
}
break;
case KEY:
enterOuterAlt(_localctx, 2);
{
- setState(641);
+ setState(643);
match(KEY);
- setState(642);
+ setState(644);
match(BY);
- setState(643);
+ setState(645);
((FuseConfigurationContext)_localctx).key = fields();
}
break;
case GROUP:
enterOuterAlt(_localctx, 3);
{
- setState(644);
+ setState(646);
match(GROUP);
- setState(645);
+ setState(647);
match(BY);
- setState(646);
+ setState(648);
((FuseConfigurationContext)_localctx).group = qualifiedName();
}
break;
case WITH:
enterOuterAlt(_localctx, 4);
{
- setState(647);
+ setState(649);
match(WITH);
- setState(648);
+ setState(650);
((FuseConfigurationContext)_localctx).options = mapExpression();
}
break;
@@ -5148,13 +5149,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(651);
+ setState(653);
match(DEV_LOOKUP);
- setState(652);
+ setState(654);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(653);
+ setState(655);
match(ON);
- setState(654);
+ setState(656);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -5201,9 +5202,9 @@ public final InsistCommandContext insistCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(656);
+ setState(658);
match(DEV_INSIST);
- setState(657);
+ setState(659);
qualifiedNamePatterns();
}
}
@@ -5251,11 +5252,11 @@ public final SetCommandContext setCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(659);
+ setState(661);
match(SET);
- setState(660);
+ setState(662);
setField();
- setState(661);
+ setState(663);
match(SEMICOLON);
}
}
@@ -5305,11 +5306,11 @@ public final SetFieldContext setField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(663);
+ setState(665);
identifier();
- setState(664);
+ setState(666);
match(ASSIGN);
- setState(665);
+ setState(667);
constant();
}
}
@@ -5525,7 +5526,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(696);
+ setState(698);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) {
case 1:
@@ -5534,9 +5535,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(668);
+ setState(670);
match(NOT);
- setState(669);
+ setState(671);
booleanExpression(8);
}
break;
@@ -5545,7 +5546,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(670);
+ setState(672);
valueExpression();
}
break;
@@ -5554,7 +5555,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(671);
+ setState(673);
regexBooleanExpression();
}
break;
@@ -5563,41 +5564,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(672);
- valueExpression();
setState(674);
+ valueExpression();
+ setState(676);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(673);
+ setState(675);
match(NOT);
}
}
- setState(676);
+ setState(678);
match(IN);
- setState(677);
+ setState(679);
match(LP);
- setState(678);
+ setState(680);
valueExpression();
- setState(683);
+ setState(685);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(679);
+ setState(681);
match(COMMA);
- setState(680);
+ setState(682);
valueExpression();
}
}
- setState(685);
+ setState(687);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(686);
+ setState(688);
match(RP);
}
break;
@@ -5606,21 +5607,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(688);
+ setState(690);
valueExpression();
- setState(689);
- match(IS);
setState(691);
+ match(IS);
+ setState(693);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(690);
+ setState(692);
match(NOT);
}
}
- setState(693);
+ setState(695);
match(NULL);
}
break;
@@ -5629,13 +5630,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(695);
+ setState(697);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(706);
+ setState(708);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,59,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -5643,7 +5644,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(704);
+ setState(706);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) {
case 1:
@@ -5651,11 +5652,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(698);
+ setState(700);
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(699);
+ setState(701);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(700);
+ setState(702);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -5664,18 +5665,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(701);
+ setState(703);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(702);
+ setState(704);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(703);
+ setState(705);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
}
}
- setState(708);
+ setState(710);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,59,_ctx);
}
@@ -5712,8 +5713,8 @@ public ValueExpressionContext valueExpression() {
return getRuleContext(ValueExpressionContext.class,0);
}
public TerminalNode LIKE() { return getToken(EsqlBaseParser.LIKE, 0); }
- public StringContext string() {
- return getRuleContext(StringContext.class,0);
+ public StringOrParameterContext stringOrParameter() {
+ return getRuleContext(StringOrParameterContext.class,0);
}
public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); }
@SuppressWarnings("this-escape")
@@ -5834,50 +5835,50 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
enterRule(_localctx, 146, RULE_regexBooleanExpression);
int _la;
try {
- setState(755);
+ setState(757);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
case 1:
_localctx = new LikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(709);
- valueExpression();
setState(711);
+ valueExpression();
+ setState(713);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(710);
+ setState(712);
match(NOT);
}
}
- setState(713);
+ setState(715);
match(LIKE);
- setState(714);
- string();
+ setState(716);
+ stringOrParameter();
}
break;
case 2:
_localctx = new RlikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(716);
- valueExpression();
setState(718);
+ valueExpression();
+ setState(720);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(717);
+ setState(719);
match(NOT);
}
}
- setState(720);
+ setState(722);
match(RLIKE);
- setState(721);
+ setState(723);
string();
}
break;
@@ -5885,41 +5886,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new LikeListExpressionContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(723);
- valueExpression();
setState(725);
+ valueExpression();
+ setState(727);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(724);
+ setState(726);
match(NOT);
}
}
- setState(727);
+ setState(729);
match(LIKE);
- setState(728);
+ setState(730);
match(LP);
- setState(729);
+ setState(731);
string();
- setState(734);
+ setState(736);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(730);
+ setState(732);
match(COMMA);
- setState(731);
+ setState(733);
string();
}
}
- setState(736);
+ setState(738);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(737);
+ setState(739);
match(RP);
}
break;
@@ -5927,41 +5928,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new RlikeListExpressionContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(739);
- valueExpression();
setState(741);
+ valueExpression();
+ setState(743);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(740);
+ setState(742);
match(NOT);
}
}
- setState(743);
+ setState(745);
match(RLIKE);
- setState(744);
+ setState(746);
match(LP);
- setState(745);
+ setState(747);
string();
- setState(750);
+ setState(752);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(746);
+ setState(748);
match(COMMA);
- setState(747);
+ setState(749);
string();
}
}
- setState(752);
+ setState(754);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(753);
+ setState(755);
match(RP);
}
break;
@@ -5978,6 +5979,71 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
return _localctx;
}
+ @SuppressWarnings("CheckReturnValue")
+ public static class StringOrParameterContext extends ParserRuleContext {
+ public StringContext string() {
+ return getRuleContext(StringContext.class,0);
+ }
+ public ParameterContext parameter() {
+ return getRuleContext(ParameterContext.class,0);
+ }
+ @SuppressWarnings("this-escape")
+ public StringOrParameterContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_stringOrParameter; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringOrParameter(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringOrParameter(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitStringOrParameter(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final StringOrParameterContext stringOrParameter() throws RecognitionException {
+ StringOrParameterContext _localctx = new StringOrParameterContext(_ctx, getState());
+ enterRule(_localctx, 148, RULE_stringOrParameter);
+ try {
+ setState(761);
+ _errHandler.sync(this);
+ switch (_input.LA(1)) {
+ case QUOTED_STRING:
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(759);
+ string();
+ }
+ break;
+ case PARAM:
+ case NAMED_OR_POSITIONAL_PARAM:
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(760);
+ parameter();
+ }
+ break;
+ default:
+ throw new NoViableAltException(this);
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
@SuppressWarnings("CheckReturnValue")
public static class MatchBooleanExpressionContext extends ParserRuleContext {
public QualifiedNameContext fieldExp;
@@ -6016,28 +6082,28 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException {
MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState());
- enterRule(_localctx, 148, RULE_matchBooleanExpression);
+ enterRule(_localctx, 150, RULE_matchBooleanExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(757);
+ setState(763);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(760);
+ setState(766);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(758);
+ setState(764);
match(CAST_OP);
- setState(759);
+ setState(765);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(762);
+ setState(768);
match(COLON);
- setState(763);
+ setState(769);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -6119,16 +6185,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ValueExpressionContext valueExpression() throws RecognitionException {
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
- enterRule(_localctx, 150, RULE_valueExpression);
+ enterRule(_localctx, 152, RULE_valueExpression);
try {
- setState(770);
+ setState(776);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(765);
+ setState(771);
operatorExpression(0);
}
break;
@@ -6136,11 +6202,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(766);
+ setState(772);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(767);
+ setState(773);
comparisonOperator();
- setState(768);
+ setState(774);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -6258,23 +6324,23 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _parentState = getState();
OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState);
OperatorExpressionContext _prevctx = _localctx;
- int _startState = 152;
- enterRecursionRule(_localctx, 152, RULE_operatorExpression, _p);
+ int _startState = 154;
+ enterRecursionRule(_localctx, 154, RULE_operatorExpression, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(776);
+ setState(782);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) {
case 1:
{
_localctx = new OperatorExpressionDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(773);
+ setState(779);
primaryExpression(0);
}
break;
@@ -6283,7 +6349,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(774);
+ setState(780);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -6294,31 +6360,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(775);
+ setState(781);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(786);
+ setState(792);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(784);
+ setState(790);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) {
case 1:
{
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(778);
+ setState(784);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(779);
+ setState(785);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 88)) & ~0x3f) == 0 && ((1L << (_la - 88)) & 7L) != 0)) ) {
@@ -6329,7 +6395,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(780);
+ setState(786);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -6338,9 +6404,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(781);
+ setState(787);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(782);
+ setState(788);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -6351,16 +6417,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(783);
+ setState(789);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(788);
+ setState(794);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
}
}
}
@@ -6510,22 +6576,22 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _parentState = getState();
PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState);
PrimaryExpressionContext _prevctx = _localctx;
- int _startState = 154;
- enterRecursionRule(_localctx, 154, RULE_primaryExpression, _p);
+ int _startState = 156;
+ enterRecursionRule(_localctx, 156, RULE_primaryExpression, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(797);
+ setState(803);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,73,_ctx) ) {
case 1:
{
_localctx = new ConstantDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(790);
+ setState(796);
constant();
}
break;
@@ -6534,7 +6600,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(791);
+ setState(797);
qualifiedName();
}
break;
@@ -6543,7 +6609,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(792);
+ setState(798);
functionExpression();
}
break;
@@ -6552,19 +6618,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(793);
+ setState(799);
match(LP);
- setState(794);
+ setState(800);
booleanExpression(0);
- setState(795);
+ setState(801);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(804);
+ setState(810);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,73,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,74,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -6573,18 +6639,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(799);
+ setState(805);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(800);
+ setState(806);
match(CAST_OP);
- setState(801);
+ setState(807);
dataType();
}
}
}
- setState(806);
+ setState(812);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,73,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,74,_ctx);
}
}
}
@@ -6642,56 +6708,56 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FunctionExpressionContext functionExpression() throws RecognitionException {
FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState());
- enterRule(_localctx, 156, RULE_functionExpression);
+ enterRule(_localctx, 158, RULE_functionExpression);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(807);
+ setState(813);
functionName();
- setState(808);
+ setState(814);
match(LP);
- setState(822);
+ setState(828);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,76,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,77,_ctx) ) {
case 1:
{
- setState(809);
+ setState(815);
match(ASTERISK);
}
break;
case 2:
{
{
- setState(810);
+ setState(816);
booleanExpression(0);
- setState(815);
+ setState(821);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,74,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,75,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(811);
+ setState(817);
match(COMMA);
- setState(812);
+ setState(818);
booleanExpression(0);
}
}
}
- setState(817);
+ setState(823);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,74,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,75,_ctx);
}
- setState(820);
+ setState(826);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(818);
+ setState(824);
match(COMMA);
- setState(819);
+ setState(825);
mapExpression();
}
}
@@ -6700,7 +6766,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
}
break;
}
- setState(824);
+ setState(830);
match(RP);
}
}
@@ -6744,9 +6810,9 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FunctionNameContext functionName() throws RecognitionException {
FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState());
- enterRule(_localctx, 158, RULE_functionName);
+ enterRule(_localctx, 160, RULE_functionName);
try {
- setState(829);
+ setState(835);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
@@ -6757,21 +6823,21 @@ public final FunctionNameContext functionName() throws RecognitionException {
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(826);
+ setState(832);
identifierOrParameter();
}
break;
case FIRST:
enterOuterAlt(_localctx, 2);
{
- setState(827);
+ setState(833);
match(FIRST);
}
break;
case LAST:
enterOuterAlt(_localctx, 3);
{
- setState(828);
+ setState(834);
match(LAST);
}
break;
@@ -6826,40 +6892,40 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MapExpressionContext mapExpression() throws RecognitionException {
MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState());
- enterRule(_localctx, 160, RULE_mapExpression);
+ enterRule(_localctx, 162, RULE_mapExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(831);
+ setState(837);
match(LEFT_BRACES);
- setState(840);
+ setState(846);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==QUOTED_STRING) {
{
- setState(832);
+ setState(838);
entryExpression();
- setState(837);
+ setState(843);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(833);
+ setState(839);
match(COMMA);
- setState(834);
+ setState(840);
entryExpression();
}
}
- setState(839);
+ setState(845);
_errHandler.sync(this);
_la = _input.LA(1);
}
}
}
- setState(842);
+ setState(848);
match(RIGHT_BRACES);
}
}
@@ -6907,15 +6973,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EntryExpressionContext entryExpression() throws RecognitionException {
EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState());
- enterRule(_localctx, 162, RULE_entryExpression);
+ enterRule(_localctx, 164, RULE_entryExpression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(844);
+ setState(850);
((EntryExpressionContext)_localctx).key = string();
- setState(845);
+ setState(851);
match(COLON);
- setState(846);
+ setState(852);
((EntryExpressionContext)_localctx).value = mapValue();
}
}
@@ -6960,9 +7026,9 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MapValueContext mapValue() throws RecognitionException {
MapValueContext _localctx = new MapValueContext(_ctx, getState());
- enterRule(_localctx, 164, RULE_mapValue);
+ enterRule(_localctx, 166, RULE_mapValue);
try {
- setState(850);
+ setState(856);
_errHandler.sync(this);
switch (_input.LA(1)) {
case QUOTED_STRING:
@@ -6978,14 +7044,14 @@ public final MapValueContext mapValue() throws RecognitionException {
case OPENING_BRACKET:
enterOuterAlt(_localctx, 1);
{
- setState(848);
+ setState(854);
constant();
}
break;
case LEFT_BRACES:
enterOuterAlt(_localctx, 2);
{
- setState(849);
+ setState(855);
mapExpression();
}
break;
@@ -7257,17 +7323,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ConstantContext constant() throws RecognitionException {
ConstantContext _localctx = new ConstantContext(_ctx, getState());
- enterRule(_localctx, 166, RULE_constant);
+ enterRule(_localctx, 168, RULE_constant);
int _la;
try {
- setState(894);
+ setState(900);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(852);
+ setState(858);
match(NULL);
}
break;
@@ -7275,9 +7341,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(853);
+ setState(859);
integerValue();
- setState(854);
+ setState(860);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -7285,7 +7351,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(856);
+ setState(862);
decimalValue();
}
break;
@@ -7293,7 +7359,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(857);
+ setState(863);
integerValue();
}
break;
@@ -7301,7 +7367,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(858);
+ setState(864);
booleanValue();
}
break;
@@ -7309,7 +7375,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(859);
+ setState(865);
parameter();
}
break;
@@ -7317,7 +7383,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(860);
+ setState(866);
string();
}
break;
@@ -7325,27 +7391,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(861);
+ setState(867);
match(OPENING_BRACKET);
- setState(862);
+ setState(868);
numericValue();
- setState(867);
+ setState(873);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(863);
+ setState(869);
match(COMMA);
- setState(864);
+ setState(870);
numericValue();
}
}
- setState(869);
+ setState(875);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(870);
+ setState(876);
match(CLOSING_BRACKET);
}
break;
@@ -7353,27 +7419,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(872);
+ setState(878);
match(OPENING_BRACKET);
- setState(873);
+ setState(879);
booleanValue();
- setState(878);
+ setState(884);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(874);
+ setState(880);
match(COMMA);
- setState(875);
+ setState(881);
booleanValue();
}
}
- setState(880);
+ setState(886);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(881);
+ setState(887);
match(CLOSING_BRACKET);
}
break;
@@ -7381,27 +7447,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(883);
+ setState(889);
match(OPENING_BRACKET);
- setState(884);
+ setState(890);
string();
- setState(889);
+ setState(895);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(885);
+ setState(891);
match(COMMA);
- setState(886);
+ setState(892);
string();
}
}
- setState(891);
+ setState(897);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(892);
+ setState(898);
match(CLOSING_BRACKET);
}
break;
@@ -7444,12 +7510,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final BooleanValueContext booleanValue() throws RecognitionException {
BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState());
- enterRule(_localctx, 168, RULE_booleanValue);
+ enterRule(_localctx, 170, RULE_booleanValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(896);
+ setState(902);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -7502,22 +7568,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
- enterRule(_localctx, 170, RULE_numericValue);
+ enterRule(_localctx, 172, RULE_numericValue);
try {
- setState(900);
+ setState(906);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,85,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,86,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(898);
+ setState(904);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(899);
+ setState(905);
integerValue();
}
break;
@@ -7561,17 +7627,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DecimalValueContext decimalValue() throws RecognitionException {
DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState());
- enterRule(_localctx, 172, RULE_decimalValue);
+ enterRule(_localctx, 174, RULE_decimalValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(903);
+ setState(909);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(902);
+ setState(908);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -7584,7 +7650,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(905);
+ setState(911);
match(DECIMAL_LITERAL);
}
}
@@ -7626,17 +7692,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IntegerValueContext integerValue() throws RecognitionException {
IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState());
- enterRule(_localctx, 174, RULE_integerValue);
+ enterRule(_localctx, 176, RULE_integerValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(908);
+ setState(914);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(907);
+ setState(913);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -7649,7 +7715,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(910);
+ setState(916);
match(INTEGER_LITERAL);
}
}
@@ -7689,11 +7755,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StringContext string() throws RecognitionException {
StringContext _localctx = new StringContext(_ctx, getState());
- enterRule(_localctx, 176, RULE_string);
+ enterRule(_localctx, 178, RULE_string);
try {
enterOuterAlt(_localctx, 1);
{
- setState(912);
+ setState(918);
match(QUOTED_STRING);
}
}
@@ -7738,12 +7804,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ComparisonOperatorContext comparisonOperator() throws RecognitionException {
ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState());
- enterRule(_localctx, 178, RULE_comparisonOperator);
+ enterRule(_localctx, 180, RULE_comparisonOperator);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(914);
+ setState(920);
_la = _input.LA(1);
if ( !(((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -7801,12 +7867,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinCommandContext joinCommand() throws RecognitionException {
JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState());
- enterRule(_localctx, 180, RULE_joinCommand);
+ enterRule(_localctx, 182, RULE_joinCommand);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(916);
+ setState(922);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 218103808L) != 0)) ) {
@@ -7817,11 +7883,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(917);
+ setState(923);
match(JOIN);
- setState(918);
+ setState(924);
joinTarget();
- setState(919);
+ setState(925);
joinCondition();
}
}
@@ -7867,37 +7933,37 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinTargetContext joinTarget() throws RecognitionException {
JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState());
- enterRule(_localctx, 182, RULE_joinTarget);
+ enterRule(_localctx, 184, RULE_joinTarget);
int _la;
try {
- setState(929);
+ setState(935);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,89,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,90,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(921);
+ setState(927);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(922);
+ setState(928);
((JoinTargetContext)_localctx).index = indexPattern();
- setState(924);
+ setState(930);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==AS) {
{
- setState(923);
+ setState(929);
match(AS);
}
}
- setState(926);
+ setState(932);
((JoinTargetContext)_localctx).qualifier = match(UNQUOTED_SOURCE);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(928);
+ setState(934);
((JoinTargetContext)_localctx).index = indexPattern();
}
break;
@@ -7949,32 +8015,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinConditionContext joinCondition() throws RecognitionException {
JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState());
- enterRule(_localctx, 184, RULE_joinCondition);
+ enterRule(_localctx, 186, RULE_joinCondition);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(931);
+ setState(937);
match(ON);
- setState(932);
+ setState(938);
booleanExpression(0);
- setState(937);
+ setState(943);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,90,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,91,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(933);
+ setState(939);
match(COMMA);
- setState(934);
+ setState(940);
booleanExpression(0);
}
}
}
- setState(939);
+ setState(945);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,90,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,91,_ctx);
}
}
}
@@ -8007,11 +8073,11 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex);
case 72:
return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex);
- case 76:
- return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex);
case 77:
+ return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex);
+ case 78:
return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex);
- case 91:
+ case 92:
return joinTarget_sempred((JoinTargetContext)_localctx, predIndex);
}
return true;
@@ -8101,7 +8167,7 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) {
}
public static final String _serializedATN =
- "\u0004\u0001\u0097\u03ad\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u0097\u03b3\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"+
@@ -8123,567 +8189,570 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) {
"J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007"+
"O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007"+
"T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007"+
- "Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0001\u0000\u0005\u0000"+
- "\u00bc\b\u0000\n\u0000\f\u0000\u00bf\t\u0000\u0001\u0000\u0001\u0000\u0001"+
- "\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001"+
- "\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005\u0002\u00cd\b\u0002\n"+
- "\u0002\f\u0002\u00d0\t\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+
- "\u0003\u0001\u0003\u0001\u0003\u0003\u0003\u00d8\b\u0003\u0001\u0004\u0001"+
- "\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
- "\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
- "\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
- "\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004\u00f2"+
- "\b\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001"+
- "\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0005\b\u00ff\b"+
- "\b\n\b\f\b\u0102\t\b\u0001\t\u0001\t\u0001\t\u0003\t\u0107\b\t\u0001\t"+
- "\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n\u010e\b\n\n\n\f\n\u0111\t\n\u0001"+
- "\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u0116\b\u000b\u0001\f\u0001"+
- "\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e"+
- "\u0005\u000e\u0121\b\u000e\n\u000e\f\u000e\u0124\t\u000e\u0001\u000e\u0003"+
- "\u000e\u0127\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0003\u000f\u012c"+
- "\b\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010\u0132"+
- "\b\u0010\n\u0010\f\u0010\u0135\t\u0010\u0001\u0010\u0001\u0010\u0001\u0011"+
- "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+
- "\u0001\u0011\u0001\u0011\u0003\u0011\u0142\b\u0011\u0001\u0012\u0001\u0012"+
- "\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+
- "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u0150\b\u0016"+
- "\n\u0016\f\u0016\u0153\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
- "\u0018\u0001\u0018\u0003\u0018\u015a\b\u0018\u0001\u0018\u0001\u0018\u0003"+
- "\u0018\u015e\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0005\u0019\u0163"+
- "\b\u0019\n\u0019\f\u0019\u0166\t\u0019\u0001\u001a\u0001\u001a\u0001\u001a"+
- "\u0003\u001a\u016b\b\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0003\u001b"+
- "\u0170\b\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b"+
- "\u0001\u001b\u0001\u001b\u0003\u001b\u0179\b\u001b\u0001\u001c\u0001\u001c"+
- "\u0001\u001c\u0005\u001c\u017e\b\u001c\n\u001c\f\u001c\u0181\t\u001c\u0001"+
- "\u001d\u0001\u001d\u0001\u001d\u0003\u001d\u0186\b\u001d\u0001\u001d\u0001"+
- "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0003"+
- "\u001d\u018f\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u0194"+
- "\b\u001e\n\u001e\f\u001e\u0197\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+
- "\u0005\u001f\u019c\b\u001f\n\u001f\f\u001f\u019f\t\u001f\u0001 \u0001"+
- " \u0001!\u0001!\u0001!\u0003!\u01a6\b!\u0001\"\u0001\"\u0003\"\u01aa\b"+
- "\"\u0001#\u0001#\u0003#\u01ae\b#\u0001$\u0001$\u0001$\u0003$\u01b3\b$"+
- "\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0005&\u01bc\b&\n&\f"+
- "&\u01bf\t&\u0001\'\u0001\'\u0003\'\u01c3\b\'\u0001\'\u0001\'\u0003\'\u01c7"+
- "\b\'\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001"+
- "*\u0005*\u01d3\b*\n*\f*\u01d6\t*\u0001+\u0001+\u0001+\u0001+\u0001+\u0001"+
- "+\u0001+\u0001+\u0003+\u01e0\b+\u0001,\u0001,\u0001,\u0001,\u0003,\u01e6"+
- "\b,\u0001-\u0001-\u0001-\u0005-\u01eb\b-\n-\f-\u01ee\t-\u0001.\u0001."+
- "\u0001.\u0001.\u0001/\u0001/\u0003/\u01f6\b/\u00010\u00010\u00010\u0001"+
- "0\u00010\u00050\u01fd\b0\n0\f0\u0200\t0\u00011\u00011\u00011\u00012\u0001"+
- "2\u00012\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u00015\u0001"+
- "5\u00015\u00015\u00035\u0213\b5\u00015\u00015\u00015\u00015\u00055\u0219"+
- "\b5\n5\f5\u021c\t5\u00035\u021e\b5\u00016\u00016\u00017\u00017\u00017"+
- "\u00037\u0225\b7\u00017\u00017\u00018\u00018\u00018\u00019\u00019\u0001"+
- "9\u00019\u00039\u0230\b9\u00019\u00019\u00019\u00019\u00019\u00039\u0237"+
- "\b9\u0001:\u0001:\u0001:\u0001;\u0004;\u023d\b;\u000b;\f;\u023e\u0001"+
- "<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0005"+
- "=\u024b\b=\n=\f=\u024e\t=\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0003"+
- "?\u0256\b?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001"+
- "@\u0003@\u0261\b@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001"+
- "A\u0003A\u026b\bA\u0001A\u0001A\u0001A\u0001A\u0003A\u0271\bA\u0003A\u0273"+
- "\bA\u0001B\u0001B\u0003B\u0277\bB\u0001B\u0005B\u027a\bB\nB\fB\u027d\t"+
- "B\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+
- "C\u0001C\u0003C\u028a\bC\u0001D\u0001D\u0001D\u0001D\u0001D\u0001E\u0001"+
- "E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001"+
- "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0003H\u02a3\bH\u0001H\u0001"+
- "H\u0001H\u0001H\u0001H\u0005H\u02aa\bH\nH\fH\u02ad\tH\u0001H\u0001H\u0001"+
- "H\u0001H\u0001H\u0003H\u02b4\bH\u0001H\u0001H\u0001H\u0003H\u02b9\bH\u0001"+
- "H\u0001H\u0001H\u0001H\u0001H\u0001H\u0005H\u02c1\bH\nH\fH\u02c4\tH\u0001"+
- "I\u0001I\u0003I\u02c8\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02cf"+
- "\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02d6\bI\u0001I\u0001I\u0001"+
- "I\u0001I\u0001I\u0005I\u02dd\bI\nI\fI\u02e0\tI\u0001I\u0001I\u0001I\u0001"+
- "I\u0003I\u02e6\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0005I\u02ed\bI\n"+
- "I\fI\u02f0\tI\u0001I\u0001I\u0003I\u02f4\bI\u0001J\u0001J\u0001J\u0003"+
- "J\u02f9\bJ\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0001K\u0003"+
- "K\u0303\bK\u0001L\u0001L\u0001L\u0001L\u0003L\u0309\bL\u0001L\u0001L\u0001"+
- "L\u0001L\u0001L\u0001L\u0005L\u0311\bL\nL\fL\u0314\tL\u0001M\u0001M\u0001"+
- "M\u0001M\u0001M\u0001M\u0001M\u0001M\u0003M\u031e\bM\u0001M\u0001M\u0001"+
- "M\u0005M\u0323\bM\nM\fM\u0326\tM\u0001N\u0001N\u0001N\u0001N\u0001N\u0001"+
- "N\u0005N\u032e\bN\nN\fN\u0331\tN\u0001N\u0001N\u0003N\u0335\bN\u0003N"+
- "\u0337\bN\u0001N\u0001N\u0001O\u0001O\u0001O\u0003O\u033e\bO\u0001P\u0001"+
- "P\u0001P\u0001P\u0005P\u0344\bP\nP\fP\u0347\tP\u0003P\u0349\bP\u0001P"+
- "\u0001P\u0001Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0003R\u0353\bR\u0001"+
- "S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+
- "S\u0001S\u0001S\u0005S\u0362\bS\nS\fS\u0365\tS\u0001S\u0001S\u0001S\u0001"+
- "S\u0001S\u0001S\u0005S\u036d\bS\nS\fS\u0370\tS\u0001S\u0001S\u0001S\u0001"+
- "S\u0001S\u0001S\u0005S\u0378\bS\nS\fS\u037b\tS\u0001S\u0001S\u0003S\u037f"+
- "\bS\u0001T\u0001T\u0001U\u0001U\u0003U\u0385\bU\u0001V\u0003V\u0388\b"+
- "V\u0001V\u0001V\u0001W\u0003W\u038d\bW\u0001W\u0001W\u0001X\u0001X\u0001"+
- "Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0003"+
- "[\u039d\b[\u0001[\u0001[\u0001[\u0003[\u03a2\b[\u0001\\\u0001\\\u0001"+
- "\\\u0001\\\u0005\\\u03a8\b\\\n\\\f\\\u03ab\t\\\u0001\\\u0000\u0005\u0004"+
- "z\u0090\u0098\u009a]\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014"+
- "\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfh"+
- "jlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092"+
- "\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa"+
- "\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6\u00b8\u0000\n\u0002\u000033jj\u0001"+
- "\u0000de\u0002\u000077>>\u0002\u0000AADD\u0002\u0000((33\u0001\u0000V"+
- "W\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000OOQU\u0002\u0000\u0018\u0018"+
- "\u001a\u001b\u03d8\u0000\u00bd\u0001\u0000\u0000\u0000\u0002\u00c3\u0001"+
- "\u0000\u0000\u0000\u0004\u00c6\u0001\u0000\u0000\u0000\u0006\u00d7\u0001"+
- "\u0000\u0000\u0000\b\u00f1\u0001\u0000\u0000\u0000\n\u00f3\u0001\u0000"+
- "\u0000\u0000\f\u00f6\u0001\u0000\u0000\u0000\u000e\u00f8\u0001\u0000\u0000"+
- "\u0000\u0010\u00fb\u0001\u0000\u0000\u0000\u0012\u0106\u0001\u0000\u0000"+
- "\u0000\u0014\u010a\u0001\u0000\u0000\u0000\u0016\u0112\u0001\u0000\u0000"+
- "\u0000\u0018\u0117\u0001\u0000\u0000\u0000\u001a\u011a\u0001\u0000\u0000"+
- "\u0000\u001c\u011d\u0001\u0000\u0000\u0000\u001e\u012b\u0001\u0000\u0000"+
- "\u0000 \u012d\u0001\u0000\u0000\u0000\"\u0141\u0001\u0000\u0000\u0000"+
- "$\u0143\u0001\u0000\u0000\u0000&\u0145\u0001\u0000\u0000\u0000(\u0147"+
- "\u0001\u0000\u0000\u0000*\u0149\u0001\u0000\u0000\u0000,\u014b\u0001\u0000"+
- "\u0000\u0000.\u0154\u0001\u0000\u0000\u00000\u0157\u0001\u0000\u0000\u0000"+
- "2\u015f\u0001\u0000\u0000\u00004\u0167\u0001\u0000\u0000\u00006\u0178"+
- "\u0001\u0000\u0000\u00008\u017a\u0001\u0000\u0000\u0000:\u018e\u0001\u0000"+
- "\u0000\u0000<\u0190\u0001\u0000\u0000\u0000>\u0198\u0001\u0000\u0000\u0000"+
- "@\u01a0\u0001\u0000\u0000\u0000B\u01a5\u0001\u0000\u0000\u0000D\u01a9"+
- "\u0001\u0000\u0000\u0000F\u01ad\u0001\u0000\u0000\u0000H\u01b2\u0001\u0000"+
- "\u0000\u0000J\u01b4\u0001\u0000\u0000\u0000L\u01b7\u0001\u0000\u0000\u0000"+
- "N\u01c0\u0001\u0000\u0000\u0000P\u01c8\u0001\u0000\u0000\u0000R\u01cb"+
- "\u0001\u0000\u0000\u0000T\u01ce\u0001\u0000\u0000\u0000V\u01df\u0001\u0000"+
- "\u0000\u0000X\u01e1\u0001\u0000\u0000\u0000Z\u01e7\u0001\u0000\u0000\u0000"+
- "\\\u01ef\u0001\u0000\u0000\u0000^\u01f5\u0001\u0000\u0000\u0000`\u01f7"+
- "\u0001\u0000\u0000\u0000b\u0201\u0001\u0000\u0000\u0000d\u0204\u0001\u0000"+
- "\u0000\u0000f\u0207\u0001\u0000\u0000\u0000h\u020b\u0001\u0000\u0000\u0000"+
- "j\u020e\u0001\u0000\u0000\u0000l\u021f\u0001\u0000\u0000\u0000n\u0224"+
- "\u0001\u0000\u0000\u0000p\u0228\u0001\u0000\u0000\u0000r\u022b\u0001\u0000"+
- "\u0000\u0000t\u0238\u0001\u0000\u0000\u0000v\u023c\u0001\u0000\u0000\u0000"+
- "x\u0240\u0001\u0000\u0000\u0000z\u0244\u0001\u0000\u0000\u0000|\u024f"+
- "\u0001\u0000\u0000\u0000~\u0251\u0001\u0000\u0000\u0000\u0080\u025c\u0001"+
- "\u0000\u0000\u0000\u0082\u0272\u0001\u0000\u0000\u0000\u0084\u0274\u0001"+
- "\u0000\u0000\u0000\u0086\u0289\u0001\u0000\u0000\u0000\u0088\u028b\u0001"+
- "\u0000\u0000\u0000\u008a\u0290\u0001\u0000\u0000\u0000\u008c\u0293\u0001"+
- "\u0000\u0000\u0000\u008e\u0297\u0001\u0000\u0000\u0000\u0090\u02b8\u0001"+
- "\u0000\u0000\u0000\u0092\u02f3\u0001\u0000\u0000\u0000\u0094\u02f5\u0001"+
- "\u0000\u0000\u0000\u0096\u0302\u0001\u0000\u0000\u0000\u0098\u0308\u0001"+
- "\u0000\u0000\u0000\u009a\u031d\u0001\u0000\u0000\u0000\u009c\u0327\u0001"+
- "\u0000\u0000\u0000\u009e\u033d\u0001\u0000\u0000\u0000\u00a0\u033f\u0001"+
- "\u0000\u0000\u0000\u00a2\u034c\u0001\u0000\u0000\u0000\u00a4\u0352\u0001"+
- "\u0000\u0000\u0000\u00a6\u037e\u0001\u0000\u0000\u0000\u00a8\u0380\u0001"+
- "\u0000\u0000\u0000\u00aa\u0384\u0001\u0000\u0000\u0000\u00ac\u0387\u0001"+
- "\u0000\u0000\u0000\u00ae\u038c\u0001\u0000\u0000\u0000\u00b0\u0390\u0001"+
- "\u0000\u0000\u0000\u00b2\u0392\u0001\u0000\u0000\u0000\u00b4\u0394\u0001"+
- "\u0000\u0000\u0000\u00b6\u03a1\u0001\u0000\u0000\u0000\u00b8\u03a3\u0001"+
- "\u0000\u0000\u0000\u00ba\u00bc\u0003\u008cF\u0000\u00bb\u00ba\u0001\u0000"+
- "\u0000\u0000\u00bc\u00bf\u0001\u0000\u0000\u0000\u00bd\u00bb\u0001\u0000"+
- "\u0000\u0000\u00bd\u00be\u0001\u0000\u0000\u0000\u00be\u00c0\u0001\u0000"+
- "\u0000\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000\u00c0\u00c1\u0003\u0002"+
- "\u0001\u0000\u00c1\u00c2\u0005\u0000\u0000\u0001\u00c2\u0001\u0001\u0000"+
- "\u0000\u0000\u00c3\u00c4\u0003\u0004\u0002\u0000\u00c4\u00c5\u0005\u0000"+
- "\u0000\u0001\u00c5\u0003\u0001\u0000\u0000\u0000\u00c6\u00c7\u0006\u0002"+
- "\uffff\uffff\u0000\u00c7\u00c8\u0003\u0006\u0003\u0000\u00c8\u00ce\u0001"+
- "\u0000\u0000\u0000\u00c9\u00ca\n\u0001\u0000\u0000\u00ca\u00cb\u00052"+
- "\u0000\u0000\u00cb\u00cd\u0003\b\u0004\u0000\u00cc\u00c9\u0001\u0000\u0000"+
- "\u0000\u00cd\u00d0\u0001\u0000\u0000\u0000\u00ce\u00cc\u0001\u0000\u0000"+
- "\u0000\u00ce\u00cf\u0001\u0000\u0000\u0000\u00cf\u0005\u0001\u0000\u0000"+
- "\u0000\u00d0\u00ce\u0001\u0000\u0000\u0000\u00d1\u00d8\u0003\u0018\f\u0000"+
- "\u00d2\u00d8\u0003\u000e\u0007\u0000\u00d3\u00d8\u0003h4\u0000\u00d4\u00d8"+
- "\u0003\u001a\r\u0000\u00d5\u00d6\u0004\u0003\u0001\u0000\u00d6\u00d8\u0003"+
- "d2\u0000\u00d7\u00d1\u0001\u0000\u0000\u0000\u00d7\u00d2\u0001\u0000\u0000"+
- "\u0000\u00d7\u00d3\u0001\u0000\u0000\u0000\u00d7\u00d4\u0001\u0000\u0000"+
- "\u0000\u00d7\u00d5\u0001\u0000\u0000\u0000\u00d8\u0007\u0001\u0000\u0000"+
- "\u0000\u00d9\u00f2\u0003.\u0017\u0000\u00da\u00f2\u0003\n\u0005\u0000"+
- "\u00db\u00f2\u0003P(\u0000\u00dc\u00f2\u0003J%\u0000\u00dd\u00f2\u0003"+
- "0\u0018\u0000\u00de\u00f2\u0003L&\u0000\u00df\u00f2\u0003R)\u0000\u00e0"+
- "\u00f2\u0003T*\u0000\u00e1\u00f2\u0003X,\u0000\u00e2\u00f2\u0003`0\u0000"+
- "\u00e3\u00f2\u0003j5\u0000\u00e4\u00f2\u0003b1\u0000\u00e5\u00f2\u0003"+
- "\u00b4Z\u0000\u00e6\u00f2\u0003r9\u0000\u00e7\u00f2\u0003\u0080@\u0000"+
- "\u00e8\u00f2\u0003p8\u0000\u00e9\u00f2\u0003t:\u0000\u00ea\u00f2\u0003"+
- "~?\u0000\u00eb\u00f2\u0003\u0082A\u0000\u00ec\u00f2\u0003\u0084B\u0000"+
- "\u00ed\u00ee\u0004\u0004\u0002\u0000\u00ee\u00f2\u0003\u0088D\u0000\u00ef"+
- "\u00f0\u0004\u0004\u0003\u0000\u00f0\u00f2\u0003\u008aE\u0000\u00f1\u00d9"+
- "\u0001\u0000\u0000\u0000\u00f1\u00da\u0001\u0000\u0000\u0000\u00f1\u00db"+
- "\u0001\u0000\u0000\u0000\u00f1\u00dc\u0001\u0000\u0000\u0000\u00f1\u00dd"+
- "\u0001\u0000\u0000\u0000\u00f1\u00de\u0001\u0000\u0000\u0000\u00f1\u00df"+
- "\u0001\u0000\u0000\u0000\u00f1\u00e0\u0001\u0000\u0000\u0000\u00f1\u00e1"+
- "\u0001\u0000\u0000\u0000\u00f1\u00e2\u0001\u0000\u0000\u0000\u00f1\u00e3"+
- "\u0001\u0000\u0000\u0000\u00f1\u00e4\u0001\u0000\u0000\u0000\u00f1\u00e5"+
- "\u0001\u0000\u0000\u0000\u00f1\u00e6\u0001\u0000\u0000\u0000\u00f1\u00e7"+
- "\u0001\u0000\u0000\u0000\u00f1\u00e8\u0001\u0000\u0000\u0000\u00f1\u00e9"+
- "\u0001\u0000\u0000\u0000\u00f1\u00ea\u0001\u0000\u0000\u0000\u00f1\u00eb"+
- "\u0001\u0000\u0000\u0000\u00f1\u00ec\u0001\u0000\u0000\u0000\u00f1\u00ed"+
- "\u0001\u0000\u0000\u0000\u00f1\u00ef\u0001\u0000\u0000\u0000\u00f2\t\u0001"+
- "\u0000\u0000\u0000\u00f3\u00f4\u0005\u0011\u0000\u0000\u00f4\u00f5\u0003"+
- "\u0090H\u0000\u00f5\u000b\u0001\u0000\u0000\u0000\u00f6\u00f7\u0003@ "+
- "\u0000\u00f7\r\u0001\u0000\u0000\u0000\u00f8\u00f9\u0005\r\u0000\u0000"+
- "\u00f9\u00fa\u0003\u0010\b\u0000\u00fa\u000f\u0001\u0000\u0000\u0000\u00fb"+
- "\u0100\u0003\u0012\t\u0000\u00fc\u00fd\u0005=\u0000\u0000\u00fd\u00ff"+
- "\u0003\u0012\t\u0000\u00fe\u00fc\u0001\u0000\u0000\u0000\u00ff\u0102\u0001"+
- "\u0000\u0000\u0000\u0100\u00fe\u0001\u0000\u0000\u0000\u0100\u0101\u0001"+
- "\u0000\u0000\u0000\u0101\u0011\u0001\u0000\u0000\u0000\u0102\u0100\u0001"+
- "\u0000\u0000\u0000\u0103\u0104\u00036\u001b\u0000\u0104\u0105\u00058\u0000"+
- "\u0000\u0105\u0107\u0001\u0000\u0000\u0000\u0106\u0103\u0001\u0000\u0000"+
- "\u0000\u0106\u0107\u0001\u0000\u0000\u0000\u0107\u0108\u0001\u0000\u0000"+
- "\u0000\u0108\u0109\u0003\u0090H\u0000\u0109\u0013\u0001\u0000\u0000\u0000"+
- "\u010a\u010f\u0003\u0016\u000b\u0000\u010b\u010c\u0005=\u0000\u0000\u010c"+
- "\u010e\u0003\u0016\u000b\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010e"+
- "\u0111\u0001\u0000\u0000\u0000\u010f\u010d\u0001\u0000\u0000\u0000\u010f"+
- "\u0110\u0001\u0000\u0000\u0000\u0110\u0015\u0001\u0000\u0000\u0000\u0111"+
- "\u010f\u0001\u0000\u0000\u0000\u0112\u0115\u00036\u001b\u0000\u0113\u0114"+
- "\u00058\u0000\u0000\u0114\u0116\u0003\u0090H\u0000\u0115\u0113\u0001\u0000"+
- "\u0000\u0000\u0115\u0116\u0001\u0000\u0000\u0000\u0116\u0017\u0001\u0000"+
- "\u0000\u0000\u0117\u0118\u0005\u0012\u0000\u0000\u0118\u0119\u0003\u001c"+
- "\u000e\u0000\u0119\u0019\u0001\u0000\u0000\u0000\u011a\u011b\u0005\u0013"+
- "\u0000\u0000\u011b\u011c\u0003\u001c\u000e\u0000\u011c\u001b\u0001\u0000"+
- "\u0000\u0000\u011d\u0122\u0003\u001e\u000f\u0000\u011e\u011f\u0005=\u0000"+
- "\u0000\u011f\u0121\u0003\u001e\u000f\u0000\u0120\u011e\u0001\u0000\u0000"+
- "\u0000\u0121\u0124\u0001\u0000\u0000\u0000\u0122\u0120\u0001\u0000\u0000"+
- "\u0000\u0122\u0123\u0001\u0000\u0000\u0000\u0123\u0126\u0001\u0000\u0000"+
- "\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0125\u0127\u0003,\u0016\u0000"+
- "\u0126\u0125\u0001\u0000\u0000\u0000\u0126\u0127\u0001\u0000\u0000\u0000"+
- "\u0127\u001d\u0001\u0000\u0000\u0000\u0128\u012c\u0003\"\u0011\u0000\u0129"+
- "\u012a\u0004\u000f\u0004\u0000\u012a\u012c\u0003 \u0010\u0000\u012b\u0128"+
- "\u0001\u0000\u0000\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u001f"+
- "\u0001\u0000\u0000\u0000\u012d\u012e\u0005b\u0000\u0000\u012e\u0133\u0003"+
- "\u0018\f\u0000\u012f\u0130\u00052\u0000\u0000\u0130\u0132\u0003\b\u0004"+
- "\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132\u0135\u0001\u0000\u0000"+
- "\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0133\u0134\u0001\u0000\u0000"+
- "\u0000\u0134\u0136\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000"+
- "\u0000\u0136\u0137\u0005c\u0000\u0000\u0137!\u0001\u0000\u0000\u0000\u0138"+
- "\u0139\u0003$\u0012\u0000\u0139\u013a\u0005;\u0000\u0000\u013a\u013b\u0003"+
- "(\u0014\u0000\u013b\u0142\u0001\u0000\u0000\u0000\u013c\u013d\u0003(\u0014"+
- "\u0000\u013d\u013e\u0005:\u0000\u0000\u013e\u013f\u0003&\u0013\u0000\u013f"+
- "\u0142\u0001\u0000\u0000\u0000\u0140\u0142\u0003*\u0015\u0000\u0141\u0138"+
- "\u0001\u0000\u0000\u0000\u0141\u013c\u0001\u0000\u0000\u0000\u0141\u0140"+
- "\u0001\u0000\u0000\u0000\u0142#\u0001\u0000\u0000\u0000\u0143\u0144\u0005"+
- "j\u0000\u0000\u0144%\u0001\u0000\u0000\u0000\u0145\u0146\u0005j\u0000"+
- "\u0000\u0146\'\u0001\u0000\u0000\u0000\u0147\u0148\u0005j\u0000\u0000"+
- "\u0148)\u0001\u0000\u0000\u0000\u0149\u014a\u0007\u0000\u0000\u0000\u014a"+
- "+\u0001\u0000\u0000\u0000\u014b\u014c\u0005i\u0000\u0000\u014c\u0151\u0005"+
- "j\u0000\u0000\u014d\u014e\u0005=\u0000\u0000\u014e\u0150\u0005j\u0000"+
- "\u0000\u014f\u014d\u0001\u0000\u0000\u0000\u0150\u0153\u0001\u0000\u0000"+
- "\u0000\u0151\u014f\u0001\u0000\u0000\u0000\u0151\u0152\u0001\u0000\u0000"+
- "\u0000\u0152-\u0001\u0000\u0000\u0000\u0153\u0151\u0001\u0000\u0000\u0000"+
- "\u0154\u0155\u0005\t\u0000\u0000\u0155\u0156\u0003\u0010\b\u0000\u0156"+
- "/\u0001\u0000\u0000\u0000\u0157\u0159\u0005\u0010\u0000\u0000\u0158\u015a"+
- "\u00032\u0019\u0000\u0159\u0158\u0001\u0000\u0000\u0000\u0159\u015a\u0001"+
- "\u0000\u0000\u0000\u015a\u015d\u0001\u0000\u0000\u0000\u015b\u015c\u0005"+
- "9\u0000\u0000\u015c\u015e\u0003\u0010\b\u0000\u015d\u015b\u0001\u0000"+
- "\u0000\u0000\u015d\u015e\u0001\u0000\u0000\u0000\u015e1\u0001\u0000\u0000"+
- "\u0000\u015f\u0164\u00034\u001a\u0000\u0160\u0161\u0005=\u0000\u0000\u0161"+
- "\u0163\u00034\u001a\u0000\u0162\u0160\u0001\u0000\u0000\u0000\u0163\u0166"+
- "\u0001\u0000\u0000\u0000\u0164\u0162\u0001\u0000\u0000\u0000\u0164\u0165"+
- "\u0001\u0000\u0000\u0000\u01653\u0001\u0000\u0000\u0000\u0166\u0164\u0001"+
- "\u0000\u0000\u0000\u0167\u016a\u0003\u0012\t\u0000\u0168\u0169\u0005\u0011"+
- "\u0000\u0000\u0169\u016b\u0003\u0090H\u0000\u016a\u0168\u0001\u0000\u0000"+
- "\u0000\u016a\u016b\u0001\u0000\u0000\u0000\u016b5\u0001\u0000\u0000\u0000"+
- "\u016c\u016d\u0004\u001b\u0005\u0000\u016d\u016f\u0005`\u0000\u0000\u016e"+
- "\u0170\u0005d\u0000\u0000\u016f\u016e\u0001\u0000\u0000\u0000\u016f\u0170"+
- "\u0001\u0000\u0000\u0000\u0170\u0171\u0001\u0000\u0000\u0000\u0171\u0172"+
- "\u0005a\u0000\u0000\u0172\u0173\u0005?\u0000\u0000\u0173\u0174\u0005`"+
- "\u0000\u0000\u0174\u0175\u00038\u001c\u0000\u0175\u0176\u0005a\u0000\u0000"+
- "\u0176\u0179\u0001\u0000\u0000\u0000\u0177\u0179\u00038\u001c\u0000\u0178"+
- "\u016c\u0001\u0000\u0000\u0000\u0178\u0177\u0001\u0000\u0000\u0000\u0179"+
- "7\u0001\u0000\u0000\u0000\u017a\u017f\u0003H$\u0000\u017b\u017c\u0005"+
- "?\u0000\u0000\u017c\u017e\u0003H$\u0000\u017d\u017b\u0001\u0000\u0000"+
- "\u0000\u017e\u0181\u0001\u0000\u0000\u0000\u017f\u017d\u0001\u0000\u0000"+
- "\u0000\u017f\u0180\u0001\u0000\u0000\u0000\u01809\u0001\u0000\u0000\u0000"+
- "\u0181\u017f\u0001\u0000\u0000\u0000\u0182\u0183\u0004\u001d\u0006\u0000"+
- "\u0183\u0185\u0005`\u0000\u0000\u0184\u0186\u0005\u0089\u0000\u0000\u0185"+
- "\u0184\u0001\u0000\u0000\u0000\u0185\u0186\u0001\u0000\u0000\u0000\u0186"+
- "\u0187\u0001\u0000\u0000\u0000\u0187\u0188\u0005a\u0000\u0000\u0188\u0189"+
- "\u0005?\u0000\u0000\u0189\u018a\u0005`\u0000\u0000\u018a\u018b\u0003<"+
- "\u001e\u0000\u018b\u018c\u0005a\u0000\u0000\u018c\u018f\u0001\u0000\u0000"+
- "\u0000\u018d\u018f\u0003<\u001e\u0000\u018e\u0182\u0001\u0000\u0000\u0000"+
- "\u018e\u018d\u0001\u0000\u0000\u0000\u018f;\u0001\u0000\u0000\u0000\u0190"+
- "\u0195\u0003B!\u0000\u0191\u0192\u0005?\u0000\u0000\u0192\u0194\u0003"+
- "B!\u0000\u0193\u0191\u0001\u0000\u0000\u0000\u0194\u0197\u0001\u0000\u0000"+
- "\u0000\u0195\u0193\u0001\u0000\u0000\u0000\u0195\u0196\u0001\u0000\u0000"+
- "\u0000\u0196=\u0001\u0000\u0000\u0000\u0197\u0195\u0001\u0000\u0000\u0000"+
- "\u0198\u019d\u0003:\u001d\u0000\u0199\u019a\u0005=\u0000\u0000\u019a\u019c"+
- "\u0003:\u001d\u0000\u019b\u0199\u0001\u0000\u0000\u0000\u019c\u019f\u0001"+
- "\u0000\u0000\u0000\u019d\u019b\u0001\u0000\u0000\u0000\u019d\u019e\u0001"+
- "\u0000\u0000\u0000\u019e?\u0001\u0000\u0000\u0000\u019f\u019d\u0001\u0000"+
- "\u0000\u0000\u01a0\u01a1\u0007\u0001\u0000\u0000\u01a1A\u0001\u0000\u0000"+
- "\u0000\u01a2\u01a6\u0005\u0089\u0000\u0000\u01a3\u01a6\u0003D\"\u0000"+
- "\u01a4\u01a6\u0003F#\u0000\u01a5\u01a2\u0001\u0000\u0000\u0000\u01a5\u01a3"+
- "\u0001\u0000\u0000\u0000\u01a5\u01a4\u0001\u0000\u0000\u0000\u01a6C\u0001"+
- "\u0000\u0000\u0000\u01a7\u01aa\u0005K\u0000\u0000\u01a8\u01aa\u0005^\u0000"+
- "\u0000\u01a9\u01a7\u0001\u0000\u0000\u0000\u01a9\u01a8\u0001\u0000\u0000"+
- "\u0000\u01aaE\u0001\u0000\u0000\u0000\u01ab\u01ae\u0005]\u0000\u0000\u01ac"+
- "\u01ae\u0005_\u0000\u0000\u01ad\u01ab\u0001\u0000\u0000\u0000\u01ad\u01ac"+
- "\u0001\u0000\u0000\u0000\u01aeG\u0001\u0000\u0000\u0000\u01af\u01b3\u0003"+
- "@ \u0000\u01b0\u01b3\u0003D\"\u0000\u01b1\u01b3\u0003F#\u0000\u01b2\u01af"+
- "\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000\u0000\u0000\u01b2\u01b1"+
- "\u0001\u0000\u0000\u0000\u01b3I\u0001\u0000\u0000\u0000\u01b4\u01b5\u0005"+
- "\u000b\u0000\u0000\u01b5\u01b6\u0003\u00a6S\u0000\u01b6K\u0001\u0000\u0000"+
- "\u0000\u01b7\u01b8\u0005\u000f\u0000\u0000\u01b8\u01bd\u0003N\'\u0000"+
- "\u01b9\u01ba\u0005=\u0000\u0000\u01ba\u01bc\u0003N\'\u0000\u01bb\u01b9"+
- "\u0001\u0000\u0000\u0000\u01bc\u01bf\u0001\u0000\u0000\u0000\u01bd\u01bb"+
- "\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000\u0000\u0000\u01beM\u0001"+
- "\u0000\u0000\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01c0\u01c2\u0003"+
- "\u0090H\u0000\u01c1\u01c3\u0007\u0002\u0000\u0000\u01c2\u01c1\u0001\u0000"+
- "\u0000\u0000\u01c2\u01c3\u0001\u0000\u0000\u0000\u01c3\u01c6\u0001\u0000"+
- "\u0000\u0000\u01c4\u01c5\u0005H\u0000\u0000\u01c5\u01c7\u0007\u0003\u0000"+
- "\u0000\u01c6\u01c4\u0001\u0000\u0000\u0000\u01c6\u01c7\u0001\u0000\u0000"+
- "\u0000\u01c7O\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005\u001f\u0000\u0000"+
- "\u01c9\u01ca\u0003>\u001f\u0000\u01caQ\u0001\u0000\u0000\u0000\u01cb\u01cc"+
- "\u0005\u001e\u0000\u0000\u01cc\u01cd\u0003>\u001f\u0000\u01cdS\u0001\u0000"+
- "\u0000\u0000\u01ce\u01cf\u0005!\u0000\u0000\u01cf\u01d4\u0003V+\u0000"+
- "\u01d0\u01d1\u0005=\u0000\u0000\u01d1\u01d3\u0003V+\u0000\u01d2\u01d0"+
- "\u0001\u0000\u0000\u0000\u01d3\u01d6\u0001\u0000\u0000\u0000\u01d4\u01d2"+
- "\u0001\u0000\u0000\u0000\u01d4\u01d5\u0001\u0000\u0000\u0000\u01d5U\u0001"+
- "\u0000\u0000\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d7\u01d8\u0003"+
- ":\u001d\u0000\u01d8\u01d9\u0005\u008d\u0000\u0000\u01d9\u01da\u0003:\u001d"+
- "\u0000\u01da\u01e0\u0001\u0000\u0000\u0000\u01db\u01dc\u0003:\u001d\u0000"+
- "\u01dc\u01dd\u00058\u0000\u0000\u01dd\u01de\u0003:\u001d\u0000\u01de\u01e0"+
- "\u0001\u0000\u0000\u0000\u01df\u01d7\u0001\u0000\u0000\u0000\u01df\u01db"+
- "\u0001\u0000\u0000\u0000\u01e0W\u0001\u0000\u0000\u0000\u01e1\u01e2\u0005"+
- "\b\u0000\u0000\u01e2\u01e3\u0003\u009aM\u0000\u01e3\u01e5\u0003\u00b0"+
- "X\u0000\u01e4\u01e6\u0003Z-\u0000\u01e5\u01e4\u0001\u0000\u0000\u0000"+
- "\u01e5\u01e6\u0001\u0000\u0000\u0000\u01e6Y\u0001\u0000\u0000\u0000\u01e7"+
- "\u01ec\u0003\\.\u0000\u01e8\u01e9\u0005=\u0000\u0000\u01e9\u01eb\u0003"+
- "\\.\u0000\u01ea\u01e8\u0001\u0000\u0000\u0000\u01eb\u01ee\u0001\u0000"+
- "\u0000\u0000\u01ec\u01ea\u0001\u0000\u0000\u0000\u01ec\u01ed\u0001\u0000"+
- "\u0000\u0000\u01ed[\u0001\u0000\u0000\u0000\u01ee\u01ec\u0001\u0000\u0000"+
- "\u0000\u01ef\u01f0\u0003@ \u0000\u01f0\u01f1\u00058\u0000\u0000\u01f1"+
- "\u01f2\u0003\u00a6S\u0000\u01f2]\u0001\u0000\u0000\u0000\u01f3\u01f4\u0005"+
- "N\u0000\u0000\u01f4\u01f6\u0003\u00a0P\u0000\u01f5\u01f3\u0001\u0000\u0000"+
- "\u0000\u01f5\u01f6\u0001\u0000\u0000\u0000\u01f6_\u0001\u0000\u0000\u0000"+
- "\u01f7\u01f8\u0005\n\u0000\u0000\u01f8\u01f9\u0003\u009aM\u0000\u01f9"+
- "\u01fe\u0003\u00b0X\u0000\u01fa\u01fb\u0005=\u0000\u0000\u01fb\u01fd\u0003"+
- "\u00b0X\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fd\u0200\u0001\u0000"+
- "\u0000\u0000\u01fe\u01fc\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001\u0000"+
- "\u0000\u0000\u01ffa\u0001\u0000\u0000\u0000\u0200\u01fe\u0001\u0000\u0000"+
- "\u0000\u0201\u0202\u0005\u001d\u0000\u0000\u0202\u0203\u00036\u001b\u0000"+
- "\u0203c\u0001\u0000\u0000\u0000\u0204\u0205\u0005\u0006\u0000\u0000\u0205"+
- "\u0206\u0003f3\u0000\u0206e\u0001\u0000\u0000\u0000\u0207\u0208\u0005"+
- "b\u0000\u0000\u0208\u0209\u0003\u0004\u0002\u0000\u0209\u020a\u0005c\u0000"+
- "\u0000\u020ag\u0001\u0000\u0000\u0000\u020b\u020c\u0005#\u0000\u0000\u020c"+
- "\u020d\u0005\u0094\u0000\u0000\u020di\u0001\u0000\u0000\u0000\u020e\u020f"+
- "\u0005\u0005\u0000\u0000\u020f\u0212\u0003l6\u0000\u0210\u0211\u0005I"+
- "\u0000\u0000\u0211\u0213\u0003:\u001d\u0000\u0212\u0210\u0001\u0000\u0000"+
- "\u0000\u0212\u0213\u0001\u0000\u0000\u0000\u0213\u021d\u0001\u0000\u0000"+
- "\u0000\u0214\u0215\u0005N\u0000\u0000\u0215\u021a\u0003n7\u0000\u0216"+
- "\u0217\u0005=\u0000\u0000\u0217\u0219\u0003n7\u0000\u0218\u0216\u0001"+
- "\u0000\u0000\u0000\u0219\u021c\u0001\u0000\u0000\u0000\u021a\u0218\u0001"+
- "\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021b\u021e\u0001"+
- "\u0000\u0000\u0000\u021c\u021a\u0001\u0000\u0000\u0000\u021d\u0214\u0001"+
- "\u0000\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021ek\u0001\u0000"+
- "\u0000\u0000\u021f\u0220\u0007\u0004\u0000\u0000\u0220m\u0001\u0000\u0000"+
- "\u0000\u0221\u0222\u0003:\u001d\u0000\u0222\u0223\u00058\u0000\u0000\u0223"+
- "\u0225\u0001\u0000\u0000\u0000\u0224\u0221\u0001\u0000\u0000\u0000\u0224"+
- "\u0225\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+
- "\u0227\u0003:\u001d\u0000\u0227o\u0001\u0000\u0000\u0000\u0228\u0229\u0005"+
- "\u000e\u0000\u0000\u0229\u022a\u0003\u00a6S\u0000\u022aq\u0001\u0000\u0000"+
- "\u0000\u022b\u022c\u0005\u0004\u0000\u0000\u022c\u022f\u00036\u001b\u0000"+
- "\u022d\u022e\u0005I\u0000\u0000\u022e\u0230\u00036\u001b\u0000\u022f\u022d"+
- "\u0001\u0000\u0000\u0000\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0236"+
- "\u0001\u0000\u0000\u0000\u0231\u0232\u0005\u008d\u0000\u0000\u0232\u0233"+
- "\u00036\u001b\u0000\u0233\u0234\u0005=\u0000\u0000\u0234\u0235\u00036"+
- "\u001b\u0000\u0235\u0237\u0001\u0000\u0000\u0000\u0236\u0231\u0001\u0000"+
- "\u0000\u0000\u0236\u0237\u0001\u0000\u0000\u0000\u0237s\u0001\u0000\u0000"+
- "\u0000\u0238\u0239\u0005\u0014\u0000\u0000\u0239\u023a\u0003v;\u0000\u023a"+
- "u\u0001\u0000\u0000\u0000\u023b\u023d\u0003x<\u0000\u023c\u023b\u0001"+
- "\u0000\u0000\u0000\u023d\u023e\u0001\u0000\u0000\u0000\u023e\u023c\u0001"+
- "\u0000\u0000\u0000\u023e\u023f\u0001\u0000\u0000\u0000\u023fw\u0001\u0000"+
- "\u0000\u0000\u0240\u0241\u0005b\u0000\u0000\u0241\u0242\u0003z=\u0000"+
- "\u0242\u0243\u0005c\u0000\u0000\u0243y\u0001\u0000\u0000\u0000\u0244\u0245"+
- "\u0006=\uffff\uffff\u0000\u0245\u0246\u0003|>\u0000\u0246\u024c\u0001"+
- "\u0000\u0000\u0000\u0247\u0248\n\u0001\u0000\u0000\u0248\u0249\u00052"+
- "\u0000\u0000\u0249\u024b\u0003|>\u0000\u024a\u0247\u0001\u0000\u0000\u0000"+
- "\u024b\u024e\u0001\u0000\u0000\u0000\u024c\u024a\u0001\u0000\u0000\u0000"+
- "\u024c\u024d\u0001\u0000\u0000\u0000\u024d{\u0001\u0000\u0000\u0000\u024e"+
- "\u024c\u0001\u0000\u0000\u0000\u024f\u0250\u0003\b\u0004\u0000\u0250}"+
- "\u0001\u0000\u0000\u0000\u0251\u0255\u0005\f\u0000\u0000\u0252\u0253\u0003"+
- "6\u001b\u0000\u0253\u0254\u00058\u0000\u0000\u0254\u0256\u0001\u0000\u0000"+
- "\u0000\u0255\u0252\u0001\u0000\u0000\u0000\u0255\u0256\u0001\u0000\u0000"+
- "\u0000\u0256\u0257\u0001\u0000\u0000\u0000\u0257\u0258\u0003\u00a6S\u0000"+
- "\u0258\u0259\u0005I\u0000\u0000\u0259\u025a\u0003\u0014\n\u0000\u025a"+
- "\u025b\u0003^/\u0000\u025b\u007f\u0001\u0000\u0000\u0000\u025c\u0260\u0005"+
- "\u0007\u0000\u0000\u025d\u025e\u00036\u001b\u0000\u025e\u025f\u00058\u0000"+
- "\u0000\u025f\u0261\u0001\u0000\u0000\u0000\u0260\u025d\u0001\u0000\u0000"+
- "\u0000\u0260\u0261\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000\u0000"+
- "\u0000\u0262\u0263\u0003\u009aM\u0000\u0263\u0264\u0003^/\u0000\u0264"+
- "\u0081\u0001\u0000\u0000\u0000\u0265\u0266\u0005\u0016\u0000\u0000\u0266"+
- "\u0267\u0005w\u0000\u0000\u0267\u026a\u00032\u0019\u0000\u0268\u0269\u0005"+
- "9\u0000\u0000\u0269\u026b\u0003\u0010\b\u0000\u026a\u0268\u0001\u0000"+
- "\u0000\u0000\u026a\u026b\u0001\u0000\u0000\u0000\u026b\u0273\u0001\u0000"+
- "\u0000\u0000\u026c\u026d\u0005\u0017\u0000\u0000\u026d\u0270\u00032\u0019"+
- "\u0000\u026e\u026f\u00059\u0000\u0000\u026f\u0271\u0003\u0010\b\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\u026c\u0001\u0000\u0000\u0000\u0273\u0083\u0001\u0000\u0000\u0000"+
- "\u0274\u0276\u0005\u0015\u0000\u0000\u0275\u0277\u0003@ \u0000\u0276\u0275"+
- "\u0001\u0000\u0000\u0000\u0276\u0277\u0001\u0000\u0000\u0000\u0277\u027b"+
- "\u0001\u0000\u0000\u0000\u0278\u027a\u0003\u0086C\u0000\u0279\u0278\u0001"+
- "\u0000\u0000\u0000\u027a\u027d\u0001\u0000\u0000\u0000\u027b\u0279\u0001"+
- "\u0000\u0000\u0000\u027b\u027c\u0001\u0000\u0000\u0000\u027c\u0085\u0001"+
- "\u0000\u0000\u0000\u027d\u027b\u0001\u0000\u0000\u0000\u027e\u027f\u0005"+
- "r\u0000\u0000\u027f\u0280\u00059\u0000\u0000\u0280\u028a\u00036\u001b"+
- "\u0000\u0281\u0282\u0005s\u0000\u0000\u0282\u0283\u00059\u0000\u0000\u0283"+
- "\u028a\u0003\u0010\b\u0000\u0284\u0285\u0005q\u0000\u0000\u0285\u0286"+
- "\u00059\u0000\u0000\u0286\u028a\u00036\u001b\u0000\u0287\u0288\u0005N"+
- "\u0000\u0000\u0288\u028a\u0003\u00a0P\u0000\u0289\u027e\u0001\u0000\u0000"+
- "\u0000\u0289\u0281\u0001\u0000\u0000\u0000\u0289\u0284\u0001\u0000\u0000"+
- "\u0000\u0289\u0287\u0001\u0000\u0000\u0000\u028a\u0087\u0001\u0000\u0000"+
- "\u0000\u028b\u028c\u0005\u001c\u0000\u0000\u028c\u028d\u0003\"\u0011\u0000"+
- "\u028d\u028e\u0005I\u0000\u0000\u028e\u028f\u0003>\u001f\u0000\u028f\u0089"+
- "\u0001\u0000\u0000\u0000\u0290\u0291\u0005 \u0000\u0000\u0291\u0292\u0003"+
- ">\u001f\u0000\u0292\u008b\u0001\u0000\u0000\u0000\u0293\u0294\u0005\""+
- "\u0000\u0000\u0294\u0295\u0003\u008eG\u0000\u0295\u0296\u0005<\u0000\u0000"+
- "\u0296\u008d\u0001\u0000\u0000\u0000\u0297\u0298\u0003@ \u0000\u0298\u0299"+
- "\u00058\u0000\u0000\u0299\u029a\u0003\u00a6S\u0000\u029a\u008f\u0001\u0000"+
- "\u0000\u0000\u029b\u029c\u0006H\uffff\uffff\u0000\u029c\u029d\u0005F\u0000"+
- "\u0000\u029d\u02b9\u0003\u0090H\b\u029e\u02b9\u0003\u0096K\u0000\u029f"+
- "\u02b9\u0003\u0092I\u0000\u02a0\u02a2\u0003\u0096K\u0000\u02a1\u02a3\u0005"+
- "F\u0000\u0000\u02a2\u02a1\u0001\u0000\u0000\u0000\u02a2\u02a3\u0001\u0000"+
- "\u0000\u0000\u02a3\u02a4\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005B\u0000"+
- "\u0000\u02a5\u02a6\u0005b\u0000\u0000\u02a6\u02ab\u0003\u0096K\u0000\u02a7"+
- "\u02a8\u0005=\u0000\u0000\u02a8\u02aa\u0003\u0096K\u0000\u02a9\u02a7\u0001"+
- "\u0000\u0000\u0000\u02aa\u02ad\u0001\u0000\u0000\u0000\u02ab\u02a9\u0001"+
- "\u0000\u0000\u0000\u02ab\u02ac\u0001\u0000\u0000\u0000\u02ac\u02ae\u0001"+
- "\u0000\u0000\u0000\u02ad\u02ab\u0001\u0000\u0000\u0000\u02ae\u02af\u0005"+
- "c\u0000\u0000\u02af\u02b9\u0001\u0000\u0000\u0000\u02b0\u02b1\u0003\u0096"+
- "K\u0000\u02b1\u02b3\u0005C\u0000\u0000\u02b2\u02b4\u0005F\u0000\u0000"+
- "\u02b3\u02b2\u0001\u0000\u0000\u0000\u02b3\u02b4\u0001\u0000\u0000\u0000"+
- "\u02b4\u02b5\u0001\u0000\u0000\u0000\u02b5\u02b6\u0005G\u0000\u0000\u02b6"+
- "\u02b9\u0001\u0000\u0000\u0000\u02b7\u02b9\u0003\u0094J\u0000\u02b8\u029b"+
- "\u0001\u0000\u0000\u0000\u02b8\u029e\u0001\u0000\u0000\u0000\u02b8\u029f"+
- "\u0001\u0000\u0000\u0000\u02b8\u02a0\u0001\u0000\u0000\u0000\u02b8\u02b0"+
- "\u0001\u0000\u0000\u0000\u02b8\u02b7\u0001\u0000\u0000\u0000\u02b9\u02c2"+
- "\u0001\u0000\u0000\u0000\u02ba\u02bb\n\u0005\u0000\u0000\u02bb\u02bc\u0005"+
- "6\u0000\u0000\u02bc\u02c1\u0003\u0090H\u0006\u02bd\u02be\n\u0004\u0000"+
- "\u0000\u02be\u02bf\u0005J\u0000\u0000\u02bf\u02c1\u0003\u0090H\u0005\u02c0"+
- "\u02ba\u0001\u0000\u0000\u0000\u02c0\u02bd\u0001\u0000\u0000\u0000\u02c1"+
- "\u02c4\u0001\u0000\u0000\u0000\u02c2\u02c0\u0001\u0000\u0000\u0000\u02c2"+
- "\u02c3\u0001\u0000\u0000\u0000\u02c3\u0091\u0001\u0000\u0000\u0000\u02c4"+
- "\u02c2\u0001\u0000\u0000\u0000\u02c5\u02c7\u0003\u0096K\u0000\u02c6\u02c8"+
- "\u0005F\u0000\u0000\u02c7\u02c6\u0001\u0000\u0000\u0000\u02c7\u02c8\u0001"+
- "\u0000\u0000\u0000\u02c8\u02c9\u0001\u0000\u0000\u0000\u02c9\u02ca\u0005"+
- "E\u0000\u0000\u02ca\u02cb\u0003\u00b0X\u0000\u02cb\u02f4\u0001\u0000\u0000"+
- "\u0000\u02cc\u02ce\u0003\u0096K\u0000\u02cd\u02cf\u0005F\u0000\u0000\u02ce"+
- "\u02cd\u0001\u0000\u0000\u0000\u02ce\u02cf\u0001\u0000\u0000\u0000\u02cf"+
- "\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d1\u0005L\u0000\u0000\u02d1\u02d2"+
- "\u0003\u00b0X\u0000\u02d2\u02f4\u0001\u0000\u0000\u0000\u02d3\u02d5\u0003"+
- "\u0096K\u0000\u02d4\u02d6\u0005F\u0000\u0000\u02d5\u02d4\u0001\u0000\u0000"+
- "\u0000\u02d5\u02d6\u0001\u0000\u0000\u0000\u02d6\u02d7\u0001\u0000\u0000"+
- "\u0000\u02d7\u02d8\u0005E\u0000\u0000\u02d8\u02d9\u0005b\u0000\u0000\u02d9"+
- "\u02de\u0003\u00b0X\u0000\u02da\u02db\u0005=\u0000\u0000\u02db\u02dd\u0003"+
- "\u00b0X\u0000\u02dc\u02da\u0001\u0000\u0000\u0000\u02dd\u02e0\u0001\u0000"+
- "\u0000\u0000\u02de\u02dc\u0001\u0000\u0000\u0000\u02de\u02df\u0001\u0000"+
- "\u0000\u0000\u02df\u02e1\u0001\u0000\u0000\u0000\u02e0\u02de\u0001\u0000"+
- "\u0000\u0000\u02e1\u02e2\u0005c\u0000\u0000\u02e2\u02f4\u0001\u0000\u0000"+
- "\u0000\u02e3\u02e5\u0003\u0096K\u0000\u02e4\u02e6\u0005F\u0000\u0000\u02e5"+
- "\u02e4\u0001\u0000\u0000\u0000\u02e5\u02e6\u0001\u0000\u0000\u0000\u02e6"+
- "\u02e7\u0001\u0000\u0000\u0000\u02e7\u02e8\u0005L\u0000\u0000\u02e8\u02e9"+
- "\u0005b\u0000\u0000\u02e9\u02ee\u0003\u00b0X\u0000\u02ea\u02eb\u0005="+
- "\u0000\u0000\u02eb\u02ed\u0003\u00b0X\u0000\u02ec\u02ea\u0001\u0000\u0000"+
- "\u0000\u02ed\u02f0\u0001\u0000\u0000\u0000\u02ee\u02ec\u0001\u0000\u0000"+
- "\u0000\u02ee\u02ef\u0001\u0000\u0000\u0000\u02ef\u02f1\u0001\u0000\u0000"+
- "\u0000\u02f0\u02ee\u0001\u0000\u0000\u0000\u02f1\u02f2\u0005c\u0000\u0000"+
- "\u02f2\u02f4\u0001\u0000\u0000\u0000\u02f3\u02c5\u0001\u0000\u0000\u0000"+
- "\u02f3\u02cc\u0001\u0000\u0000\u0000\u02f3\u02d3\u0001\u0000\u0000\u0000"+
- "\u02f3\u02e3\u0001\u0000\u0000\u0000\u02f4\u0093\u0001\u0000\u0000\u0000"+
- "\u02f5\u02f8\u00036\u001b\u0000\u02f6\u02f7\u0005:\u0000\u0000\u02f7\u02f9"+
- "\u0003\f\u0006\u0000\u02f8\u02f6\u0001\u0000\u0000\u0000\u02f8\u02f9\u0001"+
- "\u0000\u0000\u0000\u02f9\u02fa\u0001\u0000\u0000\u0000\u02fa\u02fb\u0005"+
- ";\u0000\u0000\u02fb\u02fc\u0003\u00a6S\u0000\u02fc\u0095\u0001\u0000\u0000"+
- "\u0000\u02fd\u0303\u0003\u0098L\u0000\u02fe\u02ff\u0003\u0098L\u0000\u02ff"+
- "\u0300\u0003\u00b2Y\u0000\u0300\u0301\u0003\u0098L\u0000\u0301\u0303\u0001"+
- "\u0000\u0000\u0000\u0302\u02fd\u0001\u0000\u0000\u0000\u0302\u02fe\u0001"+
- "\u0000\u0000\u0000\u0303\u0097\u0001\u0000\u0000\u0000\u0304\u0305\u0006"+
- "L\uffff\uffff\u0000\u0305\u0309\u0003\u009aM\u0000\u0306\u0307\u0007\u0005"+
- "\u0000\u0000\u0307\u0309\u0003\u0098L\u0003\u0308\u0304\u0001\u0000\u0000"+
- "\u0000\u0308\u0306\u0001\u0000\u0000\u0000\u0309\u0312\u0001\u0000\u0000"+
- "\u0000\u030a\u030b\n\u0002\u0000\u0000\u030b\u030c\u0007\u0006\u0000\u0000"+
- "\u030c\u0311\u0003\u0098L\u0003\u030d\u030e\n\u0001\u0000\u0000\u030e"+
- "\u030f\u0007\u0005\u0000\u0000\u030f\u0311\u0003\u0098L\u0002\u0310\u030a"+
- "\u0001\u0000\u0000\u0000\u0310\u030d\u0001\u0000\u0000\u0000\u0311\u0314"+
- "\u0001\u0000\u0000\u0000\u0312\u0310\u0001\u0000\u0000\u0000\u0312\u0313"+
- "\u0001\u0000\u0000\u0000\u0313\u0099\u0001\u0000\u0000\u0000\u0314\u0312"+
- "\u0001\u0000\u0000\u0000\u0315\u0316\u0006M\uffff\uffff\u0000\u0316\u031e"+
- "\u0003\u00a6S\u0000\u0317\u031e\u00036\u001b\u0000\u0318\u031e\u0003\u009c"+
- "N\u0000\u0319\u031a\u0005b\u0000\u0000\u031a\u031b\u0003\u0090H\u0000"+
- "\u031b\u031c\u0005c\u0000\u0000\u031c\u031e\u0001\u0000\u0000\u0000\u031d"+
- "\u0315\u0001\u0000\u0000\u0000\u031d\u0317\u0001\u0000\u0000\u0000\u031d"+
- "\u0318\u0001\u0000\u0000\u0000\u031d\u0319\u0001\u0000\u0000\u0000\u031e"+
- "\u0324\u0001\u0000\u0000\u0000\u031f\u0320\n\u0001\u0000\u0000\u0320\u0321"+
- "\u0005:\u0000\u0000\u0321\u0323\u0003\f\u0006\u0000\u0322\u031f\u0001"+
- "\u0000\u0000\u0000\u0323\u0326\u0001\u0000\u0000\u0000\u0324\u0322\u0001"+
- "\u0000\u0000\u0000\u0324\u0325\u0001\u0000\u0000\u0000\u0325\u009b\u0001"+
- "\u0000\u0000\u0000\u0326\u0324\u0001\u0000\u0000\u0000\u0327\u0328\u0003"+
- "\u009eO\u0000\u0328\u0336\u0005b\u0000\u0000\u0329\u0337\u0005X\u0000"+
- "\u0000\u032a\u032f\u0003\u0090H\u0000\u032b\u032c\u0005=\u0000\u0000\u032c"+
- "\u032e\u0003\u0090H\u0000\u032d\u032b\u0001\u0000\u0000\u0000\u032e\u0331"+
- "\u0001\u0000\u0000\u0000\u032f\u032d\u0001\u0000\u0000\u0000\u032f\u0330"+
- "\u0001\u0000\u0000\u0000\u0330\u0334\u0001\u0000\u0000\u0000\u0331\u032f"+
- "\u0001\u0000\u0000\u0000\u0332\u0333\u0005=\u0000\u0000\u0333\u0335\u0003"+
- "\u00a0P\u0000\u0334\u0332\u0001\u0000\u0000\u0000\u0334\u0335\u0001\u0000"+
- "\u0000\u0000\u0335\u0337\u0001\u0000\u0000\u0000\u0336\u0329\u0001\u0000"+
- "\u0000\u0000\u0336\u032a\u0001\u0000\u0000\u0000\u0336\u0337\u0001\u0000"+
- "\u0000\u0000\u0337\u0338\u0001\u0000\u0000\u0000\u0338\u0339\u0005c\u0000"+
- "\u0000\u0339\u009d\u0001\u0000\u0000\u0000\u033a\u033e\u0003H$\u0000\u033b"+
- "\u033e\u0005A\u0000\u0000\u033c\u033e\u0005D\u0000\u0000\u033d\u033a\u0001"+
- "\u0000\u0000\u0000\u033d\u033b\u0001\u0000\u0000\u0000\u033d\u033c\u0001"+
- "\u0000\u0000\u0000\u033e\u009f\u0001\u0000\u0000\u0000\u033f\u0348\u0005"+
- "[\u0000\u0000\u0340\u0345\u0003\u00a2Q\u0000\u0341\u0342\u0005=\u0000"+
- "\u0000\u0342\u0344\u0003\u00a2Q\u0000\u0343\u0341\u0001\u0000\u0000\u0000"+
- "\u0344\u0347\u0001\u0000\u0000\u0000\u0345\u0343\u0001\u0000\u0000\u0000"+
- "\u0345\u0346\u0001\u0000\u0000\u0000\u0346\u0349\u0001\u0000\u0000\u0000"+
- "\u0347\u0345\u0001\u0000\u0000\u0000\u0348\u0340\u0001\u0000\u0000\u0000"+
- "\u0348\u0349\u0001\u0000\u0000\u0000\u0349\u034a\u0001\u0000\u0000\u0000"+
- "\u034a\u034b\u0005\\\u0000\u0000\u034b\u00a1\u0001\u0000\u0000\u0000\u034c"+
- "\u034d\u0003\u00b0X\u0000\u034d\u034e\u0005;\u0000\u0000\u034e\u034f\u0003"+
- "\u00a4R\u0000\u034f\u00a3\u0001\u0000\u0000\u0000\u0350\u0353\u0003\u00a6"+
- "S\u0000\u0351\u0353\u0003\u00a0P\u0000\u0352\u0350\u0001\u0000\u0000\u0000"+
- "\u0352\u0351\u0001\u0000\u0000\u0000\u0353\u00a5\u0001\u0000\u0000\u0000"+
- "\u0354\u037f\u0005G\u0000\u0000\u0355\u0356\u0003\u00aeW\u0000\u0356\u0357"+
- "\u0005d\u0000\u0000\u0357\u037f\u0001\u0000\u0000\u0000\u0358\u037f\u0003"+
- "\u00acV\u0000\u0359\u037f\u0003\u00aeW\u0000\u035a\u037f\u0003\u00a8T"+
- "\u0000\u035b\u037f\u0003D\"\u0000\u035c\u037f\u0003\u00b0X\u0000\u035d"+
- "\u035e\u0005`\u0000\u0000\u035e\u0363\u0003\u00aaU\u0000\u035f\u0360\u0005"+
- "=\u0000\u0000\u0360\u0362\u0003\u00aaU\u0000\u0361\u035f\u0001\u0000\u0000"+
- "\u0000\u0362\u0365\u0001\u0000\u0000\u0000\u0363\u0361\u0001\u0000\u0000"+
- "\u0000\u0363\u0364\u0001\u0000\u0000\u0000\u0364\u0366\u0001\u0000\u0000"+
- "\u0000\u0365\u0363\u0001\u0000\u0000\u0000\u0366\u0367\u0005a\u0000\u0000"+
- "\u0367\u037f\u0001\u0000\u0000\u0000\u0368\u0369\u0005`\u0000\u0000\u0369"+
- "\u036e\u0003\u00a8T\u0000\u036a\u036b\u0005=\u0000\u0000\u036b\u036d\u0003"+
- "\u00a8T\u0000\u036c\u036a\u0001\u0000\u0000\u0000\u036d\u0370\u0001\u0000"+
- "\u0000\u0000\u036e\u036c\u0001\u0000\u0000\u0000\u036e\u036f\u0001\u0000"+
- "\u0000\u0000\u036f\u0371\u0001\u0000\u0000\u0000\u0370\u036e\u0001\u0000"+
- "\u0000\u0000\u0371\u0372\u0005a\u0000\u0000\u0372\u037f\u0001\u0000\u0000"+
- "\u0000\u0373\u0374\u0005`\u0000\u0000\u0374\u0379\u0003\u00b0X\u0000\u0375"+
- "\u0376\u0005=\u0000\u0000\u0376\u0378\u0003\u00b0X\u0000\u0377\u0375\u0001"+
- "\u0000\u0000\u0000\u0378\u037b\u0001\u0000\u0000\u0000\u0379\u0377\u0001"+
- "\u0000\u0000\u0000\u0379\u037a\u0001\u0000\u0000\u0000\u037a\u037c\u0001"+
- "\u0000\u0000\u0000\u037b\u0379\u0001\u0000\u0000\u0000\u037c\u037d\u0005"+
- "a\u0000\u0000\u037d\u037f\u0001\u0000\u0000\u0000\u037e\u0354\u0001\u0000"+
- "\u0000\u0000\u037e\u0355\u0001\u0000\u0000\u0000\u037e\u0358\u0001\u0000"+
- "\u0000\u0000\u037e\u0359\u0001\u0000\u0000\u0000\u037e\u035a\u0001\u0000"+
- "\u0000\u0000\u037e\u035b\u0001\u0000\u0000\u0000\u037e\u035c\u0001\u0000"+
- "\u0000\u0000\u037e\u035d\u0001\u0000\u0000\u0000\u037e\u0368\u0001\u0000"+
- "\u0000\u0000\u037e\u0373\u0001\u0000\u0000\u0000\u037f\u00a7\u0001\u0000"+
- "\u0000\u0000\u0380\u0381\u0007\u0007\u0000\u0000\u0381\u00a9\u0001\u0000"+
- "\u0000\u0000\u0382\u0385\u0003\u00acV\u0000\u0383\u0385\u0003\u00aeW\u0000"+
- "\u0384\u0382\u0001\u0000\u0000\u0000\u0384\u0383\u0001\u0000\u0000\u0000"+
- "\u0385\u00ab\u0001\u0000\u0000\u0000\u0386\u0388\u0007\u0005\u0000\u0000"+
- "\u0387\u0386\u0001\u0000\u0000\u0000\u0387\u0388\u0001\u0000\u0000\u0000"+
- "\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u00055\u0000\u0000\u038a"+
- "\u00ad\u0001\u0000\u0000\u0000\u038b\u038d\u0007\u0005\u0000\u0000\u038c"+
- "\u038b\u0001\u0000\u0000\u0000\u038c\u038d\u0001\u0000\u0000\u0000\u038d"+
- "\u038e\u0001\u0000\u0000\u0000\u038e\u038f\u00054\u0000\u0000\u038f\u00af"+
- "\u0001\u0000\u0000\u0000\u0390\u0391\u00053\u0000\u0000\u0391\u00b1\u0001"+
- "\u0000\u0000\u0000\u0392\u0393\u0007\b\u0000\u0000\u0393\u00b3\u0001\u0000"+
- "\u0000\u0000\u0394\u0395\u0007\t\u0000\u0000\u0395\u0396\u0005{\u0000"+
- "\u0000\u0396\u0397\u0003\u00b6[\u0000\u0397\u0398\u0003\u00b8\\\u0000"+
- "\u0398\u00b5\u0001\u0000\u0000\u0000\u0399\u039a\u0004[\r\u0000\u039a"+
- "\u039c\u0003\"\u0011\u0000\u039b\u039d\u0005\u008d\u0000\u0000\u039c\u039b"+
- "\u0001\u0000\u0000\u0000\u039c\u039d\u0001\u0000\u0000\u0000\u039d\u039e"+
- "\u0001\u0000\u0000\u0000\u039e\u039f\u0005j\u0000\u0000\u039f\u03a2\u0001"+
- "\u0000\u0000\u0000\u03a0\u03a2\u0003\"\u0011\u0000\u03a1\u0399\u0001\u0000"+
- "\u0000\u0000\u03a1\u03a0\u0001\u0000\u0000\u0000\u03a2\u00b7\u0001\u0000"+
- "\u0000\u0000\u03a3\u03a4\u0005I\u0000\u0000\u03a4\u03a9\u0003\u0090H\u0000"+
- "\u03a5\u03a6\u0005=\u0000\u0000\u03a6\u03a8\u0003\u0090H\u0000\u03a7\u03a5"+
- "\u0001\u0000\u0000\u0000\u03a8\u03ab\u0001\u0000\u0000\u0000\u03a9\u03a7"+
- "\u0001\u0000\u0000\u0000\u03a9\u03aa\u0001\u0000\u0000\u0000\u03aa\u00b9"+
- "\u0001\u0000\u0000\u0000\u03ab\u03a9\u0001\u0000\u0000\u0000[\u00bd\u00ce"+
- "\u00d7\u00f1\u0100\u0106\u010f\u0115\u0122\u0126\u012b\u0133\u0141\u0151"+
- "\u0159\u015d\u0164\u016a\u016f\u0178\u017f\u0185\u018e\u0195\u019d\u01a5"+
- "\u01a9\u01ad\u01b2\u01bd\u01c2\u01c6\u01d4\u01df\u01e5\u01ec\u01f5\u01fe"+
- "\u0212\u021a\u021d\u0224\u022f\u0236\u023e\u024c\u0255\u0260\u026a\u0270"+
- "\u0272\u0276\u027b\u0289\u02a2\u02ab\u02b3\u02b8\u02c0\u02c2\u02c7\u02ce"+
- "\u02d5\u02de\u02e5\u02ee\u02f3\u02f8\u0302\u0308\u0310\u0312\u031d\u0324"+
- "\u032f\u0334\u0336\u033d\u0345\u0348\u0352\u0363\u036e\u0379\u037e\u0384"+
- "\u0387\u038c\u039c\u03a1\u03a9";
+ "Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0001\u0000"+
+ "\u0005\u0000\u00be\b\u0000\n\u0000\f\u0000\u00c1\t\u0000\u0001\u0000\u0001"+
+ "\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001"+
+ "\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005\u0002\u00cf"+
+ "\b\u0002\n\u0002\f\u0002\u00d2\t\u0002\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003\u00da\b\u0003\u0001\u0004"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0003\u0004"+
+ "\u00f4\b\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006"+
+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0005\b\u0101"+
+ "\b\b\n\b\f\b\u0104\t\b\u0001\t\u0001\t\u0001\t\u0003\t\u0109\b\t\u0001"+
+ "\t\u0001\t\u0001\n\u0001\n\u0001\n\u0005\n\u0110\b\n\n\n\f\n\u0113\t\n"+
+ "\u0001\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u0118\b\u000b\u0001\f"+
+ "\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+
+ "\u000e\u0005\u000e\u0123\b\u000e\n\u000e\f\u000e\u0126\t\u000e\u0001\u000e"+
+ "\u0003\u000e\u0129\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0003\u000f"+
+ "\u012e\b\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010"+
+ "\u0134\b\u0010\n\u0010\f\u0010\u0137\t\u0010\u0001\u0010\u0001\u0010\u0001"+
+ "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+
+ "\u0011\u0001\u0011\u0001\u0011\u0003\u0011\u0144\b\u0011\u0001\u0012\u0001"+
+ "\u0012\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0015\u0001"+
+ "\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u0152"+
+ "\b\u0016\n\u0016\f\u0016\u0155\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017"+
+ "\u0001\u0018\u0001\u0018\u0003\u0018\u015c\b\u0018\u0001\u0018\u0001\u0018"+
+ "\u0003\u0018\u0160\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0005\u0019"+
+ "\u0165\b\u0019\n\u0019\f\u0019\u0168\t\u0019\u0001\u001a\u0001\u001a\u0001"+
+ "\u001a\u0003\u001a\u016d\b\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0003"+
+ "\u001b\u0172\b\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0003\u001b\u017b\b\u001b\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0005\u001c\u0180\b\u001c\n\u001c\f\u001c\u0183\t\u001c"+
+ "\u0001\u001d\u0001\u001d\u0001\u001d\u0003\u001d\u0188\b\u001d\u0001\u001d"+
+ "\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d"+
+ "\u0003\u001d\u0191\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e"+
+ "\u0196\b\u001e\n\u001e\f\u001e\u0199\t\u001e\u0001\u001f\u0001\u001f\u0001"+
+ "\u001f\u0005\u001f\u019e\b\u001f\n\u001f\f\u001f\u01a1\t\u001f\u0001 "+
+ "\u0001 \u0001!\u0001!\u0001!\u0003!\u01a8\b!\u0001\"\u0001\"\u0003\"\u01ac"+
+ "\b\"\u0001#\u0001#\u0003#\u01b0\b#\u0001$\u0001$\u0001$\u0003$\u01b5\b"+
+ "$\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0005&\u01be\b&\n&"+
+ "\f&\u01c1\t&\u0001\'\u0001\'\u0003\'\u01c5\b\'\u0001\'\u0001\'\u0003\'"+
+ "\u01c9\b\'\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001"+
+ "*\u0001*\u0005*\u01d5\b*\n*\f*\u01d8\t*\u0001+\u0001+\u0001+\u0001+\u0001"+
+ "+\u0001+\u0001+\u0001+\u0003+\u01e2\b+\u0001,\u0001,\u0001,\u0001,\u0003"+
+ ",\u01e8\b,\u0001-\u0001-\u0001-\u0005-\u01ed\b-\n-\f-\u01f0\t-\u0001."+
+ "\u0001.\u0001.\u0001.\u0001/\u0001/\u0003/\u01f8\b/\u00010\u00010\u0001"+
+ "0\u00010\u00010\u00050\u01ff\b0\n0\f0\u0202\t0\u00011\u00011\u00011\u0001"+
+ "2\u00012\u00012\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u0001"+
+ "5\u00015\u00015\u00015\u00035\u0215\b5\u00015\u00015\u00015\u00015\u0005"+
+ "5\u021b\b5\n5\f5\u021e\t5\u00035\u0220\b5\u00016\u00016\u00017\u00017"+
+ "\u00017\u00037\u0227\b7\u00017\u00017\u00018\u00018\u00018\u00019\u0001"+
+ "9\u00019\u00019\u00039\u0232\b9\u00019\u00019\u00019\u00019\u00019\u0003"+
+ "9\u0239\b9\u0001:\u0001:\u0001:\u0001;\u0004;\u023f\b;\u000b;\f;\u0240"+
+ "\u0001<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+
+ "=\u0005=\u024d\b=\n=\f=\u0250\t=\u0001>\u0001>\u0001?\u0001?\u0001?\u0001"+
+ "?\u0003?\u0258\b?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001"+
+ "@\u0001@\u0003@\u0263\b@\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001"+
+ "A\u0001A\u0003A\u026d\bA\u0001A\u0001A\u0001A\u0001A\u0003A\u0273\bA\u0003"+
+ "A\u0275\bA\u0001B\u0001B\u0003B\u0279\bB\u0001B\u0005B\u027c\bB\nB\fB"+
+ "\u027f\tB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+
+ "C\u0001C\u0001C\u0003C\u028c\bC\u0001D\u0001D\u0001D\u0001D\u0001D\u0001"+
+ "E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001"+
+ "G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0003H\u02a5\bH\u0001"+
+ "H\u0001H\u0001H\u0001H\u0001H\u0005H\u02ac\bH\nH\fH\u02af\tH\u0001H\u0001"+
+ "H\u0001H\u0001H\u0001H\u0003H\u02b6\bH\u0001H\u0001H\u0001H\u0003H\u02bb"+
+ "\bH\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0005H\u02c3\bH\nH\fH\u02c6"+
+ "\tH\u0001I\u0001I\u0003I\u02ca\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0003"+
+ "I\u02d1\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02d8\bI\u0001I\u0001"+
+ "I\u0001I\u0001I\u0001I\u0005I\u02df\bI\nI\fI\u02e2\tI\u0001I\u0001I\u0001"+
+ "I\u0001I\u0003I\u02e8\bI\u0001I\u0001I\u0001I\u0001I\u0001I\u0005I\u02ef"+
+ "\bI\nI\fI\u02f2\tI\u0001I\u0001I\u0003I\u02f6\bI\u0001J\u0001J\u0003J"+
+ "\u02fa\bJ\u0001K\u0001K\u0001K\u0003K\u02ff\bK\u0001K\u0001K\u0001K\u0001"+
+ "L\u0001L\u0001L\u0001L\u0001L\u0003L\u0309\bL\u0001M\u0001M\u0001M\u0001"+
+ "M\u0003M\u030f\bM\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0005M\u0317"+
+ "\bM\nM\fM\u031a\tM\u0001N\u0001N\u0001N\u0001N\u0001N\u0001N\u0001N\u0001"+
+ "N\u0003N\u0324\bN\u0001N\u0001N\u0001N\u0005N\u0329\bN\nN\fN\u032c\tN"+
+ "\u0001O\u0001O\u0001O\u0001O\u0001O\u0001O\u0005O\u0334\bO\nO\fO\u0337"+
+ "\tO\u0001O\u0001O\u0003O\u033b\bO\u0003O\u033d\bO\u0001O\u0001O\u0001"+
+ "P\u0001P\u0001P\u0003P\u0344\bP\u0001Q\u0001Q\u0001Q\u0001Q\u0005Q\u034a"+
+ "\bQ\nQ\fQ\u034d\tQ\u0003Q\u034f\bQ\u0001Q\u0001Q\u0001R\u0001R\u0001R"+
+ "\u0001R\u0001S\u0001S\u0003S\u0359\bS\u0001T\u0001T\u0001T\u0001T\u0001"+
+ "T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0005T\u0368"+
+ "\bT\nT\fT\u036b\tT\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0005T\u0373"+
+ "\bT\nT\fT\u0376\tT\u0001T\u0001T\u0001T\u0001T\u0001T\u0001T\u0005T\u037e"+
+ "\bT\nT\fT\u0381\tT\u0001T\u0001T\u0003T\u0385\bT\u0001U\u0001U\u0001V"+
+ "\u0001V\u0003V\u038b\bV\u0001W\u0003W\u038e\bW\u0001W\u0001W\u0001X\u0003"+
+ "X\u0393\bX\u0001X\u0001X\u0001Y\u0001Y\u0001Z\u0001Z\u0001[\u0001[\u0001"+
+ "[\u0001[\u0001[\u0001\\\u0001\\\u0001\\\u0003\\\u03a3\b\\\u0001\\\u0001"+
+ "\\\u0001\\\u0003\\\u03a8\b\\\u0001]\u0001]\u0001]\u0001]\u0005]\u03ae"+
+ "\b]\n]\f]\u03b1\t]\u0001]\u0000\u0005\u0004z\u0090\u009a\u009c^\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\u009a\u009c"+
+ "\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4"+
+ "\u00b6\u00b8\u00ba\u0000\n\u0002\u000033jj\u0001\u0000de\u0002\u00007"+
+ "7>>\u0002\u0000AADD\u0002\u0000((33\u0001\u0000VW\u0001\u0000XZ\u0002"+
+ "\u0000@@MM\u0002\u0000OOQU\u0002\u0000\u0018\u0018\u001a\u001b\u03de\u0000"+
+ "\u00bf\u0001\u0000\u0000\u0000\u0002\u00c5\u0001\u0000\u0000\u0000\u0004"+
+ "\u00c8\u0001\u0000\u0000\u0000\u0006\u00d9\u0001\u0000\u0000\u0000\b\u00f3"+
+ "\u0001\u0000\u0000\u0000\n\u00f5\u0001\u0000\u0000\u0000\f\u00f8\u0001"+
+ "\u0000\u0000\u0000\u000e\u00fa\u0001\u0000\u0000\u0000\u0010\u00fd\u0001"+
+ "\u0000\u0000\u0000\u0012\u0108\u0001\u0000\u0000\u0000\u0014\u010c\u0001"+
+ "\u0000\u0000\u0000\u0016\u0114\u0001\u0000\u0000\u0000\u0018\u0119\u0001"+
+ "\u0000\u0000\u0000\u001a\u011c\u0001\u0000\u0000\u0000\u001c\u011f\u0001"+
+ "\u0000\u0000\u0000\u001e\u012d\u0001\u0000\u0000\u0000 \u012f\u0001\u0000"+
+ "\u0000\u0000\"\u0143\u0001\u0000\u0000\u0000$\u0145\u0001\u0000\u0000"+
+ "\u0000&\u0147\u0001\u0000\u0000\u0000(\u0149\u0001\u0000\u0000\u0000*"+
+ "\u014b\u0001\u0000\u0000\u0000,\u014d\u0001\u0000\u0000\u0000.\u0156\u0001"+
+ "\u0000\u0000\u00000\u0159\u0001\u0000\u0000\u00002\u0161\u0001\u0000\u0000"+
+ "\u00004\u0169\u0001\u0000\u0000\u00006\u017a\u0001\u0000\u0000\u00008"+
+ "\u017c\u0001\u0000\u0000\u0000:\u0190\u0001\u0000\u0000\u0000<\u0192\u0001"+
+ "\u0000\u0000\u0000>\u019a\u0001\u0000\u0000\u0000@\u01a2\u0001\u0000\u0000"+
+ "\u0000B\u01a7\u0001\u0000\u0000\u0000D\u01ab\u0001\u0000\u0000\u0000F"+
+ "\u01af\u0001\u0000\u0000\u0000H\u01b4\u0001\u0000\u0000\u0000J\u01b6\u0001"+
+ "\u0000\u0000\u0000L\u01b9\u0001\u0000\u0000\u0000N\u01c2\u0001\u0000\u0000"+
+ "\u0000P\u01ca\u0001\u0000\u0000\u0000R\u01cd\u0001\u0000\u0000\u0000T"+
+ "\u01d0\u0001\u0000\u0000\u0000V\u01e1\u0001\u0000\u0000\u0000X\u01e3\u0001"+
+ "\u0000\u0000\u0000Z\u01e9\u0001\u0000\u0000\u0000\\\u01f1\u0001\u0000"+
+ "\u0000\u0000^\u01f7\u0001\u0000\u0000\u0000`\u01f9\u0001\u0000\u0000\u0000"+
+ "b\u0203\u0001\u0000\u0000\u0000d\u0206\u0001\u0000\u0000\u0000f\u0209"+
+ "\u0001\u0000\u0000\u0000h\u020d\u0001\u0000\u0000\u0000j\u0210\u0001\u0000"+
+ "\u0000\u0000l\u0221\u0001\u0000\u0000\u0000n\u0226\u0001\u0000\u0000\u0000"+
+ "p\u022a\u0001\u0000\u0000\u0000r\u022d\u0001\u0000\u0000\u0000t\u023a"+
+ "\u0001\u0000\u0000\u0000v\u023e\u0001\u0000\u0000\u0000x\u0242\u0001\u0000"+
+ "\u0000\u0000z\u0246\u0001\u0000\u0000\u0000|\u0251\u0001\u0000\u0000\u0000"+
+ "~\u0253\u0001\u0000\u0000\u0000\u0080\u025e\u0001\u0000\u0000\u0000\u0082"+
+ "\u0274\u0001\u0000\u0000\u0000\u0084\u0276\u0001\u0000\u0000\u0000\u0086"+
+ "\u028b\u0001\u0000\u0000\u0000\u0088\u028d\u0001\u0000\u0000\u0000\u008a"+
+ "\u0292\u0001\u0000\u0000\u0000\u008c\u0295\u0001\u0000\u0000\u0000\u008e"+
+ "\u0299\u0001\u0000\u0000\u0000\u0090\u02ba\u0001\u0000\u0000\u0000\u0092"+
+ "\u02f5\u0001\u0000\u0000\u0000\u0094\u02f9\u0001\u0000\u0000\u0000\u0096"+
+ "\u02fb\u0001\u0000\u0000\u0000\u0098\u0308\u0001\u0000\u0000\u0000\u009a"+
+ "\u030e\u0001\u0000\u0000\u0000\u009c\u0323\u0001\u0000\u0000\u0000\u009e"+
+ "\u032d\u0001\u0000\u0000\u0000\u00a0\u0343\u0001\u0000\u0000\u0000\u00a2"+
+ "\u0345\u0001\u0000\u0000\u0000\u00a4\u0352\u0001\u0000\u0000\u0000\u00a6"+
+ "\u0358\u0001\u0000\u0000\u0000\u00a8\u0384\u0001\u0000\u0000\u0000\u00aa"+
+ "\u0386\u0001\u0000\u0000\u0000\u00ac\u038a\u0001\u0000\u0000\u0000\u00ae"+
+ "\u038d\u0001\u0000\u0000\u0000\u00b0\u0392\u0001\u0000\u0000\u0000\u00b2"+
+ "\u0396\u0001\u0000\u0000\u0000\u00b4\u0398\u0001\u0000\u0000\u0000\u00b6"+
+ "\u039a\u0001\u0000\u0000\u0000\u00b8\u03a7\u0001\u0000\u0000\u0000\u00ba"+
+ "\u03a9\u0001\u0000\u0000\u0000\u00bc\u00be\u0003\u008cF\u0000\u00bd\u00bc"+
+ "\u0001\u0000\u0000\u0000\u00be\u00c1\u0001\u0000\u0000\u0000\u00bf\u00bd"+
+ "\u0001\u0000\u0000\u0000\u00bf\u00c0\u0001\u0000\u0000\u0000\u00c0\u00c2"+
+ "\u0001\u0000\u0000\u0000\u00c1\u00bf\u0001\u0000\u0000\u0000\u00c2\u00c3"+
+ "\u0003\u0002\u0001\u0000\u00c3\u00c4\u0005\u0000\u0000\u0001\u00c4\u0001"+
+ "\u0001\u0000\u0000\u0000\u00c5\u00c6\u0003\u0004\u0002\u0000\u00c6\u00c7"+
+ "\u0005\u0000\u0000\u0001\u00c7\u0003\u0001\u0000\u0000\u0000\u00c8\u00c9"+
+ "\u0006\u0002\uffff\uffff\u0000\u00c9\u00ca\u0003\u0006\u0003\u0000\u00ca"+
+ "\u00d0\u0001\u0000\u0000\u0000\u00cb\u00cc\n\u0001\u0000\u0000\u00cc\u00cd"+
+ "\u00052\u0000\u0000\u00cd\u00cf\u0003\b\u0004\u0000\u00ce\u00cb\u0001"+
+ "\u0000\u0000\u0000\u00cf\u00d2\u0001\u0000\u0000\u0000\u00d0\u00ce\u0001"+
+ "\u0000\u0000\u0000\u00d0\u00d1\u0001\u0000\u0000\u0000\u00d1\u0005\u0001"+
+ "\u0000\u0000\u0000\u00d2\u00d0\u0001\u0000\u0000\u0000\u00d3\u00da\u0003"+
+ "\u0018\f\u0000\u00d4\u00da\u0003\u000e\u0007\u0000\u00d5\u00da\u0003h"+
+ "4\u0000\u00d6\u00da\u0003\u001a\r\u0000\u00d7\u00d8\u0004\u0003\u0001"+
+ "\u0000\u00d8\u00da\u0003d2\u0000\u00d9\u00d3\u0001\u0000\u0000\u0000\u00d9"+
+ "\u00d4\u0001\u0000\u0000\u0000\u00d9\u00d5\u0001\u0000\u0000\u0000\u00d9"+
+ "\u00d6\u0001\u0000\u0000\u0000\u00d9\u00d7\u0001\u0000\u0000\u0000\u00da"+
+ "\u0007\u0001\u0000\u0000\u0000\u00db\u00f4\u0003.\u0017\u0000\u00dc\u00f4"+
+ "\u0003\n\u0005\u0000\u00dd\u00f4\u0003P(\u0000\u00de\u00f4\u0003J%\u0000"+
+ "\u00df\u00f4\u00030\u0018\u0000\u00e0\u00f4\u0003L&\u0000\u00e1\u00f4"+
+ "\u0003R)\u0000\u00e2\u00f4\u0003T*\u0000\u00e3\u00f4\u0003X,\u0000\u00e4"+
+ "\u00f4\u0003`0\u0000\u00e5\u00f4\u0003j5\u0000\u00e6\u00f4\u0003b1\u0000"+
+ "\u00e7\u00f4\u0003\u00b6[\u0000\u00e8\u00f4\u0003r9\u0000\u00e9\u00f4"+
+ "\u0003\u0080@\u0000\u00ea\u00f4\u0003p8\u0000\u00eb\u00f4\u0003t:\u0000"+
+ "\u00ec\u00f4\u0003~?\u0000\u00ed\u00f4\u0003\u0082A\u0000\u00ee\u00f4"+
+ "\u0003\u0084B\u0000\u00ef\u00f0\u0004\u0004\u0002\u0000\u00f0\u00f4\u0003"+
+ "\u0088D\u0000\u00f1\u00f2\u0004\u0004\u0003\u0000\u00f2\u00f4\u0003\u008a"+
+ "E\u0000\u00f3\u00db\u0001\u0000\u0000\u0000\u00f3\u00dc\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00dd\u0001\u0000\u0000\u0000\u00f3\u00de\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00df\u0001\u0000\u0000\u0000\u00f3\u00e0\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00e1\u0001\u0000\u0000\u0000\u00f3\u00e2\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00e3\u0001\u0000\u0000\u0000\u00f3\u00e4\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00e5\u0001\u0000\u0000\u0000\u00f3\u00e6\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00e7\u0001\u0000\u0000\u0000\u00f3\u00e8\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00e9\u0001\u0000\u0000\u0000\u00f3\u00ea\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00eb\u0001\u0000\u0000\u0000\u00f3\u00ec\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00ed\u0001\u0000\u0000\u0000\u00f3\u00ee\u0001\u0000\u0000"+
+ "\u0000\u00f3\u00ef\u0001\u0000\u0000\u0000\u00f3\u00f1\u0001\u0000\u0000"+
+ "\u0000\u00f4\t\u0001\u0000\u0000\u0000\u00f5\u00f6\u0005\u0011\u0000\u0000"+
+ "\u00f6\u00f7\u0003\u0090H\u0000\u00f7\u000b\u0001\u0000\u0000\u0000\u00f8"+
+ "\u00f9\u0003@ \u0000\u00f9\r\u0001\u0000\u0000\u0000\u00fa\u00fb\u0005"+
+ "\r\u0000\u0000\u00fb\u00fc\u0003\u0010\b\u0000\u00fc\u000f\u0001\u0000"+
+ "\u0000\u0000\u00fd\u0102\u0003\u0012\t\u0000\u00fe\u00ff\u0005=\u0000"+
+ "\u0000\u00ff\u0101\u0003\u0012\t\u0000\u0100\u00fe\u0001\u0000\u0000\u0000"+
+ "\u0101\u0104\u0001\u0000\u0000\u0000\u0102\u0100\u0001\u0000\u0000\u0000"+
+ "\u0102\u0103\u0001\u0000\u0000\u0000\u0103\u0011\u0001\u0000\u0000\u0000"+
+ "\u0104\u0102\u0001\u0000\u0000\u0000\u0105\u0106\u00036\u001b\u0000\u0106"+
+ "\u0107\u00058\u0000\u0000\u0107\u0109\u0001\u0000\u0000\u0000\u0108\u0105"+
+ "\u0001\u0000\u0000\u0000\u0108\u0109\u0001\u0000\u0000\u0000\u0109\u010a"+
+ "\u0001\u0000\u0000\u0000\u010a\u010b\u0003\u0090H\u0000\u010b\u0013\u0001"+
+ "\u0000\u0000\u0000\u010c\u0111\u0003\u0016\u000b\u0000\u010d\u010e\u0005"+
+ "=\u0000\u0000\u010e\u0110\u0003\u0016\u000b\u0000\u010f\u010d\u0001\u0000"+
+ "\u0000\u0000\u0110\u0113\u0001\u0000\u0000\u0000\u0111\u010f\u0001\u0000"+
+ "\u0000\u0000\u0111\u0112\u0001\u0000\u0000\u0000\u0112\u0015\u0001\u0000"+
+ "\u0000\u0000\u0113\u0111\u0001\u0000\u0000\u0000\u0114\u0117\u00036\u001b"+
+ "\u0000\u0115\u0116\u00058\u0000\u0000\u0116\u0118\u0003\u0090H\u0000\u0117"+
+ "\u0115\u0001\u0000\u0000\u0000\u0117\u0118\u0001\u0000\u0000\u0000\u0118"+
+ "\u0017\u0001\u0000\u0000\u0000\u0119\u011a\u0005\u0012\u0000\u0000\u011a"+
+ "\u011b\u0003\u001c\u000e\u0000\u011b\u0019\u0001\u0000\u0000\u0000\u011c"+
+ "\u011d\u0005\u0013\u0000\u0000\u011d\u011e\u0003\u001c\u000e\u0000\u011e"+
+ "\u001b\u0001\u0000\u0000\u0000\u011f\u0124\u0003\u001e\u000f\u0000\u0120"+
+ "\u0121\u0005=\u0000\u0000\u0121\u0123\u0003\u001e\u000f\u0000\u0122\u0120"+
+ "\u0001\u0000\u0000\u0000\u0123\u0126\u0001\u0000\u0000\u0000\u0124\u0122"+
+ "\u0001\u0000\u0000\u0000\u0124\u0125\u0001\u0000\u0000\u0000\u0125\u0128"+
+ "\u0001\u0000\u0000\u0000\u0126\u0124\u0001\u0000\u0000\u0000\u0127\u0129"+
+ "\u0003,\u0016\u0000\u0128\u0127\u0001\u0000\u0000\u0000\u0128\u0129\u0001"+
+ "\u0000\u0000\u0000\u0129\u001d\u0001\u0000\u0000\u0000\u012a\u012e\u0003"+
+ "\"\u0011\u0000\u012b\u012c\u0004\u000f\u0004\u0000\u012c\u012e\u0003 "+
+ "\u0010\u0000\u012d\u012a\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000"+
+ "\u0000\u0000\u012e\u001f\u0001\u0000\u0000\u0000\u012f\u0130\u0005b\u0000"+
+ "\u0000\u0130\u0135\u0003\u0018\f\u0000\u0131\u0132\u00052\u0000\u0000"+
+ "\u0132\u0134\u0003\b\u0004\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\u0138\u0001\u0000\u0000\u0000\u0137"+
+ "\u0135\u0001\u0000\u0000\u0000\u0138\u0139\u0005c\u0000\u0000\u0139!\u0001"+
+ "\u0000\u0000\u0000\u013a\u013b\u0003$\u0012\u0000\u013b\u013c\u0005;\u0000"+
+ "\u0000\u013c\u013d\u0003(\u0014\u0000\u013d\u0144\u0001\u0000\u0000\u0000"+
+ "\u013e\u013f\u0003(\u0014\u0000\u013f\u0140\u0005:\u0000\u0000\u0140\u0141"+
+ "\u0003&\u0013\u0000\u0141\u0144\u0001\u0000\u0000\u0000\u0142\u0144\u0003"+
+ "*\u0015\u0000\u0143\u013a\u0001\u0000\u0000\u0000\u0143\u013e\u0001\u0000"+
+ "\u0000\u0000\u0143\u0142\u0001\u0000\u0000\u0000\u0144#\u0001\u0000\u0000"+
+ "\u0000\u0145\u0146\u0005j\u0000\u0000\u0146%\u0001\u0000\u0000\u0000\u0147"+
+ "\u0148\u0005j\u0000\u0000\u0148\'\u0001\u0000\u0000\u0000\u0149\u014a"+
+ "\u0005j\u0000\u0000\u014a)\u0001\u0000\u0000\u0000\u014b\u014c\u0007\u0000"+
+ "\u0000\u0000\u014c+\u0001\u0000\u0000\u0000\u014d\u014e\u0005i\u0000\u0000"+
+ "\u014e\u0153\u0005j\u0000\u0000\u014f\u0150\u0005=\u0000\u0000\u0150\u0152"+
+ "\u0005j\u0000\u0000\u0151\u014f\u0001\u0000\u0000\u0000\u0152\u0155\u0001"+
+ "\u0000\u0000\u0000\u0153\u0151\u0001\u0000\u0000\u0000\u0153\u0154\u0001"+
+ "\u0000\u0000\u0000\u0154-\u0001\u0000\u0000\u0000\u0155\u0153\u0001\u0000"+
+ "\u0000\u0000\u0156\u0157\u0005\t\u0000\u0000\u0157\u0158\u0003\u0010\b"+
+ "\u0000\u0158/\u0001\u0000\u0000\u0000\u0159\u015b\u0005\u0010\u0000\u0000"+
+ "\u015a\u015c\u00032\u0019\u0000\u015b\u015a\u0001\u0000\u0000\u0000\u015b"+
+ "\u015c\u0001\u0000\u0000\u0000\u015c\u015f\u0001\u0000\u0000\u0000\u015d"+
+ "\u015e\u00059\u0000\u0000\u015e\u0160\u0003\u0010\b\u0000\u015f\u015d"+
+ "\u0001\u0000\u0000\u0000\u015f\u0160\u0001\u0000\u0000\u0000\u01601\u0001"+
+ "\u0000\u0000\u0000\u0161\u0166\u00034\u001a\u0000\u0162\u0163\u0005=\u0000"+
+ "\u0000\u0163\u0165\u00034\u001a\u0000\u0164\u0162\u0001\u0000\u0000\u0000"+
+ "\u0165\u0168\u0001\u0000\u0000\u0000\u0166\u0164\u0001\u0000\u0000\u0000"+
+ "\u0166\u0167\u0001\u0000\u0000\u0000\u01673\u0001\u0000\u0000\u0000\u0168"+
+ "\u0166\u0001\u0000\u0000\u0000\u0169\u016c\u0003\u0012\t\u0000\u016a\u016b"+
+ "\u0005\u0011\u0000\u0000\u016b\u016d\u0003\u0090H\u0000\u016c\u016a\u0001"+
+ "\u0000\u0000\u0000\u016c\u016d\u0001\u0000\u0000\u0000\u016d5\u0001\u0000"+
+ "\u0000\u0000\u016e\u016f\u0004\u001b\u0005\u0000\u016f\u0171\u0005`\u0000"+
+ "\u0000\u0170\u0172\u0005d\u0000\u0000\u0171\u0170\u0001\u0000\u0000\u0000"+
+ "\u0171\u0172\u0001\u0000\u0000\u0000\u0172\u0173\u0001\u0000\u0000\u0000"+
+ "\u0173\u0174\u0005a\u0000\u0000\u0174\u0175\u0005?\u0000\u0000\u0175\u0176"+
+ "\u0005`\u0000\u0000\u0176\u0177\u00038\u001c\u0000\u0177\u0178\u0005a"+
+ "\u0000\u0000\u0178\u017b\u0001\u0000\u0000\u0000\u0179\u017b\u00038\u001c"+
+ "\u0000\u017a\u016e\u0001\u0000\u0000\u0000\u017a\u0179\u0001\u0000\u0000"+
+ "\u0000\u017b7\u0001\u0000\u0000\u0000\u017c\u0181\u0003H$\u0000\u017d"+
+ "\u017e\u0005?\u0000\u0000\u017e\u0180\u0003H$\u0000\u017f\u017d\u0001"+
+ "\u0000\u0000\u0000\u0180\u0183\u0001\u0000\u0000\u0000\u0181\u017f\u0001"+
+ "\u0000\u0000\u0000\u0181\u0182\u0001\u0000\u0000\u0000\u01829\u0001\u0000"+
+ "\u0000\u0000\u0183\u0181\u0001\u0000\u0000\u0000\u0184\u0185\u0004\u001d"+
+ "\u0006\u0000\u0185\u0187\u0005`\u0000\u0000\u0186\u0188\u0005\u0089\u0000"+
+ "\u0000\u0187\u0186\u0001\u0000\u0000\u0000\u0187\u0188\u0001\u0000\u0000"+
+ "\u0000\u0188\u0189\u0001\u0000\u0000\u0000\u0189\u018a\u0005a\u0000\u0000"+
+ "\u018a\u018b\u0005?\u0000\u0000\u018b\u018c\u0005`\u0000\u0000\u018c\u018d"+
+ "\u0003<\u001e\u0000\u018d\u018e\u0005a\u0000\u0000\u018e\u0191\u0001\u0000"+
+ "\u0000\u0000\u018f\u0191\u0003<\u001e\u0000\u0190\u0184\u0001\u0000\u0000"+
+ "\u0000\u0190\u018f\u0001\u0000\u0000\u0000\u0191;\u0001\u0000\u0000\u0000"+
+ "\u0192\u0197\u0003B!\u0000\u0193\u0194\u0005?\u0000\u0000\u0194\u0196"+
+ "\u0003B!\u0000\u0195\u0193\u0001\u0000\u0000\u0000\u0196\u0199\u0001\u0000"+
+ "\u0000\u0000\u0197\u0195\u0001\u0000\u0000\u0000\u0197\u0198\u0001\u0000"+
+ "\u0000\u0000\u0198=\u0001\u0000\u0000\u0000\u0199\u0197\u0001\u0000\u0000"+
+ "\u0000\u019a\u019f\u0003:\u001d\u0000\u019b\u019c\u0005=\u0000\u0000\u019c"+
+ "\u019e\u0003:\u001d\u0000\u019d\u019b\u0001\u0000\u0000\u0000\u019e\u01a1"+
+ "\u0001\u0000\u0000\u0000\u019f\u019d\u0001\u0000\u0000\u0000\u019f\u01a0"+
+ "\u0001\u0000\u0000\u0000\u01a0?\u0001\u0000\u0000\u0000\u01a1\u019f\u0001"+
+ "\u0000\u0000\u0000\u01a2\u01a3\u0007\u0001\u0000\u0000\u01a3A\u0001\u0000"+
+ "\u0000\u0000\u01a4\u01a8\u0005\u0089\u0000\u0000\u01a5\u01a8\u0003D\""+
+ "\u0000\u01a6\u01a8\u0003F#\u0000\u01a7\u01a4\u0001\u0000\u0000\u0000\u01a7"+
+ "\u01a5\u0001\u0000\u0000\u0000\u01a7\u01a6\u0001\u0000\u0000\u0000\u01a8"+
+ "C\u0001\u0000\u0000\u0000\u01a9\u01ac\u0005K\u0000\u0000\u01aa\u01ac\u0005"+
+ "^\u0000\u0000\u01ab\u01a9\u0001\u0000\u0000\u0000\u01ab\u01aa\u0001\u0000"+
+ "\u0000\u0000\u01acE\u0001\u0000\u0000\u0000\u01ad\u01b0\u0005]\u0000\u0000"+
+ "\u01ae\u01b0\u0005_\u0000\u0000\u01af\u01ad\u0001\u0000\u0000\u0000\u01af"+
+ "\u01ae\u0001\u0000\u0000\u0000\u01b0G\u0001\u0000\u0000\u0000\u01b1\u01b5"+
+ "\u0003@ \u0000\u01b2\u01b5\u0003D\"\u0000\u01b3\u01b5\u0003F#\u0000\u01b4"+
+ "\u01b1\u0001\u0000\u0000\u0000\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b4"+
+ "\u01b3\u0001\u0000\u0000\u0000\u01b5I\u0001\u0000\u0000\u0000\u01b6\u01b7"+
+ "\u0005\u000b\u0000\u0000\u01b7\u01b8\u0003\u00a8T\u0000\u01b8K\u0001\u0000"+
+ "\u0000\u0000\u01b9\u01ba\u0005\u000f\u0000\u0000\u01ba\u01bf\u0003N\'"+
+ "\u0000\u01bb\u01bc\u0005=\u0000\u0000\u01bc\u01be\u0003N\'\u0000\u01bd"+
+ "\u01bb\u0001\u0000\u0000\u0000\u01be\u01c1\u0001\u0000\u0000\u0000\u01bf"+
+ "\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001\u0000\u0000\u0000\u01c0"+
+ "M\u0001\u0000\u0000\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000\u01c2\u01c4"+
+ "\u0003\u0090H\u0000\u01c3\u01c5\u0007\u0002\u0000\u0000\u01c4\u01c3\u0001"+
+ "\u0000\u0000\u0000\u01c4\u01c5\u0001\u0000\u0000\u0000\u01c5\u01c8\u0001"+
+ "\u0000\u0000\u0000\u01c6\u01c7\u0005H\u0000\u0000\u01c7\u01c9\u0007\u0003"+
+ "\u0000\u0000\u01c8\u01c6\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001\u0000"+
+ "\u0000\u0000\u01c9O\u0001\u0000\u0000\u0000\u01ca\u01cb\u0005\u001f\u0000"+
+ "\u0000\u01cb\u01cc\u0003>\u001f\u0000\u01ccQ\u0001\u0000\u0000\u0000\u01cd"+
+ "\u01ce\u0005\u001e\u0000\u0000\u01ce\u01cf\u0003>\u001f\u0000\u01cfS\u0001"+
+ "\u0000\u0000\u0000\u01d0\u01d1\u0005!\u0000\u0000\u01d1\u01d6\u0003V+"+
+ "\u0000\u01d2\u01d3\u0005=\u0000\u0000\u01d3\u01d5\u0003V+\u0000\u01d4"+
+ "\u01d2\u0001\u0000\u0000\u0000\u01d5\u01d8\u0001\u0000\u0000\u0000\u01d6"+
+ "\u01d4\u0001\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7"+
+ "U\u0001\u0000\u0000\u0000\u01d8\u01d6\u0001\u0000\u0000\u0000\u01d9\u01da"+
+ "\u0003:\u001d\u0000\u01da\u01db\u0005\u008d\u0000\u0000\u01db\u01dc\u0003"+
+ ":\u001d\u0000\u01dc\u01e2\u0001\u0000\u0000\u0000\u01dd\u01de\u0003:\u001d"+
+ "\u0000\u01de\u01df\u00058\u0000\u0000\u01df\u01e0\u0003:\u001d\u0000\u01e0"+
+ "\u01e2\u0001\u0000\u0000\u0000\u01e1\u01d9\u0001\u0000\u0000\u0000\u01e1"+
+ "\u01dd\u0001\u0000\u0000\u0000\u01e2W\u0001\u0000\u0000\u0000\u01e3\u01e4"+
+ "\u0005\b\u0000\u0000\u01e4\u01e5\u0003\u009cN\u0000\u01e5\u01e7\u0003"+
+ "\u00b2Y\u0000\u01e6\u01e8\u0003Z-\u0000\u01e7\u01e6\u0001\u0000\u0000"+
+ "\u0000\u01e7\u01e8\u0001\u0000\u0000\u0000\u01e8Y\u0001\u0000\u0000\u0000"+
+ "\u01e9\u01ee\u0003\\.\u0000\u01ea\u01eb\u0005=\u0000\u0000\u01eb\u01ed"+
+ "\u0003\\.\u0000\u01ec\u01ea\u0001\u0000\u0000\u0000\u01ed\u01f0\u0001"+
+ "\u0000\u0000\u0000\u01ee\u01ec\u0001\u0000\u0000\u0000\u01ee\u01ef\u0001"+
+ "\u0000\u0000\u0000\u01ef[\u0001\u0000\u0000\u0000\u01f0\u01ee\u0001\u0000"+
+ "\u0000\u0000\u01f1\u01f2\u0003@ \u0000\u01f2\u01f3\u00058\u0000\u0000"+
+ "\u01f3\u01f4\u0003\u00a8T\u0000\u01f4]\u0001\u0000\u0000\u0000\u01f5\u01f6"+
+ "\u0005N\u0000\u0000\u01f6\u01f8\u0003\u00a2Q\u0000\u01f7\u01f5\u0001\u0000"+
+ "\u0000\u0000\u01f7\u01f8\u0001\u0000\u0000\u0000\u01f8_\u0001\u0000\u0000"+
+ "\u0000\u01f9\u01fa\u0005\n\u0000\u0000\u01fa\u01fb\u0003\u009cN\u0000"+
+ "\u01fb\u0200\u0003\u00b2Y\u0000\u01fc\u01fd\u0005=\u0000\u0000\u01fd\u01ff"+
+ "\u0003\u00b2Y\u0000\u01fe\u01fc\u0001\u0000\u0000\u0000\u01ff\u0202\u0001"+
+ "\u0000\u0000\u0000\u0200\u01fe\u0001\u0000\u0000\u0000\u0200\u0201\u0001"+
+ "\u0000\u0000\u0000\u0201a\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000"+
+ "\u0000\u0000\u0203\u0204\u0005\u001d\u0000\u0000\u0204\u0205\u00036\u001b"+
+ "\u0000\u0205c\u0001\u0000\u0000\u0000\u0206\u0207\u0005\u0006\u0000\u0000"+
+ "\u0207\u0208\u0003f3\u0000\u0208e\u0001\u0000\u0000\u0000\u0209\u020a"+
+ "\u0005b\u0000\u0000\u020a\u020b\u0003\u0004\u0002\u0000\u020b\u020c\u0005"+
+ "c\u0000\u0000\u020cg\u0001\u0000\u0000\u0000\u020d\u020e\u0005#\u0000"+
+ "\u0000\u020e\u020f\u0005\u0094\u0000\u0000\u020fi\u0001\u0000\u0000\u0000"+
+ "\u0210\u0211\u0005\u0005\u0000\u0000\u0211\u0214\u0003l6\u0000\u0212\u0213"+
+ "\u0005I\u0000\u0000\u0213\u0215\u0003:\u001d\u0000\u0214\u0212\u0001\u0000"+
+ "\u0000\u0000\u0214\u0215\u0001\u0000\u0000\u0000\u0215\u021f\u0001\u0000"+
+ "\u0000\u0000\u0216\u0217\u0005N\u0000\u0000\u0217\u021c\u0003n7\u0000"+
+ "\u0218\u0219\u0005=\u0000\u0000\u0219\u021b\u0003n7\u0000\u021a\u0218"+
+ "\u0001\u0000\u0000\u0000\u021b\u021e\u0001\u0000\u0000\u0000\u021c\u021a"+
+ "\u0001\u0000\u0000\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d\u0220"+
+ "\u0001\u0000\u0000\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021f\u0216"+
+ "\u0001\u0000\u0000\u0000\u021f\u0220\u0001\u0000\u0000\u0000\u0220k\u0001"+
+ "\u0000\u0000\u0000\u0221\u0222\u0007\u0004\u0000\u0000\u0222m\u0001\u0000"+
+ "\u0000\u0000\u0223\u0224\u0003:\u001d\u0000\u0224\u0225\u00058\u0000\u0000"+
+ "\u0225\u0227\u0001\u0000\u0000\u0000\u0226\u0223\u0001\u0000\u0000\u0000"+
+ "\u0226\u0227\u0001\u0000\u0000\u0000\u0227\u0228\u0001\u0000\u0000\u0000"+
+ "\u0228\u0229\u0003:\u001d\u0000\u0229o\u0001\u0000\u0000\u0000\u022a\u022b"+
+ "\u0005\u000e\u0000\u0000\u022b\u022c\u0003\u00a8T\u0000\u022cq\u0001\u0000"+
+ "\u0000\u0000\u022d\u022e\u0005\u0004\u0000\u0000\u022e\u0231\u00036\u001b"+
+ "\u0000\u022f\u0230\u0005I\u0000\u0000\u0230\u0232\u00036\u001b\u0000\u0231"+
+ "\u022f\u0001\u0000\u0000\u0000\u0231\u0232\u0001\u0000\u0000\u0000\u0232"+
+ "\u0238\u0001\u0000\u0000\u0000\u0233\u0234\u0005\u008d\u0000\u0000\u0234"+
+ "\u0235\u00036\u001b\u0000\u0235\u0236\u0005=\u0000\u0000\u0236\u0237\u0003"+
+ "6\u001b\u0000\u0237\u0239\u0001\u0000\u0000\u0000\u0238\u0233\u0001\u0000"+
+ "\u0000\u0000\u0238\u0239\u0001\u0000\u0000\u0000\u0239s\u0001\u0000\u0000"+
+ "\u0000\u023a\u023b\u0005\u0014\u0000\u0000\u023b\u023c\u0003v;\u0000\u023c"+
+ "u\u0001\u0000\u0000\u0000\u023d\u023f\u0003x<\u0000\u023e\u023d\u0001"+
+ "\u0000\u0000\u0000\u023f\u0240\u0001\u0000\u0000\u0000\u0240\u023e\u0001"+
+ "\u0000\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241w\u0001\u0000"+
+ "\u0000\u0000\u0242\u0243\u0005b\u0000\u0000\u0243\u0244\u0003z=\u0000"+
+ "\u0244\u0245\u0005c\u0000\u0000\u0245y\u0001\u0000\u0000\u0000\u0246\u0247"+
+ "\u0006=\uffff\uffff\u0000\u0247\u0248\u0003|>\u0000\u0248\u024e\u0001"+
+ "\u0000\u0000\u0000\u0249\u024a\n\u0001\u0000\u0000\u024a\u024b\u00052"+
+ "\u0000\u0000\u024b\u024d\u0003|>\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\u024f{\u0001\u0000\u0000\u0000\u0250"+
+ "\u024e\u0001\u0000\u0000\u0000\u0251\u0252\u0003\b\u0004\u0000\u0252}"+
+ "\u0001\u0000\u0000\u0000\u0253\u0257\u0005\f\u0000\u0000\u0254\u0255\u0003"+
+ "6\u001b\u0000\u0255\u0256\u00058\u0000\u0000\u0256\u0258\u0001\u0000\u0000"+
+ "\u0000\u0257\u0254\u0001\u0000\u0000\u0000\u0257\u0258\u0001\u0000\u0000"+
+ "\u0000\u0258\u0259\u0001\u0000\u0000\u0000\u0259\u025a\u0003\u00a8T\u0000"+
+ "\u025a\u025b\u0005I\u0000\u0000\u025b\u025c\u0003\u0014\n\u0000\u025c"+
+ "\u025d\u0003^/\u0000\u025d\u007f\u0001\u0000\u0000\u0000\u025e\u0262\u0005"+
+ "\u0007\u0000\u0000\u025f\u0260\u00036\u001b\u0000\u0260\u0261\u00058\u0000"+
+ "\u0000\u0261\u0263\u0001\u0000\u0000\u0000\u0262\u025f\u0001\u0000\u0000"+
+ "\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263\u0264\u0001\u0000\u0000"+
+ "\u0000\u0264\u0265\u0003\u009cN\u0000\u0265\u0266\u0003^/\u0000\u0266"+
+ "\u0081\u0001\u0000\u0000\u0000\u0267\u0268\u0005\u0016\u0000\u0000\u0268"+
+ "\u0269\u0005w\u0000\u0000\u0269\u026c\u00032\u0019\u0000\u026a\u026b\u0005"+
+ "9\u0000\u0000\u026b\u026d\u0003\u0010\b\u0000\u026c\u026a\u0001\u0000"+
+ "\u0000\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u0275\u0001\u0000"+
+ "\u0000\u0000\u026e\u026f\u0005\u0017\u0000\u0000\u026f\u0272\u00032\u0019"+
+ "\u0000\u0270\u0271\u00059\u0000\u0000\u0271\u0273\u0003\u0010\b\u0000"+
+ "\u0272\u0270\u0001\u0000\u0000\u0000\u0272\u0273\u0001\u0000\u0000\u0000"+
+ "\u0273\u0275\u0001\u0000\u0000\u0000\u0274\u0267\u0001\u0000\u0000\u0000"+
+ "\u0274\u026e\u0001\u0000\u0000\u0000\u0275\u0083\u0001\u0000\u0000\u0000"+
+ "\u0276\u0278\u0005\u0015\u0000\u0000\u0277\u0279\u0003@ \u0000\u0278\u0277"+
+ "\u0001\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000\u0000\u0279\u027d"+
+ "\u0001\u0000\u0000\u0000\u027a\u027c\u0003\u0086C\u0000\u027b\u027a\u0001"+
+ "\u0000\u0000\u0000\u027c\u027f\u0001\u0000\u0000\u0000\u027d\u027b\u0001"+
+ "\u0000\u0000\u0000\u027d\u027e\u0001\u0000\u0000\u0000\u027e\u0085\u0001"+
+ "\u0000\u0000\u0000\u027f\u027d\u0001\u0000\u0000\u0000\u0280\u0281\u0005"+
+ "r\u0000\u0000\u0281\u0282\u00059\u0000\u0000\u0282\u028c\u00036\u001b"+
+ "\u0000\u0283\u0284\u0005s\u0000\u0000\u0284\u0285\u00059\u0000\u0000\u0285"+
+ "\u028c\u0003\u0010\b\u0000\u0286\u0287\u0005q\u0000\u0000\u0287\u0288"+
+ "\u00059\u0000\u0000\u0288\u028c\u00036\u001b\u0000\u0289\u028a\u0005N"+
+ "\u0000\u0000\u028a\u028c\u0003\u00a2Q\u0000\u028b\u0280\u0001\u0000\u0000"+
+ "\u0000\u028b\u0283\u0001\u0000\u0000\u0000\u028b\u0286\u0001\u0000\u0000"+
+ "\u0000\u028b\u0289\u0001\u0000\u0000\u0000\u028c\u0087\u0001\u0000\u0000"+
+ "\u0000\u028d\u028e\u0005\u001c\u0000\u0000\u028e\u028f\u0003\"\u0011\u0000"+
+ "\u028f\u0290\u0005I\u0000\u0000\u0290\u0291\u0003>\u001f\u0000\u0291\u0089"+
+ "\u0001\u0000\u0000\u0000\u0292\u0293\u0005 \u0000\u0000\u0293\u0294\u0003"+
+ ">\u001f\u0000\u0294\u008b\u0001\u0000\u0000\u0000\u0295\u0296\u0005\""+
+ "\u0000\u0000\u0296\u0297\u0003\u008eG\u0000\u0297\u0298\u0005<\u0000\u0000"+
+ "\u0298\u008d\u0001\u0000\u0000\u0000\u0299\u029a\u0003@ \u0000\u029a\u029b"+
+ "\u00058\u0000\u0000\u029b\u029c\u0003\u00a8T\u0000\u029c\u008f\u0001\u0000"+
+ "\u0000\u0000\u029d\u029e\u0006H\uffff\uffff\u0000\u029e\u029f\u0005F\u0000"+
+ "\u0000\u029f\u02bb\u0003\u0090H\b\u02a0\u02bb\u0003\u0098L\u0000\u02a1"+
+ "\u02bb\u0003\u0092I\u0000\u02a2\u02a4\u0003\u0098L\u0000\u02a3\u02a5\u0005"+
+ "F\u0000\u0000\u02a4\u02a3\u0001\u0000\u0000\u0000\u02a4\u02a5\u0001\u0000"+
+ "\u0000\u0000\u02a5\u02a6\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005B\u0000"+
+ "\u0000\u02a7\u02a8\u0005b\u0000\u0000\u02a8\u02ad\u0003\u0098L\u0000\u02a9"+
+ "\u02aa\u0005=\u0000\u0000\u02aa\u02ac\u0003\u0098L\u0000\u02ab\u02a9\u0001"+
+ "\u0000\u0000\u0000\u02ac\u02af\u0001\u0000\u0000\u0000\u02ad\u02ab\u0001"+
+ "\u0000\u0000\u0000\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae\u02b0\u0001"+
+ "\u0000\u0000\u0000\u02af\u02ad\u0001\u0000\u0000\u0000\u02b0\u02b1\u0005"+
+ "c\u0000\u0000\u02b1\u02bb\u0001\u0000\u0000\u0000\u02b2\u02b3\u0003\u0098"+
+ "L\u0000\u02b3\u02b5\u0005C\u0000\u0000\u02b4\u02b6\u0005F\u0000\u0000"+
+ "\u02b5\u02b4\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000\u0000\u0000"+
+ "\u02b6\u02b7\u0001\u0000\u0000\u0000\u02b7\u02b8\u0005G\u0000\u0000\u02b8"+
+ "\u02bb\u0001\u0000\u0000\u0000\u02b9\u02bb\u0003\u0096K\u0000\u02ba\u029d"+
+ "\u0001\u0000\u0000\u0000\u02ba\u02a0\u0001\u0000\u0000\u0000\u02ba\u02a1"+
+ "\u0001\u0000\u0000\u0000\u02ba\u02a2\u0001\u0000\u0000\u0000\u02ba\u02b2"+
+ "\u0001\u0000\u0000\u0000\u02ba\u02b9\u0001\u0000\u0000\u0000\u02bb\u02c4"+
+ "\u0001\u0000\u0000\u0000\u02bc\u02bd\n\u0005\u0000\u0000\u02bd\u02be\u0005"+
+ "6\u0000\u0000\u02be\u02c3\u0003\u0090H\u0006\u02bf\u02c0\n\u0004\u0000"+
+ "\u0000\u02c0\u02c1\u0005J\u0000\u0000\u02c1\u02c3\u0003\u0090H\u0005\u02c2"+
+ "\u02bc\u0001\u0000\u0000\u0000\u02c2\u02bf\u0001\u0000\u0000\u0000\u02c3"+
+ "\u02c6\u0001\u0000\u0000\u0000\u02c4\u02c2\u0001\u0000\u0000\u0000\u02c4"+
+ "\u02c5\u0001\u0000\u0000\u0000\u02c5\u0091\u0001\u0000\u0000\u0000\u02c6"+
+ "\u02c4\u0001\u0000\u0000\u0000\u02c7\u02c9\u0003\u0098L\u0000\u02c8\u02ca"+
+ "\u0005F\u0000\u0000\u02c9\u02c8\u0001\u0000\u0000\u0000\u02c9\u02ca\u0001"+
+ "\u0000\u0000\u0000\u02ca\u02cb\u0001\u0000\u0000\u0000\u02cb\u02cc\u0005"+
+ "E\u0000\u0000\u02cc\u02cd\u0003\u0094J\u0000\u02cd\u02f6\u0001\u0000\u0000"+
+ "\u0000\u02ce\u02d0\u0003\u0098L\u0000\u02cf\u02d1\u0005F\u0000\u0000\u02d0"+
+ "\u02cf\u0001\u0000\u0000\u0000\u02d0\u02d1\u0001\u0000\u0000\u0000\u02d1"+
+ "\u02d2\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005L\u0000\u0000\u02d3\u02d4"+
+ "\u0003\u00b2Y\u0000\u02d4\u02f6\u0001\u0000\u0000\u0000\u02d5\u02d7\u0003"+
+ "\u0098L\u0000\u02d6\u02d8\u0005F\u0000\u0000\u02d7\u02d6\u0001\u0000\u0000"+
+ "\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000"+
+ "\u0000\u02d9\u02da\u0005E\u0000\u0000\u02da\u02db\u0005b\u0000\u0000\u02db"+
+ "\u02e0\u0003\u00b2Y\u0000\u02dc\u02dd\u0005=\u0000\u0000\u02dd\u02df\u0003"+
+ "\u00b2Y\u0000\u02de\u02dc\u0001\u0000\u0000\u0000\u02df\u02e2\u0001\u0000"+
+ "\u0000\u0000\u02e0\u02de\u0001\u0000\u0000\u0000\u02e0\u02e1\u0001\u0000"+
+ "\u0000\u0000\u02e1\u02e3\u0001\u0000\u0000\u0000\u02e2\u02e0\u0001\u0000"+
+ "\u0000\u0000\u02e3\u02e4\u0005c\u0000\u0000\u02e4\u02f6\u0001\u0000\u0000"+
+ "\u0000\u02e5\u02e7\u0003\u0098L\u0000\u02e6\u02e8\u0005F\u0000\u0000\u02e7"+
+ "\u02e6\u0001\u0000\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000\u02e8"+
+ "\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ea\u0005L\u0000\u0000\u02ea\u02eb"+
+ "\u0005b\u0000\u0000\u02eb\u02f0\u0003\u00b2Y\u0000\u02ec\u02ed\u0005="+
+ "\u0000\u0000\u02ed\u02ef\u0003\u00b2Y\u0000\u02ee\u02ec\u0001\u0000\u0000"+
+ "\u0000\u02ef\u02f2\u0001\u0000\u0000\u0000\u02f0\u02ee\u0001\u0000\u0000"+
+ "\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f3\u0001\u0000\u0000"+
+ "\u0000\u02f2\u02f0\u0001\u0000\u0000\u0000\u02f3\u02f4\u0005c\u0000\u0000"+
+ "\u02f4\u02f6\u0001\u0000\u0000\u0000\u02f5\u02c7\u0001\u0000\u0000\u0000"+
+ "\u02f5\u02ce\u0001\u0000\u0000\u0000\u02f5\u02d5\u0001\u0000\u0000\u0000"+
+ "\u02f5\u02e5\u0001\u0000\u0000\u0000\u02f6\u0093\u0001\u0000\u0000\u0000"+
+ "\u02f7\u02fa\u0003\u00b2Y\u0000\u02f8\u02fa\u0003D\"\u0000\u02f9\u02f7"+
+ "\u0001\u0000\u0000\u0000\u02f9\u02f8\u0001\u0000\u0000\u0000\u02fa\u0095"+
+ "\u0001\u0000\u0000\u0000\u02fb\u02fe\u00036\u001b\u0000\u02fc\u02fd\u0005"+
+ ":\u0000\u0000\u02fd\u02ff\u0003\f\u0006\u0000\u02fe\u02fc\u0001\u0000"+
+ "\u0000\u0000\u02fe\u02ff\u0001\u0000\u0000\u0000\u02ff\u0300\u0001\u0000"+
+ "\u0000\u0000\u0300\u0301\u0005;\u0000\u0000\u0301\u0302\u0003\u00a8T\u0000"+
+ "\u0302\u0097\u0001\u0000\u0000\u0000\u0303\u0309\u0003\u009aM\u0000\u0304"+
+ "\u0305\u0003\u009aM\u0000\u0305\u0306\u0003\u00b4Z\u0000\u0306\u0307\u0003"+
+ "\u009aM\u0000\u0307\u0309\u0001\u0000\u0000\u0000\u0308\u0303\u0001\u0000"+
+ "\u0000\u0000\u0308\u0304\u0001\u0000\u0000\u0000\u0309\u0099\u0001\u0000"+
+ "\u0000\u0000\u030a\u030b\u0006M\uffff\uffff\u0000\u030b\u030f\u0003\u009c"+
+ "N\u0000\u030c\u030d\u0007\u0005\u0000\u0000\u030d\u030f\u0003\u009aM\u0003"+
+ "\u030e\u030a\u0001\u0000\u0000\u0000\u030e\u030c\u0001\u0000\u0000\u0000"+
+ "\u030f\u0318\u0001\u0000\u0000\u0000\u0310\u0311\n\u0002\u0000\u0000\u0311"+
+ "\u0312\u0007\u0006\u0000\u0000\u0312\u0317\u0003\u009aM\u0003\u0313\u0314"+
+ "\n\u0001\u0000\u0000\u0314\u0315\u0007\u0005\u0000\u0000\u0315\u0317\u0003"+
+ "\u009aM\u0002\u0316\u0310\u0001\u0000\u0000\u0000\u0316\u0313\u0001\u0000"+
+ "\u0000\u0000\u0317\u031a\u0001\u0000\u0000\u0000\u0318\u0316\u0001\u0000"+
+ "\u0000\u0000\u0318\u0319\u0001\u0000\u0000\u0000\u0319\u009b\u0001\u0000"+
+ "\u0000\u0000\u031a\u0318\u0001\u0000\u0000\u0000\u031b\u031c\u0006N\uffff"+
+ "\uffff\u0000\u031c\u0324\u0003\u00a8T\u0000\u031d\u0324\u00036\u001b\u0000"+
+ "\u031e\u0324\u0003\u009eO\u0000\u031f\u0320\u0005b\u0000\u0000\u0320\u0321"+
+ "\u0003\u0090H\u0000\u0321\u0322\u0005c\u0000\u0000\u0322\u0324\u0001\u0000"+
+ "\u0000\u0000\u0323\u031b\u0001\u0000\u0000\u0000\u0323\u031d\u0001\u0000"+
+ "\u0000\u0000\u0323\u031e\u0001\u0000\u0000\u0000\u0323\u031f\u0001\u0000"+
+ "\u0000\u0000\u0324\u032a\u0001\u0000\u0000\u0000\u0325\u0326\n\u0001\u0000"+
+ "\u0000\u0326\u0327\u0005:\u0000\u0000\u0327\u0329\u0003\f\u0006\u0000"+
+ "\u0328\u0325\u0001\u0000\u0000\u0000\u0329\u032c\u0001\u0000\u0000\u0000"+
+ "\u032a\u0328\u0001\u0000\u0000\u0000\u032a\u032b\u0001\u0000\u0000\u0000"+
+ "\u032b\u009d\u0001\u0000\u0000\u0000\u032c\u032a\u0001\u0000\u0000\u0000"+
+ "\u032d\u032e\u0003\u00a0P\u0000\u032e\u033c\u0005b\u0000\u0000\u032f\u033d"+
+ "\u0005X\u0000\u0000\u0330\u0335\u0003\u0090H\u0000\u0331\u0332\u0005="+
+ "\u0000\u0000\u0332\u0334\u0003\u0090H\u0000\u0333\u0331\u0001\u0000\u0000"+
+ "\u0000\u0334\u0337\u0001\u0000\u0000\u0000\u0335\u0333\u0001\u0000\u0000"+
+ "\u0000\u0335\u0336\u0001\u0000\u0000\u0000\u0336\u033a\u0001\u0000\u0000"+
+ "\u0000\u0337\u0335\u0001\u0000\u0000\u0000\u0338\u0339\u0005=\u0000\u0000"+
+ "\u0339\u033b\u0003\u00a2Q\u0000\u033a\u0338\u0001\u0000\u0000\u0000\u033a"+
+ "\u033b\u0001\u0000\u0000\u0000\u033b\u033d\u0001\u0000\u0000\u0000\u033c"+
+ "\u032f\u0001\u0000\u0000\u0000\u033c\u0330\u0001\u0000\u0000\u0000\u033c"+
+ "\u033d\u0001\u0000\u0000\u0000\u033d\u033e\u0001\u0000\u0000\u0000\u033e"+
+ "\u033f\u0005c\u0000\u0000\u033f\u009f\u0001\u0000\u0000\u0000\u0340\u0344"+
+ "\u0003H$\u0000\u0341\u0344\u0005A\u0000\u0000\u0342\u0344\u0005D\u0000"+
+ "\u0000\u0343\u0340\u0001\u0000\u0000\u0000\u0343\u0341\u0001\u0000\u0000"+
+ "\u0000\u0343\u0342\u0001\u0000\u0000\u0000\u0344\u00a1\u0001\u0000\u0000"+
+ "\u0000\u0345\u034e\u0005[\u0000\u0000\u0346\u034b\u0003\u00a4R\u0000\u0347"+
+ "\u0348\u0005=\u0000\u0000\u0348\u034a\u0003\u00a4R\u0000\u0349\u0347\u0001"+
+ "\u0000\u0000\u0000\u034a\u034d\u0001\u0000\u0000\u0000\u034b\u0349\u0001"+
+ "\u0000\u0000\u0000\u034b\u034c\u0001\u0000\u0000\u0000\u034c\u034f\u0001"+
+ "\u0000\u0000\u0000\u034d\u034b\u0001\u0000\u0000\u0000\u034e\u0346\u0001"+
+ "\u0000\u0000\u0000\u034e\u034f\u0001\u0000\u0000\u0000\u034f\u0350\u0001"+
+ "\u0000\u0000\u0000\u0350\u0351\u0005\\\u0000\u0000\u0351\u00a3\u0001\u0000"+
+ "\u0000\u0000\u0352\u0353\u0003\u00b2Y\u0000\u0353\u0354\u0005;\u0000\u0000"+
+ "\u0354\u0355\u0003\u00a6S\u0000\u0355\u00a5\u0001\u0000\u0000\u0000\u0356"+
+ "\u0359\u0003\u00a8T\u0000\u0357\u0359\u0003\u00a2Q\u0000\u0358\u0356\u0001"+
+ "\u0000\u0000\u0000\u0358\u0357\u0001\u0000\u0000\u0000\u0359\u00a7\u0001"+
+ "\u0000\u0000\u0000\u035a\u0385\u0005G\u0000\u0000\u035b\u035c\u0003\u00b0"+
+ "X\u0000\u035c\u035d\u0005d\u0000\u0000\u035d\u0385\u0001\u0000\u0000\u0000"+
+ "\u035e\u0385\u0003\u00aeW\u0000\u035f\u0385\u0003\u00b0X\u0000\u0360\u0385"+
+ "\u0003\u00aaU\u0000\u0361\u0385\u0003D\"\u0000\u0362\u0385\u0003\u00b2"+
+ "Y\u0000\u0363\u0364\u0005`\u0000\u0000\u0364\u0369\u0003\u00acV\u0000"+
+ "\u0365\u0366\u0005=\u0000\u0000\u0366\u0368\u0003\u00acV\u0000\u0367\u0365"+
+ "\u0001\u0000\u0000\u0000\u0368\u036b\u0001\u0000\u0000\u0000\u0369\u0367"+
+ "\u0001\u0000\u0000\u0000\u0369\u036a\u0001\u0000\u0000\u0000\u036a\u036c"+
+ "\u0001\u0000\u0000\u0000\u036b\u0369\u0001\u0000\u0000\u0000\u036c\u036d"+
+ "\u0005a\u0000\u0000\u036d\u0385\u0001\u0000\u0000\u0000\u036e\u036f\u0005"+
+ "`\u0000\u0000\u036f\u0374\u0003\u00aaU\u0000\u0370\u0371\u0005=\u0000"+
+ "\u0000\u0371\u0373\u0003\u00aaU\u0000\u0372\u0370\u0001\u0000\u0000\u0000"+
+ "\u0373\u0376\u0001\u0000\u0000\u0000\u0374\u0372\u0001\u0000\u0000\u0000"+
+ "\u0374\u0375\u0001\u0000\u0000\u0000\u0375\u0377\u0001\u0000\u0000\u0000"+
+ "\u0376\u0374\u0001\u0000\u0000\u0000\u0377\u0378\u0005a\u0000\u0000\u0378"+
+ "\u0385\u0001\u0000\u0000\u0000\u0379\u037a\u0005`\u0000\u0000\u037a\u037f"+
+ "\u0003\u00b2Y\u0000\u037b\u037c\u0005=\u0000\u0000\u037c\u037e\u0003\u00b2"+
+ "Y\u0000\u037d\u037b\u0001\u0000\u0000\u0000\u037e\u0381\u0001\u0000\u0000"+
+ "\u0000\u037f\u037d\u0001\u0000\u0000\u0000\u037f\u0380\u0001\u0000\u0000"+
+ "\u0000\u0380\u0382\u0001\u0000\u0000\u0000\u0381\u037f\u0001\u0000\u0000"+
+ "\u0000\u0382\u0383\u0005a\u0000\u0000\u0383\u0385\u0001\u0000\u0000\u0000"+
+ "\u0384\u035a\u0001\u0000\u0000\u0000\u0384\u035b\u0001\u0000\u0000\u0000"+
+ "\u0384\u035e\u0001\u0000\u0000\u0000\u0384\u035f\u0001\u0000\u0000\u0000"+
+ "\u0384\u0360\u0001\u0000\u0000\u0000\u0384\u0361\u0001\u0000\u0000\u0000"+
+ "\u0384\u0362\u0001\u0000\u0000\u0000\u0384\u0363\u0001\u0000\u0000\u0000"+
+ "\u0384\u036e\u0001\u0000\u0000\u0000\u0384\u0379\u0001\u0000\u0000\u0000"+
+ "\u0385\u00a9\u0001\u0000\u0000\u0000\u0386\u0387\u0007\u0007\u0000\u0000"+
+ "\u0387\u00ab\u0001\u0000\u0000\u0000\u0388\u038b\u0003\u00aeW\u0000\u0389"+
+ "\u038b\u0003\u00b0X\u0000\u038a\u0388\u0001\u0000\u0000\u0000\u038a\u0389"+
+ "\u0001\u0000\u0000\u0000\u038b\u00ad\u0001\u0000\u0000\u0000\u038c\u038e"+
+ "\u0007\u0005\u0000\u0000\u038d\u038c\u0001\u0000\u0000\u0000\u038d\u038e"+
+ "\u0001\u0000\u0000\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f\u0390"+
+ "\u00055\u0000\u0000\u0390\u00af\u0001\u0000\u0000\u0000\u0391\u0393\u0007"+
+ "\u0005\u0000\u0000\u0392\u0391\u0001\u0000\u0000\u0000\u0392\u0393\u0001"+
+ "\u0000\u0000\u0000\u0393\u0394\u0001\u0000\u0000\u0000\u0394\u0395\u0005"+
+ "4\u0000\u0000\u0395\u00b1\u0001\u0000\u0000\u0000\u0396\u0397\u00053\u0000"+
+ "\u0000\u0397\u00b3\u0001\u0000\u0000\u0000\u0398\u0399\u0007\b\u0000\u0000"+
+ "\u0399\u00b5\u0001\u0000\u0000\u0000\u039a\u039b\u0007\t\u0000\u0000\u039b"+
+ "\u039c\u0005{\u0000\u0000\u039c\u039d\u0003\u00b8\\\u0000\u039d\u039e"+
+ "\u0003\u00ba]\u0000\u039e\u00b7\u0001\u0000\u0000\u0000\u039f\u03a0\u0004"+
+ "\\\r\u0000\u03a0\u03a2\u0003\"\u0011\u0000\u03a1\u03a3\u0005\u008d\u0000"+
+ "\u0000\u03a2\u03a1\u0001\u0000\u0000\u0000\u03a2\u03a3\u0001\u0000\u0000"+
+ "\u0000\u03a3\u03a4\u0001\u0000\u0000\u0000\u03a4\u03a5\u0005j\u0000\u0000"+
+ "\u03a5\u03a8\u0001\u0000\u0000\u0000\u03a6\u03a8\u0003\"\u0011\u0000\u03a7"+
+ "\u039f\u0001\u0000\u0000\u0000\u03a7\u03a6\u0001\u0000\u0000\u0000\u03a8"+
+ "\u00b9\u0001\u0000\u0000\u0000\u03a9\u03aa\u0005I\u0000\u0000\u03aa\u03af"+
+ "\u0003\u0090H\u0000\u03ab\u03ac\u0005=\u0000\u0000\u03ac\u03ae\u0003\u0090"+
+ "H\u0000\u03ad\u03ab\u0001\u0000\u0000\u0000\u03ae\u03b1\u0001\u0000\u0000"+
+ "\u0000\u03af\u03ad\u0001\u0000\u0000\u0000\u03af\u03b0\u0001\u0000\u0000"+
+ "\u0000\u03b0\u00bb\u0001\u0000\u0000\u0000\u03b1\u03af\u0001\u0000\u0000"+
+ "\u0000\\\u00bf\u00d0\u00d9\u00f3\u0102\u0108\u0111\u0117\u0124\u0128\u012d"+
+ "\u0135\u0143\u0153\u015b\u015f\u0166\u016c\u0171\u017a\u0181\u0187\u0190"+
+ "\u0197\u019f\u01a7\u01ab\u01af\u01b4\u01bf\u01c4\u01c8\u01d6\u01e1\u01e7"+
+ "\u01ee\u01f7\u0200\u0214\u021c\u021f\u0226\u0231\u0238\u0240\u024e\u0257"+
+ "\u0262\u026c\u0272\u0274\u0278\u027d\u028b\u02a4\u02ad\u02b5\u02ba\u02c2"+
+ "\u02c4\u02c9\u02d0\u02d7\u02e0\u02e7\u02f0\u02f5\u02f9\u02fe\u0308\u030e"+
+ "\u0316\u0318\u0323\u032a\u0335\u033a\u033c\u0343\u034b\u034e\u0358\u0369"+
+ "\u0374\u037f\u0384\u038a\u038d\u0392\u03a2\u03a7\u03af";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
index c73b06ccc9d63..9877026253727 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java
@@ -1064,6 +1064,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
index 208f89842d6cd..333cf90708431 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java
@@ -629,6 +629,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
index 04fc908e1ac90..328f60e8c2268 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
@@ -927,6 +927,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#stringOrParameter}.
+ * @param ctx the parse tree
+ */
+ void enterStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#stringOrParameter}.
+ * @param ctx the parse tree
+ */
+ void exitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx);
/**
* Enter a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}.
* @param ctx the parse tree
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
index 09484d88bf6c8..07449ebd0ea71 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
@@ -561,6 +561,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#stringOrParameter}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx);
/**
* Visit a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}.
* @param ctx the parse tree
From 82ec663a77558c90fd3b23a83da5f7bc88d0c23c Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Thu, 13 Nov 2025 11:17:09 -0800
Subject: [PATCH 07/15] Tests check for LIKE_PARAMETER_SUPPORT capability
---
.../xpack/esql/qa/rest/RestEsqlTestCase.java | 3 +-
.../xpack/esql/analysis/AnalyzerTests.java | 21 ++++++-------
.../esql/parser/StatementParserTests.java | 30 ++++++++++---------
3 files changed, 28 insertions(+), 26 deletions(-)
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
index 0b4a10e72580f..f6c71f065eb7b 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
@@ -1857,9 +1857,8 @@ public void testMatchFunctionAcrossMultipleIndicesWithMissingField() throws IOEx
}
class foo {
*/
-
public void testParamsWithLike() throws IOException {
- //assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
+ assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
bulkLoadTestData(11);
var query = requestObjectBuilder().query(
format(null, "from {} | where keyword like ?pattern | keep keyword", testIndexName() )
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 43b40c4589cba..27a056a45d081 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
@@ -5607,16 +5607,17 @@ public void testLookupJoinOnFieldNotAnywhereElse() {
class foo {
*/
public void testLikeParameters() {
- // if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled() == false) { return; }
- var plan = analyze(
- String.format(Locale.ROOT, "from test | where first_name like ?pattern"),
- "mapping-basic.json",
- new QueryParams(List.of(paramAsConstant("pattern", "Anna*")))
- );
- var limit = as(plan, Limit.class);
- var filter = as(limit.child(), Filter.class);
- WildcardLike like = as(filter.condition(), WildcardLike.class);
- assertEquals("Anna*", like.pattern().pattern());
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ var plan = analyze(
+ String.format(Locale.ROOT, "from test | where first_name like ?pattern"),
+ "mapping-basic.json",
+ new QueryParams(List.of(paramAsConstant("pattern", "Anna*")))
+ );
+ var limit = as(plan, Limit.class);
+ var filter = as(limit.child(), Filter.class);
+ WildcardLike like = as(filter.condition(), WildcardLike.class);
+ assertEquals("Anna*", like.pattern().pattern());
+ }
}
// end 131356
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 bd2c2f5dfe4d3..4ca9f585ddc86 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
@@ -1371,20 +1371,22 @@ public void testLikeRLike() {
class foo {
*/
public void testLikeRLikeParam() {
- LogicalPlan cmd = statement("row a = \"abc\" | where a like ?pattern",
- new QueryParams( List.of(paramAsConstant("pattern", "a*")) )
- );
- assertEquals(Filter.class, cmd.getClass());
- Filter filter = (Filter) cmd;
- assertEquals(WildcardLike.class, filter.condition().getClass());
- WildcardLike like = (WildcardLike) filter.condition();
- assertEquals("a*", like.pattern().pattern());
-
- expectError(
- "row a = \"abc\" | where a like ?pattern",
- List.of(paramAsConstant("pattern", 1)),
- "Invalid StringOrParameterContext" // XXX need more specific message
- );
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ LogicalPlan cmd = statement("row a = \"abc\" | where a like ?pattern",
+ new QueryParams( List.of(paramAsConstant("pattern", "a*")) )
+ );
+ assertEquals(Filter.class, cmd.getClass());
+ Filter filter = (Filter) cmd;
+ assertEquals(WildcardLike.class, filter.condition().getClass());
+ WildcardLike like = (WildcardLike) filter.condition();
+ assertEquals("a*", like.pattern().pattern());
+
+ expectError(
+ "row a = \"abc\" | where a like ?pattern",
+ List.of(paramAsConstant("pattern", 1)),
+ "Invalid StringOrParameterContext" // XXX need more specific message
+ );
+ }
}
// end 131356
From cb44603ac0a51dea8cecc15cb0b8a2ddcffa8320 Mon Sep 17 00:00:00 2001
From: elasticsearchmachine
Date: Thu, 13 Nov 2025 19:34:59 +0000
Subject: [PATCH 08/15] [CI] Auto commit changes from spotless
---
.../xpack/esql/qa/rest/RestEsqlTestCase.java | 20 ++---
.../function/scalar/string/regex/RLike.java | 75 ++++++++--------
.../scalar/string/regex/WildcardLike.java | 85 +++++++++----------
.../xpack/esql/parser/ExpressionBuilder.java | 11 +--
.../xpack/esql/analysis/AnalyzerTests.java | 14 ++-
.../esql/parser/StatementParserTests.java | 19 +++--
6 files changed, 106 insertions(+), 118 deletions(-)
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
index f6c71f065eb7b..0dfd12222dc0f 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
@@ -1852,22 +1852,20 @@ public void testMatchFunctionAcrossMultipleIndicesWithMissingField() throws IOEx
}
}
-// begin 131356
-/*
-}
-class foo {
-*/
+ // begin 131356
+ /*
+ }
+ class foo {
+ */
public void testParamsWithLike() throws IOException {
assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
bulkLoadTestData(11);
- var query = requestObjectBuilder().query(
- format(null, "from {} | where keyword like ?pattern | keep keyword", testIndexName() )
- ).params("[{\"pattern\" : \"key*0\"}]");
+ var query = requestObjectBuilder().query(format(null, "from {} | where keyword like ?pattern | keep keyword", testIndexName()))
+ .params("[{\"pattern\" : \"key*0\"}]");
Map result = runEsql(query);
- assertEquals(List.of(List.of("keyword0"),List.of("keyword10")), result.get("values"));
+ assertEquals(List.of(List.of("keyword0"), List.of("keyword10")), result.get("values"));
}
-// end 131356
-
+ // end 131356
protected static Request prepareRequestWithOptions(RequestObjectBuilder requestObject, Mode mode) throws IOException {
requestObject.build();
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
index 68f5ef608807b..220d2614ec481 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
@@ -31,45 +31,42 @@ public class RLike extends RegexMatch {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "RLike", RLike::new);
public static final String NAME = "RLIKE";
- @FunctionInfo(
- returnType = "boolean",
- description = """
- Use `RLIKE` to filter data based on string patterns using
- <>. `RLIKE` usually acts on a field placed on
- the left-hand side of the operator, but it can also act on a constant (literal)
- expression. The right-hand side of the operator represents the pattern.""",
- detailedDescription = """
- Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
- The escape character is backslash `\\`. Since also backslash is a special character in string literals,
- it will require further escaping.
-
- <>
-
- To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
-
- <>
- ```{applies_to}
- stack: ga 9.2
- serverless: ga
- ```
-
- Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
- the expression will return true if any of the patterns match.
-
- <>
-
- Pattens may be specified with ReST query placeholders as well
-
- ```esql
- FROM employees
- | WHERE first_name RLIKE ?pattern
- | KEEP first_name, last_name
- ```
-
- ```{applies_to}
- stack: ga 9.3
- ```
- """, operator = NAME, examples = @Example(file = "docs", tag = "rlike"))
+ @FunctionInfo(returnType = "boolean", description = """
+ Use `RLIKE` to filter data based on string patterns using
+ <>. `RLIKE` usually acts on a field placed on
+ the left-hand side of the operator, but it can also act on a constant (literal)
+ expression. The right-hand side of the operator represents the pattern.""", detailedDescription = """
+ Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
+ The escape character is backslash `\\`. Since also backslash is a special character in string literals,
+ it will require further escaping.
+
+ <>
+
+ To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
+
+ <>
+ ```{applies_to}
+ stack: ga 9.2
+ serverless: ga
+ ```
+
+ Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
+ the expression will return true if any of the patterns match.
+
+ <>
+
+ Pattens may be specified with ReST query placeholders as well
+
+ ```esql
+ FROM employees
+ | WHERE first_name RLIKE ?pattern
+ | KEEP first_name, last_name
+ ```
+
+ ```{applies_to}
+ stack: ga 9.3
+ ```
+ """, operator = NAME, examples = @Example(file = "docs", tag = "rlike"))
public RLike(
Source source,
@Param(name = "str", type = { "keyword", "text" }, description = "A literal value.") Expression value,
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
index 88362932ed172..45f2f32accd88 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
@@ -36,50 +36,47 @@ public class WildcardLike extends RegexMatch {
);
public static final String NAME = "LIKE";
- @FunctionInfo(
- returnType = "boolean",
- description = """
- Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`
- usually acts on a field placed on the left-hand side of the operator, but it can
- also act on a constant (literal) expression. The right-hand side of the operator
- represents the pattern.
-
- The following wildcard characters are supported:
-
- * `*` matches zero or more characters.
- * `?` matches one character.""",
- detailedDescription = """
- Matching the exact characters `*` and `.` will require escaping.
- The escape character is backslash `\\`. Since also backslash is a special character in string literals,
- it will require further escaping.
-
- <>
-
- To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
-
- <>
-
- ```{applies_to}
- stack: ga 9.1
- serverless: ga
- ```
- Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
- the expression will return true if any of the patterns match.
-
- <>
-
- Pattens may be specified with ReST query placeholders as well
-
- ```esql
- FROM employees
- | WHERE first_name LIKE ?pattern
- | KEEP first_name, last_name
- ```
-
- ```{applies_to}
- stack: ga 9.3
- ```
- """, operator = NAME, examples = @Example(file = "docs", tag = "like"))
+ @FunctionInfo(returnType = "boolean", description = """
+ Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`
+ usually acts on a field placed on the left-hand side of the operator, but it can
+ also act on a constant (literal) expression. The right-hand side of the operator
+ represents the pattern.
+
+ The following wildcard characters are supported:
+
+ * `*` matches zero or more characters.
+ * `?` matches one character.""", detailedDescription = """
+ Matching the exact characters `*` and `.` will require escaping.
+ The escape character is backslash `\\`. Since also backslash is a special character in string literals,
+ it will require further escaping.
+
+ <>
+
+ To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
+
+ <>
+
+ ```{applies_to}
+ stack: ga 9.1
+ serverless: ga
+ ```
+ Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
+ the expression will return true if any of the patterns match.
+
+ <>
+
+ Pattens may be specified with ReST query placeholders as well
+
+ ```esql
+ FROM employees
+ | WHERE first_name LIKE ?pattern
+ | KEEP first_name, last_name
+ ```
+
+ ```{applies_to}
+ stack: ga 9.3
+ ```
+ """, operator = NAME, examples = @Example(file = "docs", tag = "like"))
public WildcardLike(
Source source,
@Param(name = "str", type = { "keyword", "text" }, description = "A literal expression.") Expression left,
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
index 6b6641bf62d0b..0f2571310f078 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
@@ -820,13 +820,11 @@ public Expression visitLikeExpression(EsqlBaseParser.LikeExpressionContext ctx)
}
}
-
- String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParameterContext ctx)
- {
+ String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParameterContext ctx) {
EsqlBaseParser.StringContext sctx = ctx.string();
if (sctx != null) {
Literal lit = visitString(sctx);
- return BytesRefs.toString( lit.fold(FoldContext.small()) );
+ return BytesRefs.toString(lit.fold(FoldContext.small()));
}
EsqlBaseParser.ParameterContext pctx = ctx.parameter();
if (pctx != null) {
@@ -834,7 +832,7 @@ String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParamet
Expression e = visitInputParam(ipctx);
if (e instanceof Literal lit) {
if (lit.dataType() == KEYWORD) {
- return BytesRefs.toString( lit.fold(FoldContext.small()) );
+ return BytesRefs.toString(lit.fold(FoldContext.small()));
}
}
}
@@ -842,7 +840,7 @@ String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParamet
Expression e = visitInputNamedOrPositionalParam(inopctx);
if (e instanceof Literal lit) {
if (lit.dataType() == KEYWORD) {
- return BytesRefs.toString( lit.fold(FoldContext.small()) );
+ return BytesRefs.toString(lit.fold(FoldContext.small()));
}
}
}
@@ -850,7 +848,6 @@ String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParamet
throw new ParsingException(source, "Invalid StringOrParameterContext");
}
-
@Override
public Expression visitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx) {
Source source = source(ctx);
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 27a056a45d081..aa1e443a81d02 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
@@ -5600,12 +5600,11 @@ public void testLookupJoinOnFieldNotAnywhereElse() {
assertEquals(IndexMode.LOOKUP, rightRelation.indexMode());
}
-
-// begin 131356
-/*
-}
-class foo {
-*/
+ // begin 131356
+ /*
+ }
+ class foo {
+ */
public void testLikeParameters() {
if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
var plan = analyze(
@@ -5619,8 +5618,7 @@ public void testLikeParameters() {
assertEquals("Anna*", like.pattern().pattern());
}
}
-// end 131356
-
+ // end 131356
private void verifyNameAndTypeAndMultiTypeEsField(
String actualName,
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 4ca9f585ddc86..af95aba1cb877 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
@@ -1365,22 +1365,23 @@ public void testLikeRLike() {
);
}
-// begin 131356
-/*
-}
-class foo {
- */
+ // begin 131356
+ /*
+ }
+ class foo {
+ */
public void testLikeRLikeParam() {
if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
- LogicalPlan cmd = statement("row a = \"abc\" | where a like ?pattern",
- new QueryParams( List.of(paramAsConstant("pattern", "a*")) )
+ LogicalPlan cmd = statement(
+ "row a = \"abc\" | where a like ?pattern",
+ new QueryParams(List.of(paramAsConstant("pattern", "a*")))
);
assertEquals(Filter.class, cmd.getClass());
Filter filter = (Filter) cmd;
assertEquals(WildcardLike.class, filter.condition().getClass());
WildcardLike like = (WildcardLike) filter.condition();
assertEquals("a*", like.pattern().pattern());
-
+
expectError(
"row a = \"abc\" | where a like ?pattern",
List.of(paramAsConstant("pattern", 1)),
@@ -1388,7 +1389,7 @@ public void testLikeRLikeParam() {
);
}
}
-// end 131356
+ // end 131356
public void testIdentifierPatternTooComplex() {
// It is incredibly unlikely that we will see this limit hit in practice
From b4b732ea93094fcba5e17e3209cc17d387b959da Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 09:46:46 -0800
Subject: [PATCH 09/15] Handle RLIKE param, LIKE param list, RLIKE param list
---
.../esql/src/main/antlr/parser/Expression.g4 | 8 +-
.../xpack/esql/parser/ExpressionBuilder.java | 89 +++++++++++--------
2 files changed, 54 insertions(+), 43 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4
index c6d6e70d6bd7b..ef95b8b934d89 100644
--- a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4
+++ b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4
@@ -18,10 +18,10 @@ booleanExpression
;
regexBooleanExpression
- : valueExpression (NOT)? LIKE stringOrParameter #likeExpression
- | valueExpression (NOT)? RLIKE string #rlikeExpression
- | valueExpression (NOT)? LIKE LP string (COMMA string )* RP #likeListExpression
- | valueExpression (NOT)? RLIKE LP string (COMMA string )* RP #rlikeListExpression
+ : valueExpression (NOT)? LIKE stringOrParameter #likeExpression
+ | valueExpression (NOT)? RLIKE stringOrParameter #rlikeExpression
+ | valueExpression (NOT)? LIKE LP stringOrParameter (COMMA stringOrParameter )* RP #likeListExpression
+ | valueExpression (NOT)? RLIKE LP stringOrParameter (COMMA stringOrParameter )* RP #rlikeListExpression
;
stringOrParameter
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
index 0f2571310f078..f1d00adcec5e2 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
@@ -810,7 +810,7 @@ public Expression visitLikeExpression(EsqlBaseParser.LikeExpressionContext ctx)
Source source = source(ctx);
Expression left = expression(ctx.valueExpression());
EsqlBaseParser.StringOrParameterContext right = ctx.stringOrParameter();
- String patternString = stringFromStringOrParameter(source, right);
+ String patternString = stringFromStringOrParameter(source, "LIKE", right);
try {
WildcardPattern pattern = new WildcardPattern(patternString);
WildcardLike result = new WildcardLike(source, left, pattern);
@@ -820,41 +820,13 @@ public Expression visitLikeExpression(EsqlBaseParser.LikeExpressionContext ctx)
}
}
- String stringFromStringOrParameter(Source source, EsqlBaseParser.StringOrParameterContext ctx) {
- EsqlBaseParser.StringContext sctx = ctx.string();
- if (sctx != null) {
- Literal lit = visitString(sctx);
- return BytesRefs.toString(lit.fold(FoldContext.small()));
- }
- EsqlBaseParser.ParameterContext pctx = ctx.parameter();
- if (pctx != null) {
- if (pctx instanceof EsqlBaseParser.InputParamContext ipctx) {
- Expression e = visitInputParam(ipctx);
- if (e instanceof Literal lit) {
- if (lit.dataType() == KEYWORD) {
- return BytesRefs.toString(lit.fold(FoldContext.small()));
- }
- }
- }
- if (pctx instanceof EsqlBaseParser.InputNamedOrPositionalParamContext inopctx) {
- Expression e = visitInputNamedOrPositionalParam(inopctx);
- if (e instanceof Literal lit) {
- if (lit.dataType() == KEYWORD) {
- return BytesRefs.toString(lit.fold(FoldContext.small()));
- }
- }
- }
- }
- throw new ParsingException(source, "Invalid StringOrParameterContext");
- }
-
@Override
public Expression visitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx) {
Source source = source(ctx);
Expression left = expression(ctx.valueExpression());
- List wildcardPatterns = ctx.string()
- .stream()
- .map(x -> new WildcardPattern(BytesRefs.toString(visitString(x).fold(FoldContext.small()))))
+ List right = ctx.stringOrParameter();
+ List wildcardPatterns = right.stream()
+ .map(x -> new WildcardPattern(stringFromStringOrParameter(source, "LIKE", x)))
.toList();
// for now we will use the old WildcardLike function for one argument case to allow compatibility in mixed version deployments
Expression e = wildcardPatterns.size() == 1
@@ -867,12 +839,13 @@ public Expression visitLikeListExpression(EsqlBaseParser.LikeListExpressionConte
public Expression visitRlikeExpression(EsqlBaseParser.RlikeExpressionContext ctx) {
Source source = source(ctx);
Expression left = expression(ctx.valueExpression());
- Literal patternLiteral = visitString(ctx.string());
+ EsqlBaseParser.StringOrParameterContext right = ctx.stringOrParameter();
+ String patternString = stringFromStringOrParameter(source, "RLIKE", right);
try {
- RLike rLike = new RLike(source, left, new RLikePattern(BytesRefs.toString(patternLiteral.fold(FoldContext.small()))));
+ RLike rLike = new RLike(source, left, new RLikePattern(patternString));
return ctx.NOT() == null ? rLike : new Not(source, rLike);
} catch (InvalidArgumentException e) {
- throw new ParsingException(source, "Invalid pattern for RLIKE [{}]: [{}]", patternLiteral, e.getMessage());
+ throw new ParsingException(source, "Invalid pattern for RLIKE [{}]: [{}]", patternString, e.getMessage());
}
}
@@ -880,17 +853,55 @@ public Expression visitRlikeExpression(EsqlBaseParser.RlikeExpressionContext ctx
public Expression visitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx) {
Source source = source(ctx);
Expression left = expression(ctx.valueExpression());
- List rLikePatterns = ctx.string()
- .stream()
- .map(x -> new RLikePattern(BytesRefs.toString(visitString(x).fold(FoldContext.small()))))
+ List right = ctx.stringOrParameter();
+ List rLikePatterns = right.stream()
+ .map(x -> new RLikePattern(stringFromStringOrParameter(source, "RLIKE", x)))
.toList();
- // for now we will use the old WildcardLike function for one argument case to allow compatibility in mixed version deployments
Expression e = rLikePatterns.size() == 1
? new RLike(source, left, rLikePatterns.getFirst())
: new RLikeList(source, left, new RLikePatternList(rLikePatterns));
return ctx.NOT() == null ? e : new Not(source, e);
}
+ String stringFromStringOrParameter(Source source, String opname, EsqlBaseParser.StringOrParameterContext ctx) {
+ EsqlBaseParser.StringContext sctx = ctx.string();
+ if (sctx != null) {
+ Literal lit = visitString(sctx);
+ return BytesRefs.toString(lit.fold(FoldContext.small()));
+ }
+ EsqlBaseParser.ParameterContext pctx = ctx.parameter();
+ if (pctx != null) {
+ Source psrc = null;
+ Expression exp = null;
+ if (pctx instanceof EsqlBaseParser.InputParamContext ipctx) {
+ psrc = source(ipctx);
+ exp = visitInputParam(ipctx);
+ }
+ if (pctx instanceof EsqlBaseParser.InputNamedOrPositionalParamContext inopctx) {
+ psrc = source(inopctx);
+ QueryParam param = paramByNameOrPosition(inopctx.NAMED_OR_POSITIONAL_PARAM());
+ if (param == null) {
+ throw new ParsingException(source, "Invalid pattern for {} [{}]: parameter not found", opname, psrc.text());
+ }
+ exp = visitParam(inopctx, param);
+ }
+ if (exp != null && exp instanceof Literal lit) {
+ DataType type = lit.dataType();
+ if (type == KEYWORD) {
+ return BytesRefs.toString(lit.fold(FoldContext.small()));
+ }
+ throw new ParsingException(
+ source,
+ "Invalid pattern parameter type for {} [{}]: expected string, found {}",
+ opname,
+ psrc.text(),
+ type.typeName()
+ );
+ }
+ }
+ throw new ParsingException(source, "Invalid pattern for {} [{}]: expected string literal or parameter", opname, source.text());
+ }
+
@Override
public Order visitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) {
return new Order(
From dddd2cc8df89f464e81836af7e2ec9587df17f3c Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 10:28:06 -0800
Subject: [PATCH 10/15] StatementParserTests for RLIKE, LIKE list, RLIKE list
---
.../esql/parser/StatementParserTests.java | 96 ++++++++++++++++---
1 file changed, 84 insertions(+), 12 deletions(-)
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 af95aba1cb877..aa902c31660dc 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
@@ -26,6 +26,8 @@
import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute;
import org.elasticsearch.xpack.esql.core.expression.predicate.operator.comparison.BinaryComparison;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.WildcardPatternList;
import org.elasticsearch.xpack.esql.expression.Order;
import org.elasticsearch.xpack.esql.expression.UnresolvedNamePattern;
import org.elasticsearch.xpack.esql.expression.function.UnresolvedFunction;
@@ -33,7 +35,9 @@
import org.elasticsearch.xpack.esql.expression.function.fulltext.MatchOperator;
import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToInteger;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.RLike;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.RLikeList;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.WildcardLike;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.WildcardLikeList;
import org.elasticsearch.xpack.esql.expression.predicate.Predicates;
import org.elasticsearch.xpack.esql.expression.predicate.logical.And;
import org.elasticsearch.xpack.esql.expression.predicate.logical.Not;
@@ -1365,31 +1369,99 @@ public void testLikeRLike() {
);
}
- // begin 131356
- /*
- }
- class foo {
- */
- public void testLikeRLikeParam() {
+ public void testLikeParam() {
if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
LogicalPlan cmd = statement(
"row a = \"abc\" | where a like ?pattern",
new QueryParams(List.of(paramAsConstant("pattern", "a*")))
);
- assertEquals(Filter.class, cmd.getClass());
- Filter filter = (Filter) cmd;
- assertEquals(WildcardLike.class, filter.condition().getClass());
- WildcardLike like = (WildcardLike) filter.condition();
+ Filter filter = as(cmd, Filter.class);
+ WildcardLike like = as(filter.condition(), WildcardLike.class);
assertEquals("a*", like.pattern().pattern());
expectError(
"row a = \"abc\" | where a like ?pattern",
List.of(paramAsConstant("pattern", 1)),
- "Invalid StringOrParameterContext" // XXX need more specific message
+ "Invalid pattern parameter type for LIKE [?pattern]: expected string, found integer"
+ );
+ expectError(
+ "row a = \"abc\" | where a like ?pattern1",
+ List.of(paramAsConstant("pattern", 1)),
+ "Invalid pattern for LIKE [?pattern1]: parameter not found"
+ );
+ }
+ }
+
+ public void testLikeListParam() {
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ LogicalPlan cmd = statement(
+ "row a = \"abc\" | where a like ( ?p1, ?p2 )",
+ new QueryParams(List.of(paramAsConstant("p1", "a*"), paramAsConstant("p2", "b*")))
+ );
+ Filter filter = as(cmd, Filter.class);
+ WildcardLikeList likelist = as(filter.condition(), WildcardLikeList.class);
+ WildcardPatternList patternlist = as(likelist.pattern(), WildcardPatternList.class);
+ assertEquals("(\"a*\", \"b*\")", patternlist.pattern());
+
+ expectError(
+ "row a = \"abc\" | where a like ( ?p1, ?p2 )",
+ List.of(paramAsConstant("p1", "a*"), paramAsConstant("p2", 1)),
+ "Invalid pattern parameter type for LIKE [?p2]: expected string, found integer"
+ );
+ expectError(
+ "row a = \"abc\" | where a like ( ?p1, ?p3 )",
+ List.of(paramAsConstant("p1", "a*"), paramAsConstant("p2", 1)),
+ "Invalid pattern for LIKE [?p3]: parameter not found"
+ );
+ }
+ }
+
+ public void testRLikeParam() {
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ LogicalPlan cmd = statement(
+ "row a = \"abc\" | where a rlike ?pattern",
+ new QueryParams(List.of(paramAsConstant("pattern", "a*")))
+ );
+ Filter filter = as(cmd, Filter.class);
+ RLike rlike = as(filter.condition(), RLike.class);
+ assertEquals("a*", rlike.pattern().pattern());
+
+ expectError(
+ "row a = \"abc\" | where a rlike ?pattern",
+ List.of(paramAsConstant("pattern", 1)),
+ "Invalid pattern parameter type for RLIKE [?pattern]: expected string, found integer"
+ );
+ expectError(
+ "row a = \"abc\" | where a rlike ?pattern1",
+ List.of(paramAsConstant("pattern", 1)),
+ "Invalid pattern for RLIKE [?pattern1]: parameter not found"
+ );
+ }
+ }
+
+ public void testRLikeListParam() {
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ LogicalPlan cmd = statement(
+ "row a = \"abc\" | where a rlike ( ?p1, ?p2 )",
+ new QueryParams(List.of(paramAsConstant("p1", "a*"), paramAsConstant("p2", "b*")))
+ );
+ Filter filter = as(cmd, Filter.class);
+ RLikeList rlikelist = as(filter.condition(), RLikeList.class);
+ RLikePatternList patternlist = as(rlikelist.pattern(), RLikePatternList.class);
+ assertEquals("(\"a*\", \"b*\")", patternlist.pattern());
+
+ expectError(
+ "row a = \"abc\" | where a rlike ( ?p1, ?p2 )",
+ List.of(paramAsConstant("p1", "a*"), paramAsConstant("p2", 1)),
+ "Invalid pattern parameter type for RLIKE [?p2]: expected string, found integer"
+ );
+ expectError(
+ "row a = \"abc\" | where a rlike ( ?p1, ?p3 )",
+ List.of(paramAsConstant("p1", "a*"), paramAsConstant("p2", 1)),
+ "Invalid pattern for RLIKE [?p3]: parameter not found"
);
}
}
- // end 131356
public void testIdentifierPatternTooComplex() {
// It is incredibly unlikely that we will see this limit hit in practice
From adfca6b19932f8e4d03e0ccc47ce080c6fd134a3 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 11:24:14 -0800
Subject: [PATCH 11/15] AnalyzerTests for LIKE, LIKE list, RLIKE, RLIKE list
---
.../xpack/esql/analysis/AnalyzerTests.java | 55 +++++++++++++++++--
1 file changed, 49 insertions(+), 6 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 aa1e443a81d02..3615896fd5361 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
@@ -39,6 +39,8 @@
import org.elasticsearch.xpack.esql.core.expression.NamedExpression;
import org.elasticsearch.xpack.esql.core.expression.ReferenceAttribute;
import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.WildcardPatternList;
import org.elasticsearch.xpack.esql.core.tree.Source;
import org.elasticsearch.xpack.esql.core.type.DataType;
import org.elasticsearch.xpack.esql.core.type.EsField;
@@ -68,7 +70,10 @@
import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToString;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Concat;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Substring;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.RLike;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.RLikeList;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.WildcardLike;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.WildcardLikeList;
import org.elasticsearch.xpack.esql.expression.function.vector.Knn;
import org.elasticsearch.xpack.esql.expression.function.vector.Magnitude;
import org.elasticsearch.xpack.esql.expression.function.vector.VectorSimilarityFunction;
@@ -5600,11 +5605,6 @@ public void testLookupJoinOnFieldNotAnywhereElse() {
assertEquals(IndexMode.LOOKUP, rightRelation.indexMode());
}
- // begin 131356
- /*
- }
- class foo {
- */
public void testLikeParameters() {
if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
var plan = analyze(
@@ -5618,7 +5618,50 @@ public void testLikeParameters() {
assertEquals("Anna*", like.pattern().pattern());
}
}
- // end 131356
+
+ public void testLikeListParameters() {
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ var plan = analyze(
+ String.format(Locale.ROOT, "from test | where first_name like (?p1, ?p2)"),
+ "mapping-basic.json",
+ new QueryParams(List.of(paramAsConstant("p1", "Anna*"), paramAsConstant("p2", "Chris*")))
+ );
+ var limit = as(plan, Limit.class);
+ var filter = as(limit.child(), Filter.class);
+ var likelist = as(filter.condition(), WildcardLikeList.class);
+ var patternlist = as(likelist.pattern(), WildcardPatternList.class);
+ assertEquals("(\"Anna*\", \"Chris*\")", patternlist.pattern());
+ }
+ }
+
+ public void testRLikeParameters() {
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ var plan = analyze(
+ String.format(Locale.ROOT, "from test | where first_name rlike ?pattern"),
+ "mapping-basic.json",
+ new QueryParams(List.of(paramAsConstant("pattern", "Anna*")))
+ );
+ var limit = as(plan, Limit.class);
+ var filter = as(limit.child(), Filter.class);
+ RLike rlike = as(filter.condition(), RLike.class);
+ assertEquals("Anna*", rlike.pattern().pattern());
+ }
+ }
+
+ public void testRLikeListParameters() {
+ if (EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled()) {
+ var plan = analyze(
+ String.format(Locale.ROOT, "from test | where first_name rlike (?p1, ?p2)"),
+ "mapping-basic.json",
+ new QueryParams(List.of(paramAsConstant("p1", "Anna*"), paramAsConstant("p2", "Chris*")))
+ );
+ var limit = as(plan, Limit.class);
+ var filter = as(limit.child(), Filter.class);
+ RLikeList rlikelist = as(filter.condition(), RLikeList.class);
+ RLikePatternList patternlist = as(rlikelist.pattern(), RLikePatternList.class);
+ assertEquals("(\"Anna*\", \"Chris*\")", patternlist.pattern());
+ }
+ }
private void verifyNameAndTypeAndMultiTypeEsField(
String actualName,
From be2f8b18bea466e6030efae51df0720650142128 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 11:42:29 -0800
Subject: [PATCH 12/15] Add yamlRestTest for LIKE, RLIKE and error case for
LIKE list
---
.../rest-api-spec/test/esql/80_text.yml | 22 ++++++++++++++++---
1 file changed, 19 insertions(+), 3 deletions(-)
diff --git a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml
index af5483a392579..0f38d0149be6d 100644
--- a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml
+++ b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/80_text.yml
@@ -647,7 +647,7 @@ setup:
query: 'FROM test | WHERE job RLIKE "(a|b)*a(a|b){13}"'
---
-"like with parameters":
+"like and rlike with parameters":
- requires:
capabilities:
- method: POST
@@ -658,8 +658,24 @@ setup:
- do:
esql.query:
body:
- query: 'FROM test | WHERE job LIKE ?like | KEEP job | LIMIT 2'
- params: [{"like": "IT*"}]
+ query: 'FROM test | WHERE job LIKE ?like | WHERE job RLIKE ?rlike | KEEP job | LIMIT 2'
+ params: [{"like": "IT*"}, {"rlike": ".*Director"}]
- length: { values: 1 }
- match: { values.0: [ "IT Director" ] }
+
+---
+"like list with an invalid parameter":
+ - requires:
+ capabilities:
+ - method: POST
+ path: /_query
+ parameters: [ capabilities ]
+ capabilities: [ like_parameter_support ]
+ reason: "parameter support for like"
+ - do:
+ catch: /Invalid pattern parameter type for LIKE ..p2.. expected string, found integer/
+ esql.query:
+ body:
+ query: 'FROM test | WHERE job LIKE ( ?p1, ?p2 ) | KEEP job | LIMIT 2'
+ params: [{"p1": "IT*"}, {"p2": 123}]
From 0402acac9f799bc91d8594896b771a05cf377a95 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 11:57:10 -0800
Subject: [PATCH 13/15] Add RestEsqlTestCase for LIKE, RLIKE and LIKE list
---
.../xpack/esql/qa/rest/RestEsqlTestCase.java | 33 +++++++++++++++----
1 file changed, 27 insertions(+), 6 deletions(-)
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
index 0dfd12222dc0f..38a26f0e12e1f 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java
@@ -1852,11 +1852,6 @@ public void testMatchFunctionAcrossMultipleIndicesWithMissingField() throws IOEx
}
}
- // begin 131356
- /*
- }
- class foo {
- */
public void testParamsWithLike() throws IOException {
assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
bulkLoadTestData(11);
@@ -1865,7 +1860,33 @@ public void testParamsWithLike() throws IOException {
Map result = runEsql(query);
assertEquals(List.of(List.of("keyword0"), List.of("keyword10")), result.get("values"));
}
- // end 131356
+
+ public void testParamsWithLikeList() throws IOException {
+ assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
+ bulkLoadTestData(11);
+ var query = requestObjectBuilder().query(format(null, "from {} | where keyword like (?p1, ?p2) | keep keyword", testIndexName()))
+ .params("[{\"p1\" : \"key*0\"}, {\"p2\" : \"key*1\"}]");
+ Map result = runEsql(query);
+ assertEquals(List.of(List.of("keyword0"), List.of("keyword1"), List.of("keyword10")), result.get("values"));
+ }
+
+ public void testParamsWithRLike() throws IOException {
+ assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
+ bulkLoadTestData(11);
+ var query = requestObjectBuilder().query(format(null, "from {} | where keyword rlike ?pattern | keep keyword", testIndexName()))
+ .params("[{\"pattern\" : \"key.*0\"}]");
+ Map result = runEsql(query);
+ assertEquals(List.of(List.of("keyword0"), List.of("keyword10")), result.get("values"));
+ }
+
+ public void testParamsWithRLikeList() throws IOException {
+ assumeTrue("like parameter support", EsqlCapabilities.Cap.LIKE_PARAMETER_SUPPORT.isEnabled());
+ bulkLoadTestData(11);
+ var query = requestObjectBuilder().query(format(null, "from {} | where keyword rlike (?p1, ?p2) | keep keyword", testIndexName()))
+ .params("[{\"p1\" : \"key.*0\"}, {\"p2\" : \"key.*1\"}]");
+ Map result = runEsql(query);
+ assertEquals(List.of(List.of("keyword0"), List.of("keyword1"), List.of("keyword10")), result.get("values"));
+ }
protected static Request prepareRequestWithOptions(RequestObjectBuilder requestObject, Mode mode) throws IOException {
requestObject.build();
From ff05c50f74f5f59a799390e4ba8f73587138fdb3 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 12:16:54 -0800
Subject: [PATCH 14/15] Fix typo in docs and explain why we use an inline
example instead of directive
---
.../function/scalar/string/regex/RLike.java | 80 +++++++++--------
.../scalar/string/regex/WildcardLike.java | 90 ++++++++++---------
2 files changed, 93 insertions(+), 77 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
index 220d2614ec481..1af6e11048542 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLike.java
@@ -31,42 +31,50 @@ public class RLike extends RegexMatch {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "RLike", RLike::new);
public static final String NAME = "RLIKE";
- @FunctionInfo(returnType = "boolean", description = """
- Use `RLIKE` to filter data based on string patterns using
- <>. `RLIKE` usually acts on a field placed on
- the left-hand side of the operator, but it can also act on a constant (literal)
- expression. The right-hand side of the operator represents the pattern.""", detailedDescription = """
- Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
- The escape character is backslash `\\`. Since also backslash is a special character in string literals,
- it will require further escaping.
-
- <>
-
- To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
-
- <>
- ```{applies_to}
- stack: ga 9.2
- serverless: ga
- ```
-
- Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
- the expression will return true if any of the patterns match.
-
- <>
-
- Pattens may be specified with ReST query placeholders as well
-
- ```esql
- FROM employees
- | WHERE first_name RLIKE ?pattern
- | KEEP first_name, last_name
- ```
-
- ```{applies_to}
- stack: ga 9.3
- ```
- """, operator = NAME, examples = @Example(file = "docs", tag = "rlike"))
+ @FunctionInfo(
+ returnType = "boolean",
+ description = """
+ Use `RLIKE` to filter data based on string patterns using
+ <>. `RLIKE` usually acts on a field placed on
+ the left-hand side of the operator, but it can also act on a constant (literal)
+ expression. The right-hand side of the operator represents the pattern.""",
+
+ // we use an inline example here because ?pattern not supported in csv-spec test
+ detailedDescription = """
+ Matching special characters (eg. `.`, `*`, `(`...) will require escaping.
+ The escape character is backslash `\\`. Since also backslash is a special character in string literals,
+ it will require further escaping.
+
+ <>
+
+ To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
+
+ <>
+ ```{applies_to}
+ stack: ga 9.2
+ serverless: ga
+ ```
+
+ Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
+ the expression will return true if any of the patterns match.
+
+ <>
+
+ Patterns may be specified with ReST query placeholders as well
+
+ ```esql
+ FROM employees
+ | WHERE first_name RLIKE ?pattern
+ | KEEP first_name, last_name
+ ```
+
+ ```{applies_to}
+ stack: ga 9.3
+ ```
+ """,
+ operator = NAME,
+ examples = @Example(file = "docs", tag = "rlike")
+ )
public RLike(
Source source,
@Param(name = "str", type = { "keyword", "text" }, description = "A literal value.") Expression value,
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
index 45f2f32accd88..517392f4f0b47 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/WildcardLike.java
@@ -36,47 +36,55 @@ public class WildcardLike extends RegexMatch {
);
public static final String NAME = "LIKE";
- @FunctionInfo(returnType = "boolean", description = """
- Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`
- usually acts on a field placed on the left-hand side of the operator, but it can
- also act on a constant (literal) expression. The right-hand side of the operator
- represents the pattern.
-
- The following wildcard characters are supported:
-
- * `*` matches zero or more characters.
- * `?` matches one character.""", detailedDescription = """
- Matching the exact characters `*` and `.` will require escaping.
- The escape character is backslash `\\`. Since also backslash is a special character in string literals,
- it will require further escaping.
-
- <>
-
- To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
-
- <>
-
- ```{applies_to}
- stack: ga 9.1
- serverless: ga
- ```
- Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
- the expression will return true if any of the patterns match.
-
- <>
-
- Pattens may be specified with ReST query placeholders as well
-
- ```esql
- FROM employees
- | WHERE first_name LIKE ?pattern
- | KEEP first_name, last_name
- ```
-
- ```{applies_to}
- stack: ga 9.3
- ```
- """, operator = NAME, examples = @Example(file = "docs", tag = "like"))
+ @FunctionInfo(
+ returnType = "boolean",
+ description = """
+ Use `LIKE` to filter data based on string patterns using wildcards. `LIKE`
+ usually acts on a field placed on the left-hand side of the operator, but it can
+ also act on a constant (literal) expression. The right-hand side of the operator
+ represents the pattern.
+
+ The following wildcard characters are supported:
+
+ * `*` matches zero or more characters.
+ * `?` matches one character.""",
+
+ // we use an inline example here because ?pattern not supported in csv-spec test
+ detailedDescription = """
+ Matching the exact characters `*` and `.` will require escaping.
+ The escape character is backslash `\\`. Since also backslash is a special character in string literals,
+ it will require further escaping.
+
+ <>
+
+ To reduce the overhead of escaping, we suggest using triple quotes strings `\"\"\"`
+
+ <>
+
+ ```{applies_to}
+ stack: ga 9.1
+ serverless: ga
+ ```
+ Both a single pattern or a list of patterns are supported. If a list of patterns is provided,
+ the expression will return true if any of the patterns match.
+
+ <>
+
+ Patterns may be specified with ReST query placeholders as well
+
+ ```esql
+ FROM employees
+ | WHERE first_name LIKE ?pattern
+ | KEEP first_name, last_name
+ ```
+
+ ```{applies_to}
+ stack: ga 9.3
+ ```
+ """,
+ operator = NAME,
+ examples = @Example(file = "docs", tag = "like")
+ )
public WildcardLike(
Source source,
@Param(name = "str", type = { "keyword", "text" }, description = "A literal expression.") Expression left,
From 15af54737dbaba58402969ae436fc264bb893d28 Mon Sep 17 00:00:00 2001
From: cimequinox
Date: Fri, 14 Nov 2025 12:32:11 -0800
Subject: [PATCH 15/15] Generated files
---
.../operators/detailedDescription/like.md | 2 +-
.../operators/detailedDescription/rlike.md | 2 +-
.../xpack/esql/parser/EsqlBaseParser.interp | 2 +-
.../xpack/esql/parser/EsqlBaseParser.java | 40 +++++++++----------
4 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md
index 13be3df10951b..ce2581d668670 100644
--- a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md
+++ b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/like.md
@@ -31,7 +31,7 @@ ROW message = "foobar"
```
-Pattens may be specified with ReST query placeholders as well
+Patterns may be specified with ReST query placeholders as well
```esql
FROM employees
diff --git a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md
index dc88f1abf995a..24b31f8878b8b 100644
--- a/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md
+++ b/docs/reference/query-languages/esql/_snippets/operators/detailedDescription/rlike.md
@@ -31,7 +31,7 @@ ROW message = "foobar"
```
-Pattens may be specified with ReST query placeholders as well
+Patterns may be specified with ReST query placeholders as well
```esql
FROM employees
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 ae2f135a846e8..f2e3b635b41ab 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
@@ -404,4 +404,4 @@ joinCondition
atn:
-[4, 1, 151, 947, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 1, 0, 5, 0, 190, 8, 0, 10, 0, 12, 0, 193, 9, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 207, 8, 2, 10, 2, 12, 2, 210, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 218, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 244, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 257, 8, 8, 10, 8, 12, 8, 260, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 265, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 272, 8, 10, 10, 10, 12, 10, 275, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 280, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 291, 8, 14, 10, 14, 12, 14, 294, 9, 14, 1, 14, 3, 14, 297, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 302, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 308, 8, 16, 10, 16, 12, 16, 311, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 324, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 338, 8, 22, 10, 22, 12, 22, 341, 9, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 348, 8, 24, 1, 24, 1, 24, 3, 24, 352, 8, 24, 1, 25, 1, 25, 1, 25, 5, 25, 357, 8, 25, 10, 25, 12, 25, 360, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 365, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 370, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 379, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 384, 8, 28, 10, 28, 12, 28, 387, 9, 28, 1, 29, 1, 29, 1, 29, 3, 29, 392, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 401, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 406, 8, 30, 10, 30, 12, 30, 409, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 414, 8, 31, 10, 31, 12, 31, 417, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 3, 33, 424, 8, 33, 1, 34, 1, 34, 3, 34, 428, 8, 34, 1, 35, 1, 35, 3, 35, 432, 8, 35, 1, 36, 1, 36, 1, 36, 3, 36, 437, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 446, 8, 38, 10, 38, 12, 38, 449, 9, 38, 1, 39, 1, 39, 3, 39, 453, 8, 39, 1, 39, 1, 39, 3, 39, 457, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 469, 8, 42, 10, 42, 12, 42, 472, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 482, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 488, 8, 44, 1, 45, 1, 45, 1, 45, 5, 45, 493, 8, 45, 10, 45, 12, 45, 496, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 504, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 511, 8, 48, 10, 48, 12, 48, 514, 9, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 533, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 539, 8, 53, 10, 53, 12, 53, 542, 9, 53, 3, 53, 544, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 3, 55, 551, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 562, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 569, 8, 57, 1, 58, 1, 58, 1, 58, 1, 59, 4, 59, 575, 8, 59, 11, 59, 12, 59, 576, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 589, 8, 61, 10, 61, 12, 61, 592, 9, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 600, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 611, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 621, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 627, 8, 65, 3, 65, 629, 8, 65, 1, 66, 1, 66, 3, 66, 633, 8, 66, 1, 66, 5, 66, 636, 8, 66, 10, 66, 12, 66, 639, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 652, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 677, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 684, 8, 72, 10, 72, 12, 72, 687, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 694, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 699, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 707, 8, 72, 10, 72, 12, 72, 710, 9, 72, 1, 73, 1, 73, 3, 73, 714, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 721, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 728, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 735, 8, 73, 10, 73, 12, 73, 738, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 744, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 751, 8, 73, 10, 73, 12, 73, 754, 9, 73, 1, 73, 1, 73, 3, 73, 758, 8, 73, 1, 74, 1, 74, 3, 74, 762, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 767, 8, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 777, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 783, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 791, 8, 77, 10, 77, 12, 77, 794, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 804, 8, 78, 1, 78, 1, 78, 1, 78, 5, 78, 809, 8, 78, 10, 78, 12, 78, 812, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 820, 8, 79, 10, 79, 12, 79, 823, 9, 79, 1, 79, 1, 79, 3, 79, 827, 8, 79, 3, 79, 829, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 836, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 842, 8, 81, 10, 81, 12, 81, 845, 9, 81, 3, 81, 847, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 857, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 872, 8, 84, 10, 84, 12, 84, 875, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 883, 8, 84, 10, 84, 12, 84, 886, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 894, 8, 84, 10, 84, 12, 84, 897, 9, 84, 1, 84, 1, 84, 3, 84, 901, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 907, 8, 86, 1, 87, 3, 87, 910, 8, 87, 1, 87, 1, 87, 1, 88, 3, 88, 915, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 931, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 936, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 942, 8, 93, 10, 93, 12, 93, 945, 9, 93, 1, 93, 0, 5, 4, 122, 144, 154, 156, 94, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 990, 0, 191, 1, 0, 0, 0, 2, 197, 1, 0, 0, 0, 4, 200, 1, 0, 0, 0, 6, 217, 1, 0, 0, 0, 8, 243, 1, 0, 0, 0, 10, 245, 1, 0, 0, 0, 12, 248, 1, 0, 0, 0, 14, 250, 1, 0, 0, 0, 16, 253, 1, 0, 0, 0, 18, 264, 1, 0, 0, 0, 20, 268, 1, 0, 0, 0, 22, 276, 1, 0, 0, 0, 24, 281, 1, 0, 0, 0, 26, 284, 1, 0, 0, 0, 28, 287, 1, 0, 0, 0, 30, 301, 1, 0, 0, 0, 32, 303, 1, 0, 0, 0, 34, 323, 1, 0, 0, 0, 36, 325, 1, 0, 0, 0, 38, 327, 1, 0, 0, 0, 40, 329, 1, 0, 0, 0, 42, 331, 1, 0, 0, 0, 44, 333, 1, 0, 0, 0, 46, 342, 1, 0, 0, 0, 48, 345, 1, 0, 0, 0, 50, 353, 1, 0, 0, 0, 52, 361, 1, 0, 0, 0, 54, 378, 1, 0, 0, 0, 56, 380, 1, 0, 0, 0, 58, 400, 1, 0, 0, 0, 60, 402, 1, 0, 0, 0, 62, 410, 1, 0, 0, 0, 64, 418, 1, 0, 0, 0, 66, 423, 1, 0, 0, 0, 68, 427, 1, 0, 0, 0, 70, 431, 1, 0, 0, 0, 72, 436, 1, 0, 0, 0, 74, 438, 1, 0, 0, 0, 76, 441, 1, 0, 0, 0, 78, 450, 1, 0, 0, 0, 80, 458, 1, 0, 0, 0, 82, 461, 1, 0, 0, 0, 84, 464, 1, 0, 0, 0, 86, 481, 1, 0, 0, 0, 88, 483, 1, 0, 0, 0, 90, 489, 1, 0, 0, 0, 92, 497, 1, 0, 0, 0, 94, 503, 1, 0, 0, 0, 96, 505, 1, 0, 0, 0, 98, 515, 1, 0, 0, 0, 100, 518, 1, 0, 0, 0, 102, 521, 1, 0, 0, 0, 104, 525, 1, 0, 0, 0, 106, 528, 1, 0, 0, 0, 108, 545, 1, 0, 0, 0, 110, 550, 1, 0, 0, 0, 112, 554, 1, 0, 0, 0, 114, 557, 1, 0, 0, 0, 116, 570, 1, 0, 0, 0, 118, 574, 1, 0, 0, 0, 120, 578, 1, 0, 0, 0, 122, 582, 1, 0, 0, 0, 124, 593, 1, 0, 0, 0, 126, 595, 1, 0, 0, 0, 128, 606, 1, 0, 0, 0, 130, 628, 1, 0, 0, 0, 132, 630, 1, 0, 0, 0, 134, 651, 1, 0, 0, 0, 136, 653, 1, 0, 0, 0, 138, 658, 1, 0, 0, 0, 140, 661, 1, 0, 0, 0, 142, 665, 1, 0, 0, 0, 144, 698, 1, 0, 0, 0, 146, 757, 1, 0, 0, 0, 148, 761, 1, 0, 0, 0, 150, 763, 1, 0, 0, 0, 152, 776, 1, 0, 0, 0, 154, 782, 1, 0, 0, 0, 156, 803, 1, 0, 0, 0, 158, 813, 1, 0, 0, 0, 160, 835, 1, 0, 0, 0, 162, 837, 1, 0, 0, 0, 164, 850, 1, 0, 0, 0, 166, 856, 1, 0, 0, 0, 168, 900, 1, 0, 0, 0, 170, 902, 1, 0, 0, 0, 172, 906, 1, 0, 0, 0, 174, 909, 1, 0, 0, 0, 176, 914, 1, 0, 0, 0, 178, 918, 1, 0, 0, 0, 180, 920, 1, 0, 0, 0, 182, 922, 1, 0, 0, 0, 184, 935, 1, 0, 0, 0, 186, 937, 1, 0, 0, 0, 188, 190, 3, 140, 70, 0, 189, 188, 1, 0, 0, 0, 190, 193, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 194, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 195, 3, 2, 1, 0, 195, 196, 5, 0, 0, 1, 196, 1, 1, 0, 0, 0, 197, 198, 3, 4, 2, 0, 198, 199, 5, 0, 0, 1, 199, 3, 1, 0, 0, 0, 200, 201, 6, 2, -1, 0, 201, 202, 3, 6, 3, 0, 202, 208, 1, 0, 0, 0, 203, 204, 10, 1, 0, 0, 204, 205, 5, 50, 0, 0, 205, 207, 3, 8, 4, 0, 206, 203, 1, 0, 0, 0, 207, 210, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 5, 1, 0, 0, 0, 210, 208, 1, 0, 0, 0, 211, 218, 3, 24, 12, 0, 212, 218, 3, 14, 7, 0, 213, 218, 3, 104, 52, 0, 214, 218, 3, 26, 13, 0, 215, 216, 4, 3, 1, 0, 216, 218, 3, 100, 50, 0, 217, 211, 1, 0, 0, 0, 217, 212, 1, 0, 0, 0, 217, 213, 1, 0, 0, 0, 217, 214, 1, 0, 0, 0, 217, 215, 1, 0, 0, 0, 218, 7, 1, 0, 0, 0, 219, 244, 3, 46, 23, 0, 220, 244, 3, 10, 5, 0, 221, 244, 3, 80, 40, 0, 222, 244, 3, 74, 37, 0, 223, 244, 3, 48, 24, 0, 224, 244, 3, 76, 38, 0, 225, 244, 3, 82, 41, 0, 226, 244, 3, 84, 42, 0, 227, 244, 3, 88, 44, 0, 228, 244, 3, 96, 48, 0, 229, 244, 3, 106, 53, 0, 230, 244, 3, 98, 49, 0, 231, 244, 3, 182, 91, 0, 232, 244, 3, 114, 57, 0, 233, 244, 3, 128, 64, 0, 234, 244, 3, 112, 56, 0, 235, 244, 3, 116, 58, 0, 236, 244, 3, 126, 63, 0, 237, 244, 3, 130, 65, 0, 238, 244, 3, 132, 66, 0, 239, 240, 4, 4, 2, 0, 240, 244, 3, 136, 68, 0, 241, 242, 4, 4, 3, 0, 242, 244, 3, 138, 69, 0, 243, 219, 1, 0, 0, 0, 243, 220, 1, 0, 0, 0, 243, 221, 1, 0, 0, 0, 243, 222, 1, 0, 0, 0, 243, 223, 1, 0, 0, 0, 243, 224, 1, 0, 0, 0, 243, 225, 1, 0, 0, 0, 243, 226, 1, 0, 0, 0, 243, 227, 1, 0, 0, 0, 243, 228, 1, 0, 0, 0, 243, 229, 1, 0, 0, 0, 243, 230, 1, 0, 0, 0, 243, 231, 1, 0, 0, 0, 243, 232, 1, 0, 0, 0, 243, 233, 1, 0, 0, 0, 243, 234, 1, 0, 0, 0, 243, 235, 1, 0, 0, 0, 243, 236, 1, 0, 0, 0, 243, 237, 1, 0, 0, 0, 243, 238, 1, 0, 0, 0, 243, 239, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 9, 1, 0, 0, 0, 245, 246, 5, 17, 0, 0, 246, 247, 3, 144, 72, 0, 247, 11, 1, 0, 0, 0, 248, 249, 3, 64, 32, 0, 249, 13, 1, 0, 0, 0, 250, 251, 5, 13, 0, 0, 251, 252, 3, 16, 8, 0, 252, 15, 1, 0, 0, 0, 253, 258, 3, 18, 9, 0, 254, 255, 5, 61, 0, 0, 255, 257, 3, 18, 9, 0, 256, 254, 1, 0, 0, 0, 257, 260, 1, 0, 0, 0, 258, 256, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 17, 1, 0, 0, 0, 260, 258, 1, 0, 0, 0, 261, 262, 3, 54, 27, 0, 262, 263, 5, 56, 0, 0, 263, 265, 1, 0, 0, 0, 264, 261, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 267, 3, 144, 72, 0, 267, 19, 1, 0, 0, 0, 268, 273, 3, 22, 11, 0, 269, 270, 5, 61, 0, 0, 270, 272, 3, 22, 11, 0, 271, 269, 1, 0, 0, 0, 272, 275, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 21, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 276, 279, 3, 54, 27, 0, 277, 278, 5, 56, 0, 0, 278, 280, 3, 144, 72, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 23, 1, 0, 0, 0, 281, 282, 5, 18, 0, 0, 282, 283, 3, 28, 14, 0, 283, 25, 1, 0, 0, 0, 284, 285, 5, 19, 0, 0, 285, 286, 3, 28, 14, 0, 286, 27, 1, 0, 0, 0, 287, 292, 3, 30, 15, 0, 288, 289, 5, 61, 0, 0, 289, 291, 3, 30, 15, 0, 290, 288, 1, 0, 0, 0, 291, 294, 1, 0, 0, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 297, 3, 44, 22, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 29, 1, 0, 0, 0, 298, 302, 3, 34, 17, 0, 299, 300, 4, 15, 4, 0, 300, 302, 3, 32, 16, 0, 301, 298, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 31, 1, 0, 0, 0, 303, 304, 5, 98, 0, 0, 304, 309, 3, 24, 12, 0, 305, 306, 5, 50, 0, 0, 306, 308, 3, 8, 4, 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, 312, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 5, 99, 0, 0, 313, 33, 1, 0, 0, 0, 314, 315, 3, 36, 18, 0, 315, 316, 5, 59, 0, 0, 316, 317, 3, 40, 20, 0, 317, 324, 1, 0, 0, 0, 318, 319, 3, 40, 20, 0, 319, 320, 5, 58, 0, 0, 320, 321, 3, 38, 19, 0, 321, 324, 1, 0, 0, 0, 322, 324, 3, 42, 21, 0, 323, 314, 1, 0, 0, 0, 323, 318, 1, 0, 0, 0, 323, 322, 1, 0, 0, 0, 324, 35, 1, 0, 0, 0, 325, 326, 5, 106, 0, 0, 326, 37, 1, 0, 0, 0, 327, 328, 5, 106, 0, 0, 328, 39, 1, 0, 0, 0, 329, 330, 5, 106, 0, 0, 330, 41, 1, 0, 0, 0, 331, 332, 7, 0, 0, 0, 332, 43, 1, 0, 0, 0, 333, 334, 5, 105, 0, 0, 334, 339, 5, 106, 0, 0, 335, 336, 5, 61, 0, 0, 336, 338, 5, 106, 0, 0, 337, 335, 1, 0, 0, 0, 338, 341, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 45, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 343, 5, 9, 0, 0, 343, 344, 3, 16, 8, 0, 344, 47, 1, 0, 0, 0, 345, 347, 5, 16, 0, 0, 346, 348, 3, 50, 25, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 350, 5, 57, 0, 0, 350, 352, 3, 16, 8, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 49, 1, 0, 0, 0, 353, 358, 3, 52, 26, 0, 354, 355, 5, 61, 0, 0, 355, 357, 3, 52, 26, 0, 356, 354, 1, 0, 0, 0, 357, 360, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 51, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 361, 364, 3, 18, 9, 0, 362, 363, 5, 17, 0, 0, 363, 365, 3, 144, 72, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 53, 1, 0, 0, 0, 366, 367, 4, 27, 5, 0, 367, 369, 5, 96, 0, 0, 368, 370, 5, 100, 0, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 5, 97, 0, 0, 372, 373, 5, 63, 0, 0, 373, 374, 5, 96, 0, 0, 374, 375, 3, 56, 28, 0, 375, 376, 5, 97, 0, 0, 376, 379, 1, 0, 0, 0, 377, 379, 3, 56, 28, 0, 378, 366, 1, 0, 0, 0, 378, 377, 1, 0, 0, 0, 379, 55, 1, 0, 0, 0, 380, 385, 3, 72, 36, 0, 381, 382, 5, 63, 0, 0, 382, 384, 3, 72, 36, 0, 383, 381, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 57, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 389, 4, 29, 6, 0, 389, 391, 5, 96, 0, 0, 390, 392, 5, 137, 0, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 394, 5, 97, 0, 0, 394, 395, 5, 63, 0, 0, 395, 396, 5, 96, 0, 0, 396, 397, 3, 60, 30, 0, 397, 398, 5, 97, 0, 0, 398, 401, 1, 0, 0, 0, 399, 401, 3, 60, 30, 0, 400, 388, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 59, 1, 0, 0, 0, 402, 407, 3, 66, 33, 0, 403, 404, 5, 63, 0, 0, 404, 406, 3, 66, 33, 0, 405, 403, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 61, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 410, 415, 3, 58, 29, 0, 411, 412, 5, 61, 0, 0, 412, 414, 3, 58, 29, 0, 413, 411, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 63, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 7, 1, 0, 0, 419, 65, 1, 0, 0, 0, 420, 424, 5, 137, 0, 0, 421, 424, 3, 68, 34, 0, 422, 424, 3, 70, 35, 0, 423, 420, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 67, 1, 0, 0, 0, 425, 428, 5, 75, 0, 0, 426, 428, 5, 94, 0, 0, 427, 425, 1, 0, 0, 0, 427, 426, 1, 0, 0, 0, 428, 69, 1, 0, 0, 0, 429, 432, 5, 93, 0, 0, 430, 432, 5, 95, 0, 0, 431, 429, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 71, 1, 0, 0, 0, 433, 437, 3, 64, 32, 0, 434, 437, 3, 68, 34, 0, 435, 437, 3, 70, 35, 0, 436, 433, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 436, 435, 1, 0, 0, 0, 437, 73, 1, 0, 0, 0, 438, 439, 5, 11, 0, 0, 439, 440, 3, 168, 84, 0, 440, 75, 1, 0, 0, 0, 441, 442, 5, 15, 0, 0, 442, 447, 3, 78, 39, 0, 443, 444, 5, 61, 0, 0, 444, 446, 3, 78, 39, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 77, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 452, 3, 144, 72, 0, 451, 453, 7, 2, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 455, 5, 72, 0, 0, 455, 457, 7, 3, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 79, 1, 0, 0, 0, 458, 459, 5, 31, 0, 0, 459, 460, 3, 62, 31, 0, 460, 81, 1, 0, 0, 0, 461, 462, 5, 30, 0, 0, 462, 463, 3, 62, 31, 0, 463, 83, 1, 0, 0, 0, 464, 465, 5, 33, 0, 0, 465, 470, 3, 86, 43, 0, 466, 467, 5, 61, 0, 0, 467, 469, 3, 86, 43, 0, 468, 466, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 85, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 474, 3, 58, 29, 0, 474, 475, 5, 141, 0, 0, 475, 476, 3, 58, 29, 0, 476, 482, 1, 0, 0, 0, 477, 478, 3, 58, 29, 0, 478, 479, 5, 56, 0, 0, 479, 480, 3, 58, 29, 0, 480, 482, 1, 0, 0, 0, 481, 473, 1, 0, 0, 0, 481, 477, 1, 0, 0, 0, 482, 87, 1, 0, 0, 0, 483, 484, 5, 8, 0, 0, 484, 485, 3, 156, 78, 0, 485, 487, 3, 178, 89, 0, 486, 488, 3, 90, 45, 0, 487, 486, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 89, 1, 0, 0, 0, 489, 494, 3, 92, 46, 0, 490, 491, 5, 61, 0, 0, 491, 493, 3, 92, 46, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 91, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 498, 3, 64, 32, 0, 498, 499, 5, 56, 0, 0, 499, 500, 3, 168, 84, 0, 500, 93, 1, 0, 0, 0, 501, 502, 5, 78, 0, 0, 502, 504, 3, 162, 81, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 95, 1, 0, 0, 0, 505, 506, 5, 10, 0, 0, 506, 507, 3, 156, 78, 0, 507, 512, 3, 178, 89, 0, 508, 509, 5, 61, 0, 0, 509, 511, 3, 178, 89, 0, 510, 508, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 97, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 29, 0, 0, 516, 517, 3, 54, 27, 0, 517, 99, 1, 0, 0, 0, 518, 519, 5, 6, 0, 0, 519, 520, 3, 102, 51, 0, 520, 101, 1, 0, 0, 0, 521, 522, 5, 98, 0, 0, 522, 523, 3, 4, 2, 0, 523, 524, 5, 99, 0, 0, 524, 103, 1, 0, 0, 0, 525, 526, 5, 35, 0, 0, 526, 527, 5, 148, 0, 0, 527, 105, 1, 0, 0, 0, 528, 529, 5, 5, 0, 0, 529, 532, 3, 108, 54, 0, 530, 531, 5, 73, 0, 0, 531, 533, 3, 58, 29, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 543, 1, 0, 0, 0, 534, 535, 5, 78, 0, 0, 535, 540, 3, 110, 55, 0, 536, 537, 5, 61, 0, 0, 537, 539, 3, 110, 55, 0, 538, 536, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 543, 534, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 107, 1, 0, 0, 0, 545, 546, 7, 4, 0, 0, 546, 109, 1, 0, 0, 0, 547, 548, 3, 58, 29, 0, 548, 549, 5, 56, 0, 0, 549, 551, 1, 0, 0, 0, 550, 547, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 3, 58, 29, 0, 553, 111, 1, 0, 0, 0, 554, 555, 5, 14, 0, 0, 555, 556, 3, 168, 84, 0, 556, 113, 1, 0, 0, 0, 557, 558, 5, 4, 0, 0, 558, 561, 3, 54, 27, 0, 559, 560, 5, 73, 0, 0, 560, 562, 3, 54, 27, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 568, 1, 0, 0, 0, 563, 564, 5, 141, 0, 0, 564, 565, 3, 54, 27, 0, 565, 566, 5, 61, 0, 0, 566, 567, 3, 54, 27, 0, 567, 569, 1, 0, 0, 0, 568, 563, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 115, 1, 0, 0, 0, 570, 571, 5, 20, 0, 0, 571, 572, 3, 118, 59, 0, 572, 117, 1, 0, 0, 0, 573, 575, 3, 120, 60, 0, 574, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 119, 1, 0, 0, 0, 578, 579, 5, 98, 0, 0, 579, 580, 3, 122, 61, 0, 580, 581, 5, 99, 0, 0, 581, 121, 1, 0, 0, 0, 582, 583, 6, 61, -1, 0, 583, 584, 3, 124, 62, 0, 584, 590, 1, 0, 0, 0, 585, 586, 10, 1, 0, 0, 586, 587, 5, 50, 0, 0, 587, 589, 3, 124, 62, 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, 123, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 593, 594, 3, 8, 4, 0, 594, 125, 1, 0, 0, 0, 595, 599, 5, 12, 0, 0, 596, 597, 3, 54, 27, 0, 597, 598, 5, 56, 0, 0, 598, 600, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 3, 168, 84, 0, 602, 603, 5, 73, 0, 0, 603, 604, 3, 20, 10, 0, 604, 605, 3, 94, 47, 0, 605, 127, 1, 0, 0, 0, 606, 610, 5, 7, 0, 0, 607, 608, 3, 54, 27, 0, 608, 609, 5, 56, 0, 0, 609, 611, 1, 0, 0, 0, 610, 607, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 3, 156, 78, 0, 613, 614, 3, 94, 47, 0, 614, 129, 1, 0, 0, 0, 615, 616, 5, 22, 0, 0, 616, 617, 5, 119, 0, 0, 617, 620, 3, 50, 25, 0, 618, 619, 5, 57, 0, 0, 619, 621, 3, 16, 8, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 629, 1, 0, 0, 0, 622, 623, 5, 23, 0, 0, 623, 626, 3, 50, 25, 0, 624, 625, 5, 57, 0, 0, 625, 627, 3, 16, 8, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 1, 0, 0, 0, 628, 615, 1, 0, 0, 0, 628, 622, 1, 0, 0, 0, 629, 131, 1, 0, 0, 0, 630, 632, 5, 21, 0, 0, 631, 633, 3, 64, 32, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 637, 1, 0, 0, 0, 634, 636, 3, 134, 67, 0, 635, 634, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 133, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 641, 5, 114, 0, 0, 641, 642, 5, 57, 0, 0, 642, 652, 3, 54, 27, 0, 643, 644, 5, 115, 0, 0, 644, 645, 5, 57, 0, 0, 645, 652, 3, 16, 8, 0, 646, 647, 5, 113, 0, 0, 647, 648, 5, 57, 0, 0, 648, 652, 3, 54, 27, 0, 649, 650, 5, 78, 0, 0, 650, 652, 3, 162, 81, 0, 651, 640, 1, 0, 0, 0, 651, 643, 1, 0, 0, 0, 651, 646, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 135, 1, 0, 0, 0, 653, 654, 5, 28, 0, 0, 654, 655, 3, 34, 17, 0, 655, 656, 5, 73, 0, 0, 656, 657, 3, 62, 31, 0, 657, 137, 1, 0, 0, 0, 658, 659, 5, 32, 0, 0, 659, 660, 3, 62, 31, 0, 660, 139, 1, 0, 0, 0, 661, 662, 5, 34, 0, 0, 662, 663, 3, 142, 71, 0, 663, 664, 5, 60, 0, 0, 664, 141, 1, 0, 0, 0, 665, 666, 3, 64, 32, 0, 666, 667, 5, 56, 0, 0, 667, 668, 3, 168, 84, 0, 668, 143, 1, 0, 0, 0, 669, 670, 6, 72, -1, 0, 670, 671, 5, 70, 0, 0, 671, 699, 3, 144, 72, 8, 672, 699, 3, 152, 76, 0, 673, 699, 3, 146, 73, 0, 674, 676, 3, 152, 76, 0, 675, 677, 5, 70, 0, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 66, 0, 0, 679, 680, 5, 98, 0, 0, 680, 685, 3, 152, 76, 0, 681, 682, 5, 61, 0, 0, 682, 684, 3, 152, 76, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 689, 5, 99, 0, 0, 689, 699, 1, 0, 0, 0, 690, 691, 3, 152, 76, 0, 691, 693, 5, 67, 0, 0, 692, 694, 5, 70, 0, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 71, 0, 0, 696, 699, 1, 0, 0, 0, 697, 699, 3, 150, 75, 0, 698, 669, 1, 0, 0, 0, 698, 672, 1, 0, 0, 0, 698, 673, 1, 0, 0, 0, 698, 674, 1, 0, 0, 0, 698, 690, 1, 0, 0, 0, 698, 697, 1, 0, 0, 0, 699, 708, 1, 0, 0, 0, 700, 701, 10, 5, 0, 0, 701, 702, 5, 54, 0, 0, 702, 707, 3, 144, 72, 6, 703, 704, 10, 4, 0, 0, 704, 705, 5, 74, 0, 0, 705, 707, 3, 144, 72, 5, 706, 700, 1, 0, 0, 0, 706, 703, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 145, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 713, 3, 152, 76, 0, 712, 714, 5, 70, 0, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 69, 0, 0, 716, 717, 3, 148, 74, 0, 717, 758, 1, 0, 0, 0, 718, 720, 3, 152, 76, 0, 719, 721, 5, 70, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 5, 76, 0, 0, 723, 724, 3, 178, 89, 0, 724, 758, 1, 0, 0, 0, 725, 727, 3, 152, 76, 0, 726, 728, 5, 70, 0, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 5, 69, 0, 0, 730, 731, 5, 98, 0, 0, 731, 736, 3, 178, 89, 0, 732, 733, 5, 61, 0, 0, 733, 735, 3, 178, 89, 0, 734, 732, 1, 0, 0, 0, 735, 738, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 739, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 739, 740, 5, 99, 0, 0, 740, 758, 1, 0, 0, 0, 741, 743, 3, 152, 76, 0, 742, 744, 5, 70, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 76, 0, 0, 746, 747, 5, 98, 0, 0, 747, 752, 3, 178, 89, 0, 748, 749, 5, 61, 0, 0, 749, 751, 3, 178, 89, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 756, 5, 99, 0, 0, 756, 758, 1, 0, 0, 0, 757, 711, 1, 0, 0, 0, 757, 718, 1, 0, 0, 0, 757, 725, 1, 0, 0, 0, 757, 741, 1, 0, 0, 0, 758, 147, 1, 0, 0, 0, 759, 762, 3, 178, 89, 0, 760, 762, 3, 68, 34, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 149, 1, 0, 0, 0, 763, 766, 3, 54, 27, 0, 764, 765, 5, 58, 0, 0, 765, 767, 3, 12, 6, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 59, 0, 0, 769, 770, 3, 168, 84, 0, 770, 151, 1, 0, 0, 0, 771, 777, 3, 154, 77, 0, 772, 773, 3, 154, 77, 0, 773, 774, 3, 180, 90, 0, 774, 775, 3, 154, 77, 0, 775, 777, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 777, 153, 1, 0, 0, 0, 778, 779, 6, 77, -1, 0, 779, 783, 3, 156, 78, 0, 780, 781, 7, 5, 0, 0, 781, 783, 3, 154, 77, 3, 782, 778, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 792, 1, 0, 0, 0, 784, 785, 10, 2, 0, 0, 785, 786, 7, 6, 0, 0, 786, 791, 3, 154, 77, 3, 787, 788, 10, 1, 0, 0, 788, 789, 7, 5, 0, 0, 789, 791, 3, 154, 77, 2, 790, 784, 1, 0, 0, 0, 790, 787, 1, 0, 0, 0, 791, 794, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 155, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 795, 796, 6, 78, -1, 0, 796, 804, 3, 168, 84, 0, 797, 804, 3, 54, 27, 0, 798, 804, 3, 158, 79, 0, 799, 800, 5, 98, 0, 0, 800, 801, 3, 144, 72, 0, 801, 802, 5, 99, 0, 0, 802, 804, 1, 0, 0, 0, 803, 795, 1, 0, 0, 0, 803, 797, 1, 0, 0, 0, 803, 798, 1, 0, 0, 0, 803, 799, 1, 0, 0, 0, 804, 810, 1, 0, 0, 0, 805, 806, 10, 1, 0, 0, 806, 807, 5, 58, 0, 0, 807, 809, 3, 12, 6, 0, 808, 805, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 157, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 814, 3, 160, 80, 0, 814, 828, 5, 98, 0, 0, 815, 829, 5, 88, 0, 0, 816, 821, 3, 144, 72, 0, 817, 818, 5, 61, 0, 0, 818, 820, 3, 144, 72, 0, 819, 817, 1, 0, 0, 0, 820, 823, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 826, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 825, 5, 61, 0, 0, 825, 827, 3, 162, 81, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 815, 1, 0, 0, 0, 828, 816, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 5, 99, 0, 0, 831, 159, 1, 0, 0, 0, 832, 836, 3, 72, 36, 0, 833, 836, 5, 65, 0, 0, 834, 836, 5, 68, 0, 0, 835, 832, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 835, 834, 1, 0, 0, 0, 836, 161, 1, 0, 0, 0, 837, 846, 5, 91, 0, 0, 838, 843, 3, 164, 82, 0, 839, 840, 5, 61, 0, 0, 840, 842, 3, 164, 82, 0, 841, 839, 1, 0, 0, 0, 842, 845, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 846, 838, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 92, 0, 0, 849, 163, 1, 0, 0, 0, 850, 851, 3, 178, 89, 0, 851, 852, 5, 59, 0, 0, 852, 853, 3, 166, 83, 0, 853, 165, 1, 0, 0, 0, 854, 857, 3, 168, 84, 0, 855, 857, 3, 162, 81, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 167, 1, 0, 0, 0, 858, 901, 5, 71, 0, 0, 859, 860, 3, 176, 88, 0, 860, 861, 5, 100, 0, 0, 861, 901, 1, 0, 0, 0, 862, 901, 3, 174, 87, 0, 863, 901, 3, 176, 88, 0, 864, 901, 3, 170, 85, 0, 865, 901, 3, 68, 34, 0, 866, 901, 3, 178, 89, 0, 867, 868, 5, 96, 0, 0, 868, 873, 3, 172, 86, 0, 869, 870, 5, 61, 0, 0, 870, 872, 3, 172, 86, 0, 871, 869, 1, 0, 0, 0, 872, 875, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 876, 877, 5, 97, 0, 0, 877, 901, 1, 0, 0, 0, 878, 879, 5, 96, 0, 0, 879, 884, 3, 170, 85, 0, 880, 881, 5, 61, 0, 0, 881, 883, 3, 170, 85, 0, 882, 880, 1, 0, 0, 0, 883, 886, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 887, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 887, 888, 5, 97, 0, 0, 888, 901, 1, 0, 0, 0, 889, 890, 5, 96, 0, 0, 890, 895, 3, 178, 89, 0, 891, 892, 5, 61, 0, 0, 892, 894, 3, 178, 89, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 97, 0, 0, 899, 901, 1, 0, 0, 0, 900, 858, 1, 0, 0, 0, 900, 859, 1, 0, 0, 0, 900, 862, 1, 0, 0, 0, 900, 863, 1, 0, 0, 0, 900, 864, 1, 0, 0, 0, 900, 865, 1, 0, 0, 0, 900, 866, 1, 0, 0, 0, 900, 867, 1, 0, 0, 0, 900, 878, 1, 0, 0, 0, 900, 889, 1, 0, 0, 0, 901, 169, 1, 0, 0, 0, 902, 903, 7, 7, 0, 0, 903, 171, 1, 0, 0, 0, 904, 907, 3, 174, 87, 0, 905, 907, 3, 176, 88, 0, 906, 904, 1, 0, 0, 0, 906, 905, 1, 0, 0, 0, 907, 173, 1, 0, 0, 0, 908, 910, 7, 5, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 53, 0, 0, 912, 175, 1, 0, 0, 0, 913, 915, 7, 5, 0, 0, 914, 913, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 52, 0, 0, 917, 177, 1, 0, 0, 0, 918, 919, 5, 51, 0, 0, 919, 179, 1, 0, 0, 0, 920, 921, 7, 8, 0, 0, 921, 181, 1, 0, 0, 0, 922, 923, 7, 9, 0, 0, 923, 924, 5, 123, 0, 0, 924, 925, 3, 184, 92, 0, 925, 926, 3, 186, 93, 0, 926, 183, 1, 0, 0, 0, 927, 928, 4, 92, 13, 0, 928, 930, 3, 34, 17, 0, 929, 931, 5, 141, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 5, 106, 0, 0, 933, 936, 1, 0, 0, 0, 934, 936, 3, 34, 17, 0, 935, 927, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 185, 1, 0, 0, 0, 937, 938, 5, 73, 0, 0, 938, 943, 3, 144, 72, 0, 939, 940, 5, 61, 0, 0, 940, 942, 3, 144, 72, 0, 941, 939, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 187, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 92, 191, 208, 217, 243, 258, 264, 273, 279, 292, 296, 301, 309, 323, 339, 347, 351, 358, 364, 369, 378, 385, 391, 400, 407, 415, 423, 427, 431, 436, 447, 452, 456, 470, 481, 487, 494, 503, 512, 532, 540, 543, 550, 561, 568, 576, 590, 599, 610, 620, 626, 628, 632, 637, 651, 676, 685, 693, 698, 706, 708, 713, 720, 727, 736, 743, 752, 757, 761, 766, 776, 782, 790, 792, 803, 810, 821, 826, 828, 835, 843, 846, 856, 873, 884, 895, 900, 906, 909, 914, 930, 935, 943]
\ No newline at end of file
+[4, 1, 151, 947, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 1, 0, 5, 0, 190, 8, 0, 10, 0, 12, 0, 193, 9, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 207, 8, 2, 10, 2, 12, 2, 210, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 218, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 244, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 257, 8, 8, 10, 8, 12, 8, 260, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 265, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 272, 8, 10, 10, 10, 12, 10, 275, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 280, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 291, 8, 14, 10, 14, 12, 14, 294, 9, 14, 1, 14, 3, 14, 297, 8, 14, 1, 15, 1, 15, 1, 15, 3, 15, 302, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 308, 8, 16, 10, 16, 12, 16, 311, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 324, 8, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 338, 8, 22, 10, 22, 12, 22, 341, 9, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 348, 8, 24, 1, 24, 1, 24, 3, 24, 352, 8, 24, 1, 25, 1, 25, 1, 25, 5, 25, 357, 8, 25, 10, 25, 12, 25, 360, 9, 25, 1, 26, 1, 26, 1, 26, 3, 26, 365, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 370, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 379, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 384, 8, 28, 10, 28, 12, 28, 387, 9, 28, 1, 29, 1, 29, 1, 29, 3, 29, 392, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 401, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 406, 8, 30, 10, 30, 12, 30, 409, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 414, 8, 31, 10, 31, 12, 31, 417, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 3, 33, 424, 8, 33, 1, 34, 1, 34, 3, 34, 428, 8, 34, 1, 35, 1, 35, 3, 35, 432, 8, 35, 1, 36, 1, 36, 1, 36, 3, 36, 437, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 446, 8, 38, 10, 38, 12, 38, 449, 9, 38, 1, 39, 1, 39, 3, 39, 453, 8, 39, 1, 39, 1, 39, 3, 39, 457, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 469, 8, 42, 10, 42, 12, 42, 472, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 482, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 488, 8, 44, 1, 45, 1, 45, 1, 45, 5, 45, 493, 8, 45, 10, 45, 12, 45, 496, 9, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 504, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 511, 8, 48, 10, 48, 12, 48, 514, 9, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 533, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 539, 8, 53, 10, 53, 12, 53, 542, 9, 53, 3, 53, 544, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 3, 55, 551, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 562, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 569, 8, 57, 1, 58, 1, 58, 1, 58, 1, 59, 4, 59, 575, 8, 59, 11, 59, 12, 59, 576, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 589, 8, 61, 10, 61, 12, 61, 592, 9, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 600, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 611, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 621, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 627, 8, 65, 3, 65, 629, 8, 65, 1, 66, 1, 66, 3, 66, 633, 8, 66, 1, 66, 5, 66, 636, 8, 66, 10, 66, 12, 66, 639, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 652, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 677, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 684, 8, 72, 10, 72, 12, 72, 687, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 694, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 699, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 707, 8, 72, 10, 72, 12, 72, 710, 9, 72, 1, 73, 1, 73, 3, 73, 714, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 721, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 728, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 735, 8, 73, 10, 73, 12, 73, 738, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 744, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 751, 8, 73, 10, 73, 12, 73, 754, 9, 73, 1, 73, 1, 73, 3, 73, 758, 8, 73, 1, 74, 1, 74, 3, 74, 762, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 767, 8, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 777, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 783, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 791, 8, 77, 10, 77, 12, 77, 794, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 804, 8, 78, 1, 78, 1, 78, 1, 78, 5, 78, 809, 8, 78, 10, 78, 12, 78, 812, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 820, 8, 79, 10, 79, 12, 79, 823, 9, 79, 1, 79, 1, 79, 3, 79, 827, 8, 79, 3, 79, 829, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 836, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 842, 8, 81, 10, 81, 12, 81, 845, 9, 81, 3, 81, 847, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 857, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 872, 8, 84, 10, 84, 12, 84, 875, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 883, 8, 84, 10, 84, 12, 84, 886, 9, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 894, 8, 84, 10, 84, 12, 84, 897, 9, 84, 1, 84, 1, 84, 3, 84, 901, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 907, 8, 86, 1, 87, 3, 87, 910, 8, 87, 1, 87, 1, 87, 1, 88, 3, 88, 915, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 3, 92, 931, 8, 92, 1, 92, 1, 92, 1, 92, 3, 92, 936, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 5, 93, 942, 8, 93, 10, 93, 12, 93, 945, 9, 93, 1, 93, 0, 5, 4, 122, 144, 154, 156, 94, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 990, 0, 191, 1, 0, 0, 0, 2, 197, 1, 0, 0, 0, 4, 200, 1, 0, 0, 0, 6, 217, 1, 0, 0, 0, 8, 243, 1, 0, 0, 0, 10, 245, 1, 0, 0, 0, 12, 248, 1, 0, 0, 0, 14, 250, 1, 0, 0, 0, 16, 253, 1, 0, 0, 0, 18, 264, 1, 0, 0, 0, 20, 268, 1, 0, 0, 0, 22, 276, 1, 0, 0, 0, 24, 281, 1, 0, 0, 0, 26, 284, 1, 0, 0, 0, 28, 287, 1, 0, 0, 0, 30, 301, 1, 0, 0, 0, 32, 303, 1, 0, 0, 0, 34, 323, 1, 0, 0, 0, 36, 325, 1, 0, 0, 0, 38, 327, 1, 0, 0, 0, 40, 329, 1, 0, 0, 0, 42, 331, 1, 0, 0, 0, 44, 333, 1, 0, 0, 0, 46, 342, 1, 0, 0, 0, 48, 345, 1, 0, 0, 0, 50, 353, 1, 0, 0, 0, 52, 361, 1, 0, 0, 0, 54, 378, 1, 0, 0, 0, 56, 380, 1, 0, 0, 0, 58, 400, 1, 0, 0, 0, 60, 402, 1, 0, 0, 0, 62, 410, 1, 0, 0, 0, 64, 418, 1, 0, 0, 0, 66, 423, 1, 0, 0, 0, 68, 427, 1, 0, 0, 0, 70, 431, 1, 0, 0, 0, 72, 436, 1, 0, 0, 0, 74, 438, 1, 0, 0, 0, 76, 441, 1, 0, 0, 0, 78, 450, 1, 0, 0, 0, 80, 458, 1, 0, 0, 0, 82, 461, 1, 0, 0, 0, 84, 464, 1, 0, 0, 0, 86, 481, 1, 0, 0, 0, 88, 483, 1, 0, 0, 0, 90, 489, 1, 0, 0, 0, 92, 497, 1, 0, 0, 0, 94, 503, 1, 0, 0, 0, 96, 505, 1, 0, 0, 0, 98, 515, 1, 0, 0, 0, 100, 518, 1, 0, 0, 0, 102, 521, 1, 0, 0, 0, 104, 525, 1, 0, 0, 0, 106, 528, 1, 0, 0, 0, 108, 545, 1, 0, 0, 0, 110, 550, 1, 0, 0, 0, 112, 554, 1, 0, 0, 0, 114, 557, 1, 0, 0, 0, 116, 570, 1, 0, 0, 0, 118, 574, 1, 0, 0, 0, 120, 578, 1, 0, 0, 0, 122, 582, 1, 0, 0, 0, 124, 593, 1, 0, 0, 0, 126, 595, 1, 0, 0, 0, 128, 606, 1, 0, 0, 0, 130, 628, 1, 0, 0, 0, 132, 630, 1, 0, 0, 0, 134, 651, 1, 0, 0, 0, 136, 653, 1, 0, 0, 0, 138, 658, 1, 0, 0, 0, 140, 661, 1, 0, 0, 0, 142, 665, 1, 0, 0, 0, 144, 698, 1, 0, 0, 0, 146, 757, 1, 0, 0, 0, 148, 761, 1, 0, 0, 0, 150, 763, 1, 0, 0, 0, 152, 776, 1, 0, 0, 0, 154, 782, 1, 0, 0, 0, 156, 803, 1, 0, 0, 0, 158, 813, 1, 0, 0, 0, 160, 835, 1, 0, 0, 0, 162, 837, 1, 0, 0, 0, 164, 850, 1, 0, 0, 0, 166, 856, 1, 0, 0, 0, 168, 900, 1, 0, 0, 0, 170, 902, 1, 0, 0, 0, 172, 906, 1, 0, 0, 0, 174, 909, 1, 0, 0, 0, 176, 914, 1, 0, 0, 0, 178, 918, 1, 0, 0, 0, 180, 920, 1, 0, 0, 0, 182, 922, 1, 0, 0, 0, 184, 935, 1, 0, 0, 0, 186, 937, 1, 0, 0, 0, 188, 190, 3, 140, 70, 0, 189, 188, 1, 0, 0, 0, 190, 193, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 194, 1, 0, 0, 0, 193, 191, 1, 0, 0, 0, 194, 195, 3, 2, 1, 0, 195, 196, 5, 0, 0, 1, 196, 1, 1, 0, 0, 0, 197, 198, 3, 4, 2, 0, 198, 199, 5, 0, 0, 1, 199, 3, 1, 0, 0, 0, 200, 201, 6, 2, -1, 0, 201, 202, 3, 6, 3, 0, 202, 208, 1, 0, 0, 0, 203, 204, 10, 1, 0, 0, 204, 205, 5, 50, 0, 0, 205, 207, 3, 8, 4, 0, 206, 203, 1, 0, 0, 0, 207, 210, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 5, 1, 0, 0, 0, 210, 208, 1, 0, 0, 0, 211, 218, 3, 24, 12, 0, 212, 218, 3, 14, 7, 0, 213, 218, 3, 104, 52, 0, 214, 218, 3, 26, 13, 0, 215, 216, 4, 3, 1, 0, 216, 218, 3, 100, 50, 0, 217, 211, 1, 0, 0, 0, 217, 212, 1, 0, 0, 0, 217, 213, 1, 0, 0, 0, 217, 214, 1, 0, 0, 0, 217, 215, 1, 0, 0, 0, 218, 7, 1, 0, 0, 0, 219, 244, 3, 46, 23, 0, 220, 244, 3, 10, 5, 0, 221, 244, 3, 80, 40, 0, 222, 244, 3, 74, 37, 0, 223, 244, 3, 48, 24, 0, 224, 244, 3, 76, 38, 0, 225, 244, 3, 82, 41, 0, 226, 244, 3, 84, 42, 0, 227, 244, 3, 88, 44, 0, 228, 244, 3, 96, 48, 0, 229, 244, 3, 106, 53, 0, 230, 244, 3, 98, 49, 0, 231, 244, 3, 182, 91, 0, 232, 244, 3, 114, 57, 0, 233, 244, 3, 128, 64, 0, 234, 244, 3, 112, 56, 0, 235, 244, 3, 116, 58, 0, 236, 244, 3, 126, 63, 0, 237, 244, 3, 130, 65, 0, 238, 244, 3, 132, 66, 0, 239, 240, 4, 4, 2, 0, 240, 244, 3, 136, 68, 0, 241, 242, 4, 4, 3, 0, 242, 244, 3, 138, 69, 0, 243, 219, 1, 0, 0, 0, 243, 220, 1, 0, 0, 0, 243, 221, 1, 0, 0, 0, 243, 222, 1, 0, 0, 0, 243, 223, 1, 0, 0, 0, 243, 224, 1, 0, 0, 0, 243, 225, 1, 0, 0, 0, 243, 226, 1, 0, 0, 0, 243, 227, 1, 0, 0, 0, 243, 228, 1, 0, 0, 0, 243, 229, 1, 0, 0, 0, 243, 230, 1, 0, 0, 0, 243, 231, 1, 0, 0, 0, 243, 232, 1, 0, 0, 0, 243, 233, 1, 0, 0, 0, 243, 234, 1, 0, 0, 0, 243, 235, 1, 0, 0, 0, 243, 236, 1, 0, 0, 0, 243, 237, 1, 0, 0, 0, 243, 238, 1, 0, 0, 0, 243, 239, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 9, 1, 0, 0, 0, 245, 246, 5, 17, 0, 0, 246, 247, 3, 144, 72, 0, 247, 11, 1, 0, 0, 0, 248, 249, 3, 64, 32, 0, 249, 13, 1, 0, 0, 0, 250, 251, 5, 13, 0, 0, 251, 252, 3, 16, 8, 0, 252, 15, 1, 0, 0, 0, 253, 258, 3, 18, 9, 0, 254, 255, 5, 61, 0, 0, 255, 257, 3, 18, 9, 0, 256, 254, 1, 0, 0, 0, 257, 260, 1, 0, 0, 0, 258, 256, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 17, 1, 0, 0, 0, 260, 258, 1, 0, 0, 0, 261, 262, 3, 54, 27, 0, 262, 263, 5, 56, 0, 0, 263, 265, 1, 0, 0, 0, 264, 261, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 267, 3, 144, 72, 0, 267, 19, 1, 0, 0, 0, 268, 273, 3, 22, 11, 0, 269, 270, 5, 61, 0, 0, 270, 272, 3, 22, 11, 0, 271, 269, 1, 0, 0, 0, 272, 275, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 21, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 276, 279, 3, 54, 27, 0, 277, 278, 5, 56, 0, 0, 278, 280, 3, 144, 72, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 23, 1, 0, 0, 0, 281, 282, 5, 18, 0, 0, 282, 283, 3, 28, 14, 0, 283, 25, 1, 0, 0, 0, 284, 285, 5, 19, 0, 0, 285, 286, 3, 28, 14, 0, 286, 27, 1, 0, 0, 0, 287, 292, 3, 30, 15, 0, 288, 289, 5, 61, 0, 0, 289, 291, 3, 30, 15, 0, 290, 288, 1, 0, 0, 0, 291, 294, 1, 0, 0, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 297, 3, 44, 22, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 29, 1, 0, 0, 0, 298, 302, 3, 34, 17, 0, 299, 300, 4, 15, 4, 0, 300, 302, 3, 32, 16, 0, 301, 298, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 31, 1, 0, 0, 0, 303, 304, 5, 98, 0, 0, 304, 309, 3, 24, 12, 0, 305, 306, 5, 50, 0, 0, 306, 308, 3, 8, 4, 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, 312, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 313, 5, 99, 0, 0, 313, 33, 1, 0, 0, 0, 314, 315, 3, 36, 18, 0, 315, 316, 5, 59, 0, 0, 316, 317, 3, 40, 20, 0, 317, 324, 1, 0, 0, 0, 318, 319, 3, 40, 20, 0, 319, 320, 5, 58, 0, 0, 320, 321, 3, 38, 19, 0, 321, 324, 1, 0, 0, 0, 322, 324, 3, 42, 21, 0, 323, 314, 1, 0, 0, 0, 323, 318, 1, 0, 0, 0, 323, 322, 1, 0, 0, 0, 324, 35, 1, 0, 0, 0, 325, 326, 5, 106, 0, 0, 326, 37, 1, 0, 0, 0, 327, 328, 5, 106, 0, 0, 328, 39, 1, 0, 0, 0, 329, 330, 5, 106, 0, 0, 330, 41, 1, 0, 0, 0, 331, 332, 7, 0, 0, 0, 332, 43, 1, 0, 0, 0, 333, 334, 5, 105, 0, 0, 334, 339, 5, 106, 0, 0, 335, 336, 5, 61, 0, 0, 336, 338, 5, 106, 0, 0, 337, 335, 1, 0, 0, 0, 338, 341, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 45, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 343, 5, 9, 0, 0, 343, 344, 3, 16, 8, 0, 344, 47, 1, 0, 0, 0, 345, 347, 5, 16, 0, 0, 346, 348, 3, 50, 25, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 350, 5, 57, 0, 0, 350, 352, 3, 16, 8, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 49, 1, 0, 0, 0, 353, 358, 3, 52, 26, 0, 354, 355, 5, 61, 0, 0, 355, 357, 3, 52, 26, 0, 356, 354, 1, 0, 0, 0, 357, 360, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 359, 1, 0, 0, 0, 359, 51, 1, 0, 0, 0, 360, 358, 1, 0, 0, 0, 361, 364, 3, 18, 9, 0, 362, 363, 5, 17, 0, 0, 363, 365, 3, 144, 72, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 53, 1, 0, 0, 0, 366, 367, 4, 27, 5, 0, 367, 369, 5, 96, 0, 0, 368, 370, 5, 100, 0, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 5, 97, 0, 0, 372, 373, 5, 63, 0, 0, 373, 374, 5, 96, 0, 0, 374, 375, 3, 56, 28, 0, 375, 376, 5, 97, 0, 0, 376, 379, 1, 0, 0, 0, 377, 379, 3, 56, 28, 0, 378, 366, 1, 0, 0, 0, 378, 377, 1, 0, 0, 0, 379, 55, 1, 0, 0, 0, 380, 385, 3, 72, 36, 0, 381, 382, 5, 63, 0, 0, 382, 384, 3, 72, 36, 0, 383, 381, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 57, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 389, 4, 29, 6, 0, 389, 391, 5, 96, 0, 0, 390, 392, 5, 137, 0, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 394, 5, 97, 0, 0, 394, 395, 5, 63, 0, 0, 395, 396, 5, 96, 0, 0, 396, 397, 3, 60, 30, 0, 397, 398, 5, 97, 0, 0, 398, 401, 1, 0, 0, 0, 399, 401, 3, 60, 30, 0, 400, 388, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 59, 1, 0, 0, 0, 402, 407, 3, 66, 33, 0, 403, 404, 5, 63, 0, 0, 404, 406, 3, 66, 33, 0, 405, 403, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 61, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 410, 415, 3, 58, 29, 0, 411, 412, 5, 61, 0, 0, 412, 414, 3, 58, 29, 0, 413, 411, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 63, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 7, 1, 0, 0, 419, 65, 1, 0, 0, 0, 420, 424, 5, 137, 0, 0, 421, 424, 3, 68, 34, 0, 422, 424, 3, 70, 35, 0, 423, 420, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 67, 1, 0, 0, 0, 425, 428, 5, 75, 0, 0, 426, 428, 5, 94, 0, 0, 427, 425, 1, 0, 0, 0, 427, 426, 1, 0, 0, 0, 428, 69, 1, 0, 0, 0, 429, 432, 5, 93, 0, 0, 430, 432, 5, 95, 0, 0, 431, 429, 1, 0, 0, 0, 431, 430, 1, 0, 0, 0, 432, 71, 1, 0, 0, 0, 433, 437, 3, 64, 32, 0, 434, 437, 3, 68, 34, 0, 435, 437, 3, 70, 35, 0, 436, 433, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 436, 435, 1, 0, 0, 0, 437, 73, 1, 0, 0, 0, 438, 439, 5, 11, 0, 0, 439, 440, 3, 168, 84, 0, 440, 75, 1, 0, 0, 0, 441, 442, 5, 15, 0, 0, 442, 447, 3, 78, 39, 0, 443, 444, 5, 61, 0, 0, 444, 446, 3, 78, 39, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 77, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 452, 3, 144, 72, 0, 451, 453, 7, 2, 0, 0, 452, 451, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 455, 5, 72, 0, 0, 455, 457, 7, 3, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 79, 1, 0, 0, 0, 458, 459, 5, 31, 0, 0, 459, 460, 3, 62, 31, 0, 460, 81, 1, 0, 0, 0, 461, 462, 5, 30, 0, 0, 462, 463, 3, 62, 31, 0, 463, 83, 1, 0, 0, 0, 464, 465, 5, 33, 0, 0, 465, 470, 3, 86, 43, 0, 466, 467, 5, 61, 0, 0, 467, 469, 3, 86, 43, 0, 468, 466, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 85, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 474, 3, 58, 29, 0, 474, 475, 5, 141, 0, 0, 475, 476, 3, 58, 29, 0, 476, 482, 1, 0, 0, 0, 477, 478, 3, 58, 29, 0, 478, 479, 5, 56, 0, 0, 479, 480, 3, 58, 29, 0, 480, 482, 1, 0, 0, 0, 481, 473, 1, 0, 0, 0, 481, 477, 1, 0, 0, 0, 482, 87, 1, 0, 0, 0, 483, 484, 5, 8, 0, 0, 484, 485, 3, 156, 78, 0, 485, 487, 3, 178, 89, 0, 486, 488, 3, 90, 45, 0, 487, 486, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 89, 1, 0, 0, 0, 489, 494, 3, 92, 46, 0, 490, 491, 5, 61, 0, 0, 491, 493, 3, 92, 46, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 91, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 498, 3, 64, 32, 0, 498, 499, 5, 56, 0, 0, 499, 500, 3, 168, 84, 0, 500, 93, 1, 0, 0, 0, 501, 502, 5, 78, 0, 0, 502, 504, 3, 162, 81, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 95, 1, 0, 0, 0, 505, 506, 5, 10, 0, 0, 506, 507, 3, 156, 78, 0, 507, 512, 3, 178, 89, 0, 508, 509, 5, 61, 0, 0, 509, 511, 3, 178, 89, 0, 510, 508, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 97, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 29, 0, 0, 516, 517, 3, 54, 27, 0, 517, 99, 1, 0, 0, 0, 518, 519, 5, 6, 0, 0, 519, 520, 3, 102, 51, 0, 520, 101, 1, 0, 0, 0, 521, 522, 5, 98, 0, 0, 522, 523, 3, 4, 2, 0, 523, 524, 5, 99, 0, 0, 524, 103, 1, 0, 0, 0, 525, 526, 5, 35, 0, 0, 526, 527, 5, 148, 0, 0, 527, 105, 1, 0, 0, 0, 528, 529, 5, 5, 0, 0, 529, 532, 3, 108, 54, 0, 530, 531, 5, 73, 0, 0, 531, 533, 3, 58, 29, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 543, 1, 0, 0, 0, 534, 535, 5, 78, 0, 0, 535, 540, 3, 110, 55, 0, 536, 537, 5, 61, 0, 0, 537, 539, 3, 110, 55, 0, 538, 536, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 543, 534, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 107, 1, 0, 0, 0, 545, 546, 7, 4, 0, 0, 546, 109, 1, 0, 0, 0, 547, 548, 3, 58, 29, 0, 548, 549, 5, 56, 0, 0, 549, 551, 1, 0, 0, 0, 550, 547, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 3, 58, 29, 0, 553, 111, 1, 0, 0, 0, 554, 555, 5, 14, 0, 0, 555, 556, 3, 168, 84, 0, 556, 113, 1, 0, 0, 0, 557, 558, 5, 4, 0, 0, 558, 561, 3, 54, 27, 0, 559, 560, 5, 73, 0, 0, 560, 562, 3, 54, 27, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 568, 1, 0, 0, 0, 563, 564, 5, 141, 0, 0, 564, 565, 3, 54, 27, 0, 565, 566, 5, 61, 0, 0, 566, 567, 3, 54, 27, 0, 567, 569, 1, 0, 0, 0, 568, 563, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 115, 1, 0, 0, 0, 570, 571, 5, 20, 0, 0, 571, 572, 3, 118, 59, 0, 572, 117, 1, 0, 0, 0, 573, 575, 3, 120, 60, 0, 574, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 119, 1, 0, 0, 0, 578, 579, 5, 98, 0, 0, 579, 580, 3, 122, 61, 0, 580, 581, 5, 99, 0, 0, 581, 121, 1, 0, 0, 0, 582, 583, 6, 61, -1, 0, 583, 584, 3, 124, 62, 0, 584, 590, 1, 0, 0, 0, 585, 586, 10, 1, 0, 0, 586, 587, 5, 50, 0, 0, 587, 589, 3, 124, 62, 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, 123, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 593, 594, 3, 8, 4, 0, 594, 125, 1, 0, 0, 0, 595, 599, 5, 12, 0, 0, 596, 597, 3, 54, 27, 0, 597, 598, 5, 56, 0, 0, 598, 600, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 3, 168, 84, 0, 602, 603, 5, 73, 0, 0, 603, 604, 3, 20, 10, 0, 604, 605, 3, 94, 47, 0, 605, 127, 1, 0, 0, 0, 606, 610, 5, 7, 0, 0, 607, 608, 3, 54, 27, 0, 608, 609, 5, 56, 0, 0, 609, 611, 1, 0, 0, 0, 610, 607, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 3, 156, 78, 0, 613, 614, 3, 94, 47, 0, 614, 129, 1, 0, 0, 0, 615, 616, 5, 22, 0, 0, 616, 617, 5, 119, 0, 0, 617, 620, 3, 50, 25, 0, 618, 619, 5, 57, 0, 0, 619, 621, 3, 16, 8, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 629, 1, 0, 0, 0, 622, 623, 5, 23, 0, 0, 623, 626, 3, 50, 25, 0, 624, 625, 5, 57, 0, 0, 625, 627, 3, 16, 8, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 1, 0, 0, 0, 628, 615, 1, 0, 0, 0, 628, 622, 1, 0, 0, 0, 629, 131, 1, 0, 0, 0, 630, 632, 5, 21, 0, 0, 631, 633, 3, 64, 32, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 637, 1, 0, 0, 0, 634, 636, 3, 134, 67, 0, 635, 634, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 133, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 641, 5, 114, 0, 0, 641, 642, 5, 57, 0, 0, 642, 652, 3, 54, 27, 0, 643, 644, 5, 115, 0, 0, 644, 645, 5, 57, 0, 0, 645, 652, 3, 16, 8, 0, 646, 647, 5, 113, 0, 0, 647, 648, 5, 57, 0, 0, 648, 652, 3, 54, 27, 0, 649, 650, 5, 78, 0, 0, 650, 652, 3, 162, 81, 0, 651, 640, 1, 0, 0, 0, 651, 643, 1, 0, 0, 0, 651, 646, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 135, 1, 0, 0, 0, 653, 654, 5, 28, 0, 0, 654, 655, 3, 34, 17, 0, 655, 656, 5, 73, 0, 0, 656, 657, 3, 62, 31, 0, 657, 137, 1, 0, 0, 0, 658, 659, 5, 32, 0, 0, 659, 660, 3, 62, 31, 0, 660, 139, 1, 0, 0, 0, 661, 662, 5, 34, 0, 0, 662, 663, 3, 142, 71, 0, 663, 664, 5, 60, 0, 0, 664, 141, 1, 0, 0, 0, 665, 666, 3, 64, 32, 0, 666, 667, 5, 56, 0, 0, 667, 668, 3, 168, 84, 0, 668, 143, 1, 0, 0, 0, 669, 670, 6, 72, -1, 0, 670, 671, 5, 70, 0, 0, 671, 699, 3, 144, 72, 8, 672, 699, 3, 152, 76, 0, 673, 699, 3, 146, 73, 0, 674, 676, 3, 152, 76, 0, 675, 677, 5, 70, 0, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 66, 0, 0, 679, 680, 5, 98, 0, 0, 680, 685, 3, 152, 76, 0, 681, 682, 5, 61, 0, 0, 682, 684, 3, 152, 76, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 689, 5, 99, 0, 0, 689, 699, 1, 0, 0, 0, 690, 691, 3, 152, 76, 0, 691, 693, 5, 67, 0, 0, 692, 694, 5, 70, 0, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 71, 0, 0, 696, 699, 1, 0, 0, 0, 697, 699, 3, 150, 75, 0, 698, 669, 1, 0, 0, 0, 698, 672, 1, 0, 0, 0, 698, 673, 1, 0, 0, 0, 698, 674, 1, 0, 0, 0, 698, 690, 1, 0, 0, 0, 698, 697, 1, 0, 0, 0, 699, 708, 1, 0, 0, 0, 700, 701, 10, 5, 0, 0, 701, 702, 5, 54, 0, 0, 702, 707, 3, 144, 72, 6, 703, 704, 10, 4, 0, 0, 704, 705, 5, 74, 0, 0, 705, 707, 3, 144, 72, 5, 706, 700, 1, 0, 0, 0, 706, 703, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 145, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 713, 3, 152, 76, 0, 712, 714, 5, 70, 0, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 5, 69, 0, 0, 716, 717, 3, 148, 74, 0, 717, 758, 1, 0, 0, 0, 718, 720, 3, 152, 76, 0, 719, 721, 5, 70, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 5, 76, 0, 0, 723, 724, 3, 148, 74, 0, 724, 758, 1, 0, 0, 0, 725, 727, 3, 152, 76, 0, 726, 728, 5, 70, 0, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 5, 69, 0, 0, 730, 731, 5, 98, 0, 0, 731, 736, 3, 148, 74, 0, 732, 733, 5, 61, 0, 0, 733, 735, 3, 148, 74, 0, 734, 732, 1, 0, 0, 0, 735, 738, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 739, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 739, 740, 5, 99, 0, 0, 740, 758, 1, 0, 0, 0, 741, 743, 3, 152, 76, 0, 742, 744, 5, 70, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 76, 0, 0, 746, 747, 5, 98, 0, 0, 747, 752, 3, 148, 74, 0, 748, 749, 5, 61, 0, 0, 749, 751, 3, 148, 74, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 756, 5, 99, 0, 0, 756, 758, 1, 0, 0, 0, 757, 711, 1, 0, 0, 0, 757, 718, 1, 0, 0, 0, 757, 725, 1, 0, 0, 0, 757, 741, 1, 0, 0, 0, 758, 147, 1, 0, 0, 0, 759, 762, 3, 178, 89, 0, 760, 762, 3, 68, 34, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 149, 1, 0, 0, 0, 763, 766, 3, 54, 27, 0, 764, 765, 5, 58, 0, 0, 765, 767, 3, 12, 6, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 59, 0, 0, 769, 770, 3, 168, 84, 0, 770, 151, 1, 0, 0, 0, 771, 777, 3, 154, 77, 0, 772, 773, 3, 154, 77, 0, 773, 774, 3, 180, 90, 0, 774, 775, 3, 154, 77, 0, 775, 777, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 777, 153, 1, 0, 0, 0, 778, 779, 6, 77, -1, 0, 779, 783, 3, 156, 78, 0, 780, 781, 7, 5, 0, 0, 781, 783, 3, 154, 77, 3, 782, 778, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 783, 792, 1, 0, 0, 0, 784, 785, 10, 2, 0, 0, 785, 786, 7, 6, 0, 0, 786, 791, 3, 154, 77, 3, 787, 788, 10, 1, 0, 0, 788, 789, 7, 5, 0, 0, 789, 791, 3, 154, 77, 2, 790, 784, 1, 0, 0, 0, 790, 787, 1, 0, 0, 0, 791, 794, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 155, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 795, 796, 6, 78, -1, 0, 796, 804, 3, 168, 84, 0, 797, 804, 3, 54, 27, 0, 798, 804, 3, 158, 79, 0, 799, 800, 5, 98, 0, 0, 800, 801, 3, 144, 72, 0, 801, 802, 5, 99, 0, 0, 802, 804, 1, 0, 0, 0, 803, 795, 1, 0, 0, 0, 803, 797, 1, 0, 0, 0, 803, 798, 1, 0, 0, 0, 803, 799, 1, 0, 0, 0, 804, 810, 1, 0, 0, 0, 805, 806, 10, 1, 0, 0, 806, 807, 5, 58, 0, 0, 807, 809, 3, 12, 6, 0, 808, 805, 1, 0, 0, 0, 809, 812, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 157, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 813, 814, 3, 160, 80, 0, 814, 828, 5, 98, 0, 0, 815, 829, 5, 88, 0, 0, 816, 821, 3, 144, 72, 0, 817, 818, 5, 61, 0, 0, 818, 820, 3, 144, 72, 0, 819, 817, 1, 0, 0, 0, 820, 823, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 826, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 825, 5, 61, 0, 0, 825, 827, 3, 162, 81, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 815, 1, 0, 0, 0, 828, 816, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 5, 99, 0, 0, 831, 159, 1, 0, 0, 0, 832, 836, 3, 72, 36, 0, 833, 836, 5, 65, 0, 0, 834, 836, 5, 68, 0, 0, 835, 832, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 835, 834, 1, 0, 0, 0, 836, 161, 1, 0, 0, 0, 837, 846, 5, 91, 0, 0, 838, 843, 3, 164, 82, 0, 839, 840, 5, 61, 0, 0, 840, 842, 3, 164, 82, 0, 841, 839, 1, 0, 0, 0, 842, 845, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 846, 838, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 92, 0, 0, 849, 163, 1, 0, 0, 0, 850, 851, 3, 178, 89, 0, 851, 852, 5, 59, 0, 0, 852, 853, 3, 166, 83, 0, 853, 165, 1, 0, 0, 0, 854, 857, 3, 168, 84, 0, 855, 857, 3, 162, 81, 0, 856, 854, 1, 0, 0, 0, 856, 855, 1, 0, 0, 0, 857, 167, 1, 0, 0, 0, 858, 901, 5, 71, 0, 0, 859, 860, 3, 176, 88, 0, 860, 861, 5, 100, 0, 0, 861, 901, 1, 0, 0, 0, 862, 901, 3, 174, 87, 0, 863, 901, 3, 176, 88, 0, 864, 901, 3, 170, 85, 0, 865, 901, 3, 68, 34, 0, 866, 901, 3, 178, 89, 0, 867, 868, 5, 96, 0, 0, 868, 873, 3, 172, 86, 0, 869, 870, 5, 61, 0, 0, 870, 872, 3, 172, 86, 0, 871, 869, 1, 0, 0, 0, 872, 875, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 876, 877, 5, 97, 0, 0, 877, 901, 1, 0, 0, 0, 878, 879, 5, 96, 0, 0, 879, 884, 3, 170, 85, 0, 880, 881, 5, 61, 0, 0, 881, 883, 3, 170, 85, 0, 882, 880, 1, 0, 0, 0, 883, 886, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 887, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 887, 888, 5, 97, 0, 0, 888, 901, 1, 0, 0, 0, 889, 890, 5, 96, 0, 0, 890, 895, 3, 178, 89, 0, 891, 892, 5, 61, 0, 0, 892, 894, 3, 178, 89, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 97, 0, 0, 899, 901, 1, 0, 0, 0, 900, 858, 1, 0, 0, 0, 900, 859, 1, 0, 0, 0, 900, 862, 1, 0, 0, 0, 900, 863, 1, 0, 0, 0, 900, 864, 1, 0, 0, 0, 900, 865, 1, 0, 0, 0, 900, 866, 1, 0, 0, 0, 900, 867, 1, 0, 0, 0, 900, 878, 1, 0, 0, 0, 900, 889, 1, 0, 0, 0, 901, 169, 1, 0, 0, 0, 902, 903, 7, 7, 0, 0, 903, 171, 1, 0, 0, 0, 904, 907, 3, 174, 87, 0, 905, 907, 3, 176, 88, 0, 906, 904, 1, 0, 0, 0, 906, 905, 1, 0, 0, 0, 907, 173, 1, 0, 0, 0, 908, 910, 7, 5, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 53, 0, 0, 912, 175, 1, 0, 0, 0, 913, 915, 7, 5, 0, 0, 914, 913, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 5, 52, 0, 0, 917, 177, 1, 0, 0, 0, 918, 919, 5, 51, 0, 0, 919, 179, 1, 0, 0, 0, 920, 921, 7, 8, 0, 0, 921, 181, 1, 0, 0, 0, 922, 923, 7, 9, 0, 0, 923, 924, 5, 123, 0, 0, 924, 925, 3, 184, 92, 0, 925, 926, 3, 186, 93, 0, 926, 183, 1, 0, 0, 0, 927, 928, 4, 92, 13, 0, 928, 930, 3, 34, 17, 0, 929, 931, 5, 141, 0, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 933, 5, 106, 0, 0, 933, 936, 1, 0, 0, 0, 934, 936, 3, 34, 17, 0, 935, 927, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 185, 1, 0, 0, 0, 937, 938, 5, 73, 0, 0, 938, 943, 3, 144, 72, 0, 939, 940, 5, 61, 0, 0, 940, 942, 3, 144, 72, 0, 941, 939, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 187, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 92, 191, 208, 217, 243, 258, 264, 273, 279, 292, 296, 301, 309, 323, 339, 347, 351, 358, 364, 369, 378, 385, 391, 400, 407, 415, 423, 427, 431, 436, 447, 452, 456, 470, 481, 487, 494, 503, 512, 532, 540, 543, 550, 561, 568, 576, 590, 599, 610, 620, 626, 628, 632, 637, 651, 676, 685, 693, 698, 706, 708, 713, 720, 727, 736, 743, 752, 757, 761, 766, 776, 782, 790, 792, 803, 810, 821, 826, 828, 835, 843, 846, 856, 873, 884, 895, 900, 906, 909, 914, 930, 935, 943]
\ 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 e4b05862b2f21..0952549760a46 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
@@ -5740,11 +5740,11 @@ public ValueExpressionContext valueExpression() {
}
public TerminalNode LIKE() { return getToken(EsqlBaseParser.LIKE, 0); }
public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); }
- public List string() {
- return getRuleContexts(StringContext.class);
+ public List stringOrParameter() {
+ return getRuleContexts(StringOrParameterContext.class);
}
- public StringContext string(int i) {
- return getRuleContext(StringContext.class,i);
+ public StringOrParameterContext stringOrParameter(int i) {
+ return getRuleContext(StringOrParameterContext.class,i);
}
public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); }
public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); }
@@ -5774,8 +5774,8 @@ public ValueExpressionContext valueExpression() {
return getRuleContext(ValueExpressionContext.class,0);
}
public TerminalNode RLIKE() { return getToken(EsqlBaseParser.RLIKE, 0); }
- public StringContext string() {
- return getRuleContext(StringContext.class,0);
+ public StringOrParameterContext stringOrParameter() {
+ return getRuleContext(StringOrParameterContext.class,0);
}
public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); }
@SuppressWarnings("this-escape")
@@ -5801,11 +5801,11 @@ public ValueExpressionContext valueExpression() {
}
public TerminalNode RLIKE() { return getToken(EsqlBaseParser.RLIKE, 0); }
public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); }
- public List string() {
- return getRuleContexts(StringContext.class);
+ public List stringOrParameter() {
+ return getRuleContexts(StringOrParameterContext.class);
}
- public StringContext string(int i) {
- return getRuleContext(StringContext.class,i);
+ public StringOrParameterContext stringOrParameter(int i) {
+ return getRuleContext(StringOrParameterContext.class,i);
}
public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); }
public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); }
@@ -5879,7 +5879,7 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
setState(722);
match(RLIKE);
setState(723);
- string();
+ stringOrParameter();
}
break;
case 3:
@@ -5903,7 +5903,7 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
setState(730);
match(LP);
setState(731);
- string();
+ stringOrParameter();
setState(736);
_errHandler.sync(this);
_la = _input.LA(1);
@@ -5913,7 +5913,7 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
setState(732);
match(COMMA);
setState(733);
- string();
+ stringOrParameter();
}
}
setState(738);
@@ -5945,7 +5945,7 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
setState(746);
match(LP);
setState(747);
- string();
+ stringOrParameter();
setState(752);
_errHandler.sync(this);
_la = _input.LA(1);
@@ -5955,7 +5955,7 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
setState(748);
match(COMMA);
setState(749);
- string();
+ stringOrParameter();
}
}
setState(754);
@@ -8620,20 +8620,20 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) {
"\u0000\u02ce\u02d0\u0003\u0098L\u0000\u02cf\u02d1\u0005F\u0000\u0000\u02d0"+
"\u02cf\u0001\u0000\u0000\u0000\u02d0\u02d1\u0001\u0000\u0000\u0000\u02d1"+
"\u02d2\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005L\u0000\u0000\u02d3\u02d4"+
- "\u0003\u00b2Y\u0000\u02d4\u02f6\u0001\u0000\u0000\u0000\u02d5\u02d7\u0003"+
+ "\u0003\u0094J\u0000\u02d4\u02f6\u0001\u0000\u0000\u0000\u02d5\u02d7\u0003"+
"\u0098L\u0000\u02d6\u02d8\u0005F\u0000\u0000\u02d7\u02d6\u0001\u0000\u0000"+
"\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000"+
"\u0000\u02d9\u02da\u0005E\u0000\u0000\u02da\u02db\u0005b\u0000\u0000\u02db"+
- "\u02e0\u0003\u00b2Y\u0000\u02dc\u02dd\u0005=\u0000\u0000\u02dd\u02df\u0003"+
- "\u00b2Y\u0000\u02de\u02dc\u0001\u0000\u0000\u0000\u02df\u02e2\u0001\u0000"+
+ "\u02e0\u0003\u0094J\u0000\u02dc\u02dd\u0005=\u0000\u0000\u02dd\u02df\u0003"+
+ "\u0094J\u0000\u02de\u02dc\u0001\u0000\u0000\u0000\u02df\u02e2\u0001\u0000"+
"\u0000\u0000\u02e0\u02de\u0001\u0000\u0000\u0000\u02e0\u02e1\u0001\u0000"+
"\u0000\u0000\u02e1\u02e3\u0001\u0000\u0000\u0000\u02e2\u02e0\u0001\u0000"+
"\u0000\u0000\u02e3\u02e4\u0005c\u0000\u0000\u02e4\u02f6\u0001\u0000\u0000"+
"\u0000\u02e5\u02e7\u0003\u0098L\u0000\u02e6\u02e8\u0005F\u0000\u0000\u02e7"+
"\u02e6\u0001\u0000\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000\u02e8"+
"\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ea\u0005L\u0000\u0000\u02ea\u02eb"+
- "\u0005b\u0000\u0000\u02eb\u02f0\u0003\u00b2Y\u0000\u02ec\u02ed\u0005="+
- "\u0000\u0000\u02ed\u02ef\u0003\u00b2Y\u0000\u02ee\u02ec\u0001\u0000\u0000"+
+ "\u0005b\u0000\u0000\u02eb\u02f0\u0003\u0094J\u0000\u02ec\u02ed\u0005="+
+ "\u0000\u0000\u02ed\u02ef\u0003\u0094J\u0000\u02ee\u02ec\u0001\u0000\u0000"+
"\u0000\u02ef\u02f2\u0001\u0000\u0000\u0000\u02f0\u02ee\u0001\u0000\u0000"+
"\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f3\u0001\u0000\u0000"+
"\u0000\u02f2\u02f0\u0001\u0000\u0000\u0000\u02f3\u02f4\u0005c\u0000\u0000"+