diff --git a/docs/changelog/129929.yaml b/docs/changelog/129929.yaml
new file mode 100644
index 0000000000000..c2296a64ab434
--- /dev/null
+++ b/docs/changelog/129929.yaml
@@ -0,0 +1,5 @@
+pr: 129929
+summary: Add support for RLIKE (LIST) with pushdown
+area: ES|QL
+type: enhancement
+issues: []
diff --git a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePattern.java b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePattern.java
index d94db12b0eb9b..58c51028beed4 100644
--- a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePattern.java
+++ b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePattern.java
@@ -9,10 +9,14 @@
import org.apache.lucene.util.automaton.Automaton;
import org.apache.lucene.util.automaton.Operations;
import org.apache.lucene.util.automaton.RegExp;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.common.io.stream.Writeable;
+import java.io.IOException;
import java.util.Objects;
-public class RLikePattern extends AbstractStringPattern {
+public class RLikePattern extends AbstractStringPattern implements Writeable {
private final String regexpPattern;
@@ -20,6 +24,15 @@ public RLikePattern(String regexpPattern) {
this.regexpPattern = regexpPattern;
}
+ public RLikePattern(StreamInput in) throws IOException {
+ this(in.readString());
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ out.writeString(regexpPattern);
+ }
+
@Override
public Automaton createAutomaton(boolean ignoreCase) {
int matchFlags = ignoreCase ? RegExp.ASCII_CASE_INSENSITIVE : 0;
diff --git a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePatternList.java b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePatternList.java
new file mode 100644
index 0000000000000..be62d189bafa4
--- /dev/null
+++ b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/predicate/regex/RLikePatternList.java
@@ -0,0 +1,92 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+package org.elasticsearch.xpack.esql.core.expression.predicate.regex;
+
+import org.apache.lucene.util.automaton.Automaton;
+import org.apache.lucene.util.automaton.Operations;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.common.io.stream.Writeable;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Objects;
+import java.util.stream.Collectors;
+
+public class RLikePatternList extends AbstractStringPattern implements Writeable {
+
+ private final List patternList;
+
+ public RLikePatternList(List patternList) {
+ this.patternList = patternList;
+ }
+
+ public RLikePatternList(StreamInput in) throws IOException {
+ this(in.readCollectionAsList(RLikePattern::new));
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ out.writeCollection(patternList, (o, pattern) -> pattern.writeTo(o));
+ }
+
+ public List patternList() {
+ return patternList;
+ }
+
+ /**
+ * Creates an automaton that matches any of the patterns in the list.
+ * We create a single automaton that is the union of all individual automatons to improve performance
+ */
+ @Override
+ public Automaton createAutomaton(boolean ignoreCase) {
+ List automatonList = patternList.stream().map(x -> x.createAutomaton(ignoreCase)).toList();
+ Automaton result = Operations.union(automatonList);
+ return Operations.determinize(result, Operations.DEFAULT_DETERMINIZE_WORK_LIMIT);
+ }
+
+ /**
+ * Returns a Java regex that matches any of the patterns in the list.
+ * The patterns are joined with the '|' operator to create a single regex.
+ */
+ @Override
+ public String asJavaRegex() {
+ return patternList.stream().map(RLikePattern::asJavaRegex).collect(Collectors.joining("|"));
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(patternList);
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj) {
+ return true;
+ }
+ if (obj == null || getClass() != obj.getClass()) {
+ return false;
+ }
+ RLikePatternList other = (RLikePatternList) obj;
+ return patternList.equals(other.patternList);
+ }
+
+ /**
+ * Returns a string that matches any of the patterns in the list.
+ * The patterns are joined with the '|' operator to create a single regex string.
+ */
+ @Override
+ public String pattern() {
+ if (patternList.isEmpty()) {
+ return "";
+ }
+ if (patternList.size() == 1) {
+ return patternList.get(0).pattern();
+ }
+ return "(\"" + patternList.stream().map(RLikePattern::pattern).collect(Collectors.joining("\", \"")) + "\")";
+ }
+}
diff --git a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClustersIT.java b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClustersIT.java
index a7eeef8e823a2..8fe2a5969a6a3 100644
--- a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClustersIT.java
+++ b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClustersIT.java
@@ -164,25 +164,24 @@ private Map runEsql(RestEsqlTestCase.RequestObjectBuilder reques
}
}
- private void assertResultMapForLike(
+ private void assertResultMapWithCapabilities(
boolean includeCCSMetadata,
Map result,
C columns,
V values,
boolean remoteOnly,
- boolean requireLikeListCapability
+ List fullResultCapabilities
) throws IOException {
- List requiredCapabilities = new ArrayList<>(List.of("like_on_index_fields"));
- if (requireLikeListCapability) {
- requiredCapabilities.add("like_list_on_index_fields");
- }
// the feature is completely supported if both local and remote clusters support it
- boolean isSupported = capabilitiesSupportedNewAndOld(requiredCapabilities);
-
+ // otherwise we expect a partial result, and will not check the data
+ boolean isSupported = capabilitiesSupportedNewAndOld(fullResultCapabilities);
if (isSupported) {
assertResultMap(includeCCSMetadata, result, columns, values, remoteOnly);
} else {
- logger.info("--> skipping data check for like index test, cluster does not support like index feature");
+ logger.info(
+ "--> skipping data check for a test, cluster does not support all of [{}] capabilities",
+ String.join(",", fullResultCapabilities)
+ );
// just verify that we did not get a partial result
var clusters = result.get("_clusters");
var reason = "unexpected partial results" + (clusters != null ? ": _clusters=" + clusters : "");
@@ -427,7 +426,7 @@ public void testLikeIndex() throws Exception {
""", includeCCSMetadata);
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
var values = List.of(List.of(remoteDocs.size(), REMOTE_CLUSTER_NAME + ":" + remoteIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, false);
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
}
public void testLikeIndexLegacySettingNoResults() throws Exception {
@@ -449,7 +448,7 @@ public void testLikeIndexLegacySettingNoResults() throws Exception {
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
// we expect empty result, since the setting is false
var values = List.of();
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, false);
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
}
}
@@ -473,7 +472,7 @@ public void testLikeIndexLegacySettingResults() throws Exception {
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
// we expect results, since the setting is false, but there is : in the LIKE query
var values = List.of(List.of(remoteDocs.size(), REMOTE_CLUSTER_NAME + ":" + remoteIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, false);
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
}
}
@@ -487,7 +486,7 @@ public void testNotLikeIndex() throws Exception {
""", includeCCSMetadata);
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
var values = List.of(List.of(localDocs.size(), localIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, false);
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
}
public void testLikeListIndex() throws Exception {
@@ -502,7 +501,14 @@ public void testLikeListIndex() throws Exception {
""", includeCCSMetadata);
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
var values = List.of(List.of(remoteDocs.size(), REMOTE_CLUSTER_NAME + ":" + remoteIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, true);
+ assertResultMapWithCapabilities(
+ includeCCSMetadata,
+ result,
+ columns,
+ values,
+ false,
+ List.of("like_on_index_fields", "like_list_on_index_fields")
+ );
}
public void testNotLikeListIndex() throws Exception {
@@ -516,7 +522,14 @@ public void testNotLikeListIndex() throws Exception {
""", includeCCSMetadata);
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
var values = List.of(List.of(localDocs.size(), localIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, true);
+ assertResultMapWithCapabilities(
+ includeCCSMetadata,
+ result,
+ columns,
+ values,
+ false,
+ List.of("like_on_index_fields", "like_list_on_index_fields")
+ );
}
public void testNotLikeListKeyword() throws Exception {
@@ -540,7 +553,14 @@ public void testNotLikeListKeyword() throws Exception {
if (localCount > 0) {
values.add(List.of(localCount, localIndex));
}
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, true);
+ assertResultMapWithCapabilities(
+ includeCCSMetadata,
+ result,
+ columns,
+ values,
+ false,
+ List.of("like_on_index_fields", "like_list_on_index_fields")
+ );
}
public void testRLikeIndex() throws Exception {
@@ -553,7 +573,7 @@ public void testRLikeIndex() throws Exception {
""", includeCCSMetadata);
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
var values = List.of(List.of(remoteDocs.size(), REMOTE_CLUSTER_NAME + ":" + remoteIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, false);
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
}
public void testNotRLikeIndex() throws Exception {
@@ -566,7 +586,37 @@ public void testNotRLikeIndex() throws Exception {
""", includeCCSMetadata);
var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
var values = List.of(List.of(localDocs.size(), localIndex));
- assertResultMapForLike(includeCCSMetadata, result, columns, values, false, false);
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
+ }
+
+ public void testRLikeListIndex() throws Exception {
+ assumeTrue("not supported", capabilitiesSupportedNewAndOld(List.of("rlike_with_list_of_patterns")));
+ boolean includeCCSMetadata = includeCCSMetadata();
+ Map result = run("""
+ FROM test-local-index,*:test-remote-index METADATA _index
+ | WHERE _index RLIKE (".*remote.*", ".*not-exist.*")
+ | STATS c = COUNT(*) BY _index
+ | SORT _index ASC
+ """, includeCCSMetadata);
+ var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
+ var values = List.of(List.of(remoteDocs.size(), REMOTE_CLUSTER_NAME + ":" + remoteIndex));
+ // we depend on the code in like_on_index_fields to serialize an ExpressionQueryBuilder
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
+ }
+
+ public void testNotRLikeListIndex() throws Exception {
+ assumeTrue("not supported", capabilitiesSupportedNewAndOld(List.of("rlike_with_list_of_patterns")));
+ boolean includeCCSMetadata = includeCCSMetadata();
+ Map result = run("""
+ FROM test-local-index,*:test-remote-index METADATA _index
+ | WHERE _index NOT RLIKE (".*remote.*", ".*not-exist.*")
+ | STATS c = COUNT(*) BY _index
+ | SORT _index ASC
+ """, includeCCSMetadata);
+ var columns = List.of(Map.of("name", "c", "type", "long"), Map.of("name", "_index", "type", "keyword"));
+ var values = List.of(List.of(localDocs.size(), localIndex));
+ // we depend on the code in like_on_index_fields to serialize an ExpressionQueryBuilder
+ assertResultMapWithCapabilities(includeCCSMetadata, result, columns, values, false, List.of("like_on_index_fields"));
}
private RestClient remoteClusterClient() throws IOException {
diff --git a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/PushQueriesIT.java b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/PushQueriesIT.java
index 56687d0585ff0..c0c3afd061be1 100644
--- a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/PushQueriesIT.java
+++ b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/PushQueriesIT.java
@@ -275,6 +275,42 @@ public void testLikeList() throws IOException {
testPushQuery(value, esqlQuery, List.of(luceneQuery), dataNodeSignature, true);
}
+ public void testRLike() throws IOException {
+ String value = "v".repeat(between(1, 256));
+ String esqlQuery = """
+ FROM test
+ | WHERE test rlike "%value.*"
+ """;
+ String luceneQuery = switch (type) {
+ case KEYWORD -> "test:/%value.*/";
+ case CONSTANT_KEYWORD, MATCH_ONLY_TEXT_WITH_KEYWORD, AUTO, TEXT_WITH_KEYWORD -> "*:*";
+ case SEMANTIC_TEXT_WITH_KEYWORD -> "FieldExistsQuery [field=_primary_term]";
+ };
+ ComputeSignature dataNodeSignature = switch (type) {
+ case CONSTANT_KEYWORD, KEYWORD -> ComputeSignature.FILTER_IN_QUERY;
+ case AUTO, TEXT_WITH_KEYWORD, MATCH_ONLY_TEXT_WITH_KEYWORD, SEMANTIC_TEXT_WITH_KEYWORD -> ComputeSignature.FILTER_IN_COMPUTE;
+ };
+ testPushQuery(value, esqlQuery, List.of(luceneQuery), dataNodeSignature, true);
+ }
+
+ public void testRLikeList() throws IOException {
+ String value = "v".repeat(between(1, 256));
+ String esqlQuery = """
+ FROM test
+ | WHERE test rlike ("%value.*", "abc.*")
+ """;
+ String luceneQuery = switch (type) {
+ case CONSTANT_KEYWORD, MATCH_ONLY_TEXT_WITH_KEYWORD, AUTO, TEXT_WITH_KEYWORD -> "*:*";
+ case SEMANTIC_TEXT_WITH_KEYWORD -> "FieldExistsQuery [field=_primary_term]";
+ case KEYWORD -> "test:RLIKE(\"%value.*\", \"abc.*\"), caseInsensitive=false";
+ };
+ ComputeSignature dataNodeSignature = switch (type) {
+ case CONSTANT_KEYWORD, KEYWORD -> ComputeSignature.FILTER_IN_QUERY;
+ case AUTO, TEXT_WITH_KEYWORD, MATCH_ONLY_TEXT_WITH_KEYWORD, SEMANTIC_TEXT_WITH_KEYWORD -> ComputeSignature.FILTER_IN_COMPUTE;
+ };
+ testPushQuery(value, esqlQuery, List.of(luceneQuery), dataNodeSignature, true);
+ }
+
enum ComputeSignature {
FILTER_IN_COMPUTE(
matchesList().item("LuceneSourceOperator")
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/where-like.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/where-like.csv-spec
index 0cc5cfe95db94..6ee2987057f00 100644
--- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/where-like.csv-spec
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/where-like.csv-spec
@@ -534,6 +534,458 @@ emp_no:integer | first_name:keyword
10055 | Georgy
;
+rlikeListEmptyArgWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike ("")
+| KEEP emp_no, first_name;
+
+emp_no:integer | first_name:keyword
+;
+
+rlikeListSingleArgWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name RLIKE ("Eberhardt.*")
+| KEEP emp_no, first_name;
+
+emp_no:integer | first_name:keyword
+10013 | Eberhardt
+;
+
+rlikeListTwoArgWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike ("Eberhardt.*", "testString.*")
+| KEEP emp_no, first_name;
+
+emp_no:integer | first_name:keyword
+10013 | Eberhardt
+;
+
+rlikeListDocExample
+required_capability: rlike_with_list_of_patterns
+// tag::rlikeListDocExample[]
+ROW message = "foobar"
+| WHERE message RLIKE ("foo.*", "bar.")
+// end::rlikeListDocExample[]
+;
+
+message:string
+foobar
+;
+
+rlikeListThreeArgWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike ("Eberhardt.*", "Ot.*", "Part.")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10003 | Parto
+10013 | Eberhardt
+10029 | Otmar
+;
+
+rlikeListMultipleWhere
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name RLIKE ("Eberhardt.*", "Ot.*", "Part.")
+| WHERE first_name RLIKE ("Eberhard.", "Otm.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10013 | Eberhardt
+10029 | Otmar
+;
+
+rlikeListAllWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike (".*")
+| KEEP emp_no, first_name
+| SORT emp_no
+| LIMIT 2;
+
+emp_no:integer | first_name:keyword
+10001 | Georgi
+10002 | Bezalel
+;
+
+rlikeListOverlappingPatterns
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike ("Eber.*", "Eberhardt")
+| KEEP emp_no, first_name;
+
+emp_no:integer | first_name:keyword
+10013 | Eberhardt
+;
+
+rlikeListCaseSensitive
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name RLIKE ("eberhardt", "EBERHARDT")
+| KEEP emp_no, first_name;
+
+emp_no:integer | first_name:keyword
+;
+
+rlikeListSpecialCharacters
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike (".*ar.*", ".*eor.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10001 | Georgi
+10003 | Parto
+10011 | Mary
+10013 | Eberhardt
+10029 | Otmar
+10055 | Georgy
+10058 | Berhard
+10068 | Charlene
+10069 | Margareta
+10074 | Mokhtar
+10082 | Parviz
+10089 | Sudharsan
+10095 | Hilari
+;
+
+rlikeListEscapedWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike ("Eberhar\\*")
+| KEEP emp_no, first_name;
+
+emp_no:integer | first_name:keyword
+;
+
+rlikeListNineOrMoreLetters
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike (".{9,}.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10004 | Chirstian
+10010 | Duangkaew
+10013 | Eberhardt
+10017 | Cristinel
+10025 | Prasadram
+10059 | Alejandro
+10069 | Margareta
+10089 | Sudharsan
+10092 | Valdiodio
+10098 | Sreekrishna
+;
+
+notRlikeListThreeArgWildcardNotOtherFilter
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name not rlike ("Eberhardt.*", "Ot.*", "Part.") and emp_no < 10010
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10001 | Georgi
+10002 | Bezalel
+10004 | Chirstian
+10005 | Kyoichi
+10006 | Anneke
+10007 | Tzvetan
+10008 | Saniya
+10009 | Sumant
+;
+
+rlikeListBeginningWithWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name rlike ("A.*", "B.*", "C.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10002 | Bezalel
+10004 | Chirstian
+10006 | Anneke
+10014 | Berni
+10017 | Cristinel
+10023 | Bojan
+10049 | Basil
+10056 | Brendon
+10058 | Berhard
+10059 | Alejandro
+10060 | Breannda
+10062 | Anoosh
+10067 | Claudi
+10068 | Charlene
+10091 | Amabile
+10094 | Arumugam
+;
+
+notRlikeListThreeArgWildcardOtherFirst
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE emp_no < 10010 and first_name not rlike ("Eberhardt.*", "Ot.*", "Part.")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10001 | Georgi
+10002 | Bezalel
+10004 | Chirstian
+10005 | Kyoichi
+10006 | Anneke
+10007 | Tzvetan
+10008 | Saniya
+10009 | Sumant
+;
+
+notRlikeFiveOrLessLetters
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name not rlike (".{6,}.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10003 | Parto
+10011 | Mary
+10014 | Berni
+10021 | Ramzi
+10023 | Bojan
+10029 | Otmar
+10040 | Weiyi
+10041 | Uri
+10042 | Magy
+10045 | Moss
+10049 | Basil
+10057 | Ebbe
+10061 | Tse
+10063 | Gino
+10064 | Udi
+10066 | Kwee
+10071 | Hisao
+10073 | Shir
+10075 | Gao
+10076 | Erez
+10077 | Mona
+10078 | Danel
+10083 | Vishv
+10084 | Tuval
+10097 | Remzi
+;
+
+notRlikeListMultipleWhere
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name NOT RLIKE ("Eberhardt.*", "Ot.*", "Part.", "A.*", "B.*", "C.*", "D.*")
+| WHERE first_name NOT RLIKE ("Eberhard.", "Otm.*", "F.*", "G.*", "H.*", "I.*", "J.*", "K.*", "L.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10007 | Tzvetan
+10008 | Saniya
+10009 | Sumant
+10011 | Mary
+10012 | Patricio
+10020 | Mayuko
+10021 | Ramzi
+10022 | Shahaf
+10024 | Suzette
+10025 | Prasadram
+10026 | Yongqiao
+10040 | Weiyi
+10041 | Uri
+10042 | Magy
+10043 | Yishay
+10044 | Mingsen
+10045 | Moss
+10047 | Zvonko
+10050 | Yinghua
+10053 | Sanjiv
+10054 | Mayumi
+10057 | Ebbe
+10061 | Tse
+10064 | Udi
+10065 | Satosi
+10069 | Margareta
+10070 | Reuven
+10073 | Shir
+10074 | Mokhtar
+10076 | Erez
+10077 | Mona
+10080 | Premal
+10081 | Zhongwei
+10082 | Parviz
+10083 | Vishv
+10084 | Tuval
+10086 | Somnath
+10087 | Xinglin
+10089 | Sudharsan
+10092 | Valdiodio
+10093 | Sailaja
+10097 | Remzi
+10098 | Sreekrishna
+10099 | Valter
+;
+
+notRlikeListNotField
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE NOT first_name RLIKE ("Eberhardt.*", "Ot.*", "Part.", "A.*", "B.*", "C.*", "D.*")
+| WHERE first_name NOT RLIKE ("Eberhard.", "Otm.*", "F.*", "G.*", "H.*", "I.*", "J.*", "K.*", "L.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10007 | Tzvetan
+10008 | Saniya
+10009 | Sumant
+10011 | Mary
+10012 | Patricio
+10020 | Mayuko
+10021 | Ramzi
+10022 | Shahaf
+10024 | Suzette
+10025 | Prasadram
+10026 | Yongqiao
+10040 | Weiyi
+10041 | Uri
+10042 | Magy
+10043 | Yishay
+10044 | Mingsen
+10045 | Moss
+10047 | Zvonko
+10050 | Yinghua
+10053 | Sanjiv
+10054 | Mayumi
+10057 | Ebbe
+10061 | Tse
+10064 | Udi
+10065 | Satosi
+10069 | Margareta
+10070 | Reuven
+10073 | Shir
+10074 | Mokhtar
+10076 | Erez
+10077 | Mona
+10080 | Premal
+10081 | Zhongwei
+10082 | Parviz
+10083 | Vishv
+10084 | Tuval
+10086 | Somnath
+10087 | Xinglin
+10089 | Sudharsan
+10092 | Valdiodio
+10093 | Sailaja
+10097 | Remzi
+10098 | Sreekrishna
+10099 | Valter
+;
+
+notRlikeListAllWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name NOT RLIKE (".*")
+| KEEP emp_no, first_name
+| SORT emp_no
+| LIMIT 2;
+
+emp_no:integer | first_name:keyword
+10030 | null
+10031 | null
+;
+
+notRlikeListWildcard
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE first_name NOT RLIKE ("A.*","B.*", "C.*", "D.*","E.*", "F.*", "G.*", "H.*", "I.*", "J.*", "K.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10003 | Parto
+10007 | Tzvetan
+10008 | Saniya
+10009 | Sumant
+10011 | Mary
+10012 | Patricio
+10019 | Lillian
+10020 | Mayuko
+10021 | Ramzi
+10022 | Shahaf
+10024 | Suzette
+10025 | Prasadram
+10026 | Yongqiao
+10029 | Otmar
+10040 | Weiyi
+10041 | Uri
+10042 | Magy
+10043 | Yishay
+10044 | Mingsen
+10045 | Moss
+10046 | Lucien
+10047 | Zvonko
+10050 | Yinghua
+10053 | Sanjiv
+10054 | Mayumi
+10061 | Tse
+10064 | Udi
+10065 | Satosi
+10069 | Margareta
+10070 | Reuven
+10073 | Shir
+10074 | Mokhtar
+10077 | Mona
+10080 | Premal
+10081 | Zhongwei
+10082 | Parviz
+10083 | Vishv
+10084 | Tuval
+10086 | Somnath
+10087 | Xinglin
+10089 | Sudharsan
+10092 | Valdiodio
+10093 | Sailaja
+10097 | Remzi
+10098 | Sreekrishna
+10099 | Valter
+;
+
+rlikeListWithUpperTurnedInsensitive
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE TO_UPPER(first_name) RLIKE ("GEOR.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10001 | Georgi
+10055 | Georgy
+;
+
+rlikeListWithUpperTurnedInsensitiveMult
+required_capability: rlike_with_list_of_patterns
+FROM employees
+| WHERE TO_UPPER(first_name) RLIKE ("GEOR.*", "WE.*")
+| KEEP emp_no, first_name
+| SORT emp_no;
+
+emp_no:integer | first_name:keyword
+10001 | Georgi
+10040 | Weiyi
+10055 | Georgy
+;
+
likeAll
from employees | where first_name like "*" and emp_no > 10028 | sort emp_no | keep emp_no, first_name | limit 2;
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index 569c9fca5f440..e3517b65b70f3 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -80,6 +80,7 @@ regexBooleanExpression
: valueExpression (NOT)? LIKE string #likeExpression
| valueExpression (NOT)? RLIKE string #rlikeExpression
| valueExpression (NOT)? LIKE LP string (COMMA string )* RP #likeListExpression
+ | valueExpression (NOT)? RLIKE LP string (COMMA string )* RP #rlikeListExpression
;
matchBooleanExpression
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 73bbd2d4199d0..a459ebe0a3e23 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
@@ -989,6 +989,9 @@ public enum Cap {
/**
* Support for LIKE operator with a list of patterns
*/
+ /**
+ * Support for the LIKE operator with a list of wildcards.
+ */
LIKE_WITH_LIST_OF_PATTERNS,
LIKE_LIST_ON_INDEX_FIELDS,
@@ -1017,6 +1020,10 @@ public enum Cap {
NO_PLAIN_STRINGS_IN_LITERALS,
/**
+ /**
+ * Support for the RLIKE operator with a list of regexes.
+ */
+ RLIKE_WITH_LIST_OF_PATTERNS,
/**
* Support improved behavior for LIKE operator when used with index fields.
*/
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/ExpressionWritables.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/ExpressionWritables.java
index 901f364a60041..53787508779a2 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/ExpressionWritables.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/ExpressionWritables.java
@@ -82,6 +82,7 @@
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Space;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Trim;
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.scalar.util.Delay;
@@ -182,6 +183,7 @@ public static List unaryScalars() {
entries.add(Neg.ENTRY);
entries.add(Not.ENTRY);
entries.add(RLike.ENTRY);
+ entries.add(RLikeList.ENTRY);
entries.add(RTrim.ENTRY);
entries.add(Scalb.ENTRY);
entries.add(Signum.ENTRY);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLikeList.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLikeList.java
new file mode 100644
index 0000000000000..3112cfcd47c93
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/regex/RLikeList.java
@@ -0,0 +1,158 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.expression.function.scalar.string.regex;
+
+import org.apache.lucene.search.MultiTermQuery;
+import org.apache.lucene.util.automaton.Automaton;
+import org.apache.lucene.util.automaton.CharacterRunAutomaton;
+import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.index.mapper.MappedFieldType;
+import org.elasticsearch.index.query.SearchExecutionContext;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.FieldAttribute;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePattern;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
+import org.elasticsearch.xpack.esql.core.querydsl.query.Query;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.expression.function.Param;
+import org.elasticsearch.xpack.esql.io.stream.ExpressionQuery;
+import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
+import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.LucenePushdownPredicates;
+import org.elasticsearch.xpack.esql.planner.TranslatorHandler;
+
+import java.io.IOException;
+import java.util.function.Supplier;
+import java.util.stream.Collectors;
+
+public class RLikeList extends RegexMatch {
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
+ Expression.class,
+ "RLikeList",
+ RLikeList::new
+ );
+
+ Supplier automatonSupplier = new Supplier<>() {
+ Automaton cached;
+
+ @Override
+ public Automaton get() {
+ if (cached == null) {
+ cached = pattern().createAutomaton(caseInsensitive());
+ }
+ return cached;
+ }
+ };
+
+ Supplier characterRunAutomatonSupplier = new Supplier<>() {
+ CharacterRunAutomaton cached;
+
+ @Override
+ public CharacterRunAutomaton get() {
+ if (cached == null) {
+ cached = new CharacterRunAutomaton(automatonSupplier.get());
+ }
+ return cached;
+ }
+ };
+
+ /**
+ * The documentation for this function is in RLike, and shown to the users as `RLIKE` in the docs.
+ */
+ public RLikeList(
+ Source source,
+ @Param(name = "str", type = { "keyword", "text" }, description = "A literal value.") Expression value,
+ @Param(name = "patterns", type = { "keyword", "text" }, description = "A list of regular expressions.") RLikePatternList patterns
+ ) {
+ this(source, value, patterns, false);
+ }
+
+ public RLikeList(Source source, Expression field, RLikePatternList rLikePattern, boolean caseInsensitive) {
+ super(source, field, rLikePattern, caseInsensitive);
+ }
+
+ private RLikeList(StreamInput in) throws IOException {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(Expression.class),
+ new RLikePatternList(in),
+ deserializeCaseInsensitivity(in)
+ );
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ source().writeTo(out);
+ out.writeNamedWriteable(field());
+ pattern().writeTo(out);
+ serializeCaseInsensitivity(out);
+ }
+
+ @Override
+ public String name() {
+ return ENTRY.name;
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ protected RLikeList replaceChild(Expression newChild) {
+ return new RLikeList(source(), newChild, pattern(), caseInsensitive());
+ }
+
+ @Override
+ public Translatable translatable(LucenePushdownPredicates pushdownPredicates) {
+ return pushdownPredicates.isPushableAttribute(field()) ? Translatable.YES : Translatable.NO;
+ }
+
+ /**
+ * Returns a {@link Query} that matches the field against the provided patterns.
+ * For now, we only support a single pattern in the list for pushdown.
+ */
+ @Override
+ public Query asQuery(LucenePushdownPredicates pushdownPredicates, TranslatorHandler handler) {
+ var field = field();
+ LucenePushdownPredicates.checkIsPushableAttribute(field);
+ return translateField(handler.nameOf(field instanceof FieldAttribute fa ? fa.exactAttribute() : field));
+ }
+
+ private Query translateField(String targetFieldName) {
+ return new ExpressionQuery(source(), targetFieldName, this);
+ }
+
+ @Override
+ public org.apache.lucene.search.Query asLuceneQuery(
+ MappedFieldType fieldType,
+ MultiTermQuery.RewriteMethod constantScoreRewrite,
+ SearchExecutionContext context
+ ) {
+ return fieldType.automatonQuery(
+ automatonSupplier,
+ characterRunAutomatonSupplier,
+ constantScoreRewrite,
+ context,
+ getLuceneQueryDescription()
+ );
+ }
+
+ @Override
+ protected NodeInfo extends Expression> info() {
+ return NodeInfo.create(this, RLikeList::new, field(), pattern(), caseInsensitive());
+ }
+
+ private String getLuceneQueryDescription() {
+ // we use the information used to create the automaton to describe the query here
+ String patternDesc = pattern().patternList().stream().map(RLikePattern::pattern).collect(Collectors.joining("\", \""));
+ return "RLIKE(\"" + patternDesc + "\"), caseInsensitive=" + caseInsensitive();
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceStringCasingWithInsensitiveRegexMatch.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceStringCasingWithInsensitiveRegexMatch.java
index 50b040bf0147e..b97fa647de6c1 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceStringCasingWithInsensitiveRegexMatch.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ReplaceStringCasingWithInsensitiveRegexMatch.java
@@ -9,6 +9,7 @@
import org.elasticsearch.xpack.esql.core.expression.Expression;
import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RegexMatch;
import org.elasticsearch.xpack.esql.core.expression.predicate.regex.StringPattern;
import org.elasticsearch.xpack.esql.core.expression.predicate.regex.WildcardPatternList;
@@ -29,8 +30,8 @@ public ReplaceStringCasingWithInsensitiveRegexMatch() {
@Override
protected Expression rule(RegexMatch extends StringPattern> regexMatch, LogicalOptimizerContext unused) {
Expression e = regexMatch;
- if (regexMatch.pattern() instanceof WildcardPatternList) {
- // This optimization is not supported for WildcardPatternList for now
+ if (regexMatch.pattern() instanceof WildcardPatternList || regexMatch.pattern() instanceof RLikePatternList) {
+ // This optimization is not supported for WildcardPatternList and RLikePatternList for now
return e;
}
if (regexMatch.field() instanceof ChangeCase changeCase) {
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 1bcb0a00147e8..440ae52e2aff6 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
@@ -367,4 +367,4 @@ completionCommand
atn:
-[4, 1, 139, 786, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 172, 8, 1, 10, 1, 12, 1, 175, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 183, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 207, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 219, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 226, 8, 5, 10, 5, 12, 5, 229, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 236, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 241, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 249, 8, 5, 10, 5, 12, 5, 252, 9, 5, 1, 6, 1, 6, 3, 6, 256, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 263, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 277, 8, 6, 10, 6, 12, 6, 280, 9, 6, 1, 6, 1, 6, 3, 6, 284, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 289, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 299, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 305, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 313, 8, 9, 10, 9, 12, 9, 316, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 326, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 331, 8, 10, 10, 10, 12, 10, 334, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 342, 8, 11, 10, 11, 12, 11, 345, 9, 11, 1, 11, 1, 11, 3, 11, 349, 8, 11, 3, 11, 351, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 361, 8, 13, 10, 13, 12, 13, 364, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 380, 8, 17, 10, 17, 12, 17, 383, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 388, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 395, 8, 19, 10, 19, 12, 19, 398, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 403, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 409, 8, 21, 10, 21, 12, 21, 412, 9, 21, 1, 21, 3, 21, 415, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 426, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 438, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 444, 8, 28, 10, 28, 12, 28, 447, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 457, 8, 30, 10, 30, 12, 30, 460, 9, 30, 1, 30, 3, 30, 463, 8, 30, 1, 30, 1, 30, 3, 30, 467, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 474, 8, 32, 1, 32, 1, 32, 3, 32, 478, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 483, 8, 33, 10, 33, 12, 33, 486, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 491, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 496, 8, 35, 10, 35, 12, 35, 499, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 504, 8, 36, 10, 36, 12, 36, 507, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 512, 8, 37, 10, 37, 12, 37, 515, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 522, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 537, 8, 40, 10, 40, 12, 40, 540, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 548, 8, 40, 10, 40, 12, 40, 551, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 559, 8, 40, 10, 40, 12, 40, 562, 9, 40, 1, 40, 1, 40, 3, 40, 566, 8, 40, 1, 41, 1, 41, 3, 41, 570, 8, 41, 1, 42, 1, 42, 3, 42, 574, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 579, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 588, 8, 45, 10, 45, 12, 45, 591, 9, 45, 1, 46, 1, 46, 3, 46, 595, 8, 46, 1, 46, 1, 46, 3, 46, 599, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 611, 8, 49, 10, 49, 12, 49, 614, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 624, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 630, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 642, 8, 54, 10, 54, 12, 54, 645, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 655, 8, 57, 1, 58, 3, 58, 658, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 663, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 685, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 691, 8, 65, 10, 65, 12, 65, 694, 9, 65, 3, 65, 696, 8, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 3, 67, 703, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 711, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 718, 8, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 732, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 745, 8, 74, 10, 74, 12, 74, 748, 9, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 5, 76, 755, 8, 76, 10, 76, 12, 76, 758, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 3, 78, 766, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 774, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 780, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 0, 4, 2, 10, 18, 20, 81, 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, 0, 10, 1, 0, 69, 70, 1, 0, 71, 73, 2, 0, 33, 33, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 33, 33, 102, 102, 2, 0, 19, 19, 26, 27, 817, 0, 162, 1, 0, 0, 0, 2, 165, 1, 0, 0, 0, 4, 182, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 8, 208, 1, 0, 0, 0, 10, 240, 1, 0, 0, 0, 12, 283, 1, 0, 0, 0, 14, 285, 1, 0, 0, 0, 16, 298, 1, 0, 0, 0, 18, 304, 1, 0, 0, 0, 20, 325, 1, 0, 0, 0, 22, 335, 1, 0, 0, 0, 24, 354, 1, 0, 0, 0, 26, 356, 1, 0, 0, 0, 28, 367, 1, 0, 0, 0, 30, 371, 1, 0, 0, 0, 32, 373, 1, 0, 0, 0, 34, 376, 1, 0, 0, 0, 36, 387, 1, 0, 0, 0, 38, 391, 1, 0, 0, 0, 40, 399, 1, 0, 0, 0, 42, 404, 1, 0, 0, 0, 44, 425, 1, 0, 0, 0, 46, 427, 1, 0, 0, 0, 48, 429, 1, 0, 0, 0, 50, 431, 1, 0, 0, 0, 52, 433, 1, 0, 0, 0, 54, 437, 1, 0, 0, 0, 56, 439, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 452, 1, 0, 0, 0, 62, 468, 1, 0, 0, 0, 64, 471, 1, 0, 0, 0, 66, 479, 1, 0, 0, 0, 68, 487, 1, 0, 0, 0, 70, 492, 1, 0, 0, 0, 72, 500, 1, 0, 0, 0, 74, 508, 1, 0, 0, 0, 76, 516, 1, 0, 0, 0, 78, 521, 1, 0, 0, 0, 80, 565, 1, 0, 0, 0, 82, 569, 1, 0, 0, 0, 84, 573, 1, 0, 0, 0, 86, 578, 1, 0, 0, 0, 88, 580, 1, 0, 0, 0, 90, 583, 1, 0, 0, 0, 92, 592, 1, 0, 0, 0, 94, 600, 1, 0, 0, 0, 96, 603, 1, 0, 0, 0, 98, 606, 1, 0, 0, 0, 100, 623, 1, 0, 0, 0, 102, 625, 1, 0, 0, 0, 104, 631, 1, 0, 0, 0, 106, 635, 1, 0, 0, 0, 108, 638, 1, 0, 0, 0, 110, 646, 1, 0, 0, 0, 112, 650, 1, 0, 0, 0, 114, 654, 1, 0, 0, 0, 116, 657, 1, 0, 0, 0, 118, 662, 1, 0, 0, 0, 120, 666, 1, 0, 0, 0, 122, 668, 1, 0, 0, 0, 124, 670, 1, 0, 0, 0, 126, 673, 1, 0, 0, 0, 128, 677, 1, 0, 0, 0, 130, 680, 1, 0, 0, 0, 132, 697, 1, 0, 0, 0, 134, 702, 1, 0, 0, 0, 136, 706, 1, 0, 0, 0, 138, 719, 1, 0, 0, 0, 140, 722, 1, 0, 0, 0, 142, 727, 1, 0, 0, 0, 144, 733, 1, 0, 0, 0, 146, 738, 1, 0, 0, 0, 148, 740, 1, 0, 0, 0, 150, 749, 1, 0, 0, 0, 152, 751, 1, 0, 0, 0, 154, 759, 1, 0, 0, 0, 156, 765, 1, 0, 0, 0, 158, 767, 1, 0, 0, 0, 160, 775, 1, 0, 0, 0, 162, 163, 3, 2, 1, 0, 163, 164, 5, 0, 0, 1, 164, 1, 1, 0, 0, 0, 165, 166, 6, 1, -1, 0, 166, 167, 3, 4, 2, 0, 167, 173, 1, 0, 0, 0, 168, 169, 10, 1, 0, 0, 169, 170, 5, 32, 0, 0, 170, 172, 3, 6, 3, 0, 171, 168, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 3, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 183, 3, 124, 62, 0, 177, 183, 3, 42, 21, 0, 178, 183, 3, 32, 16, 0, 179, 183, 3, 128, 64, 0, 180, 181, 4, 2, 1, 0, 181, 183, 3, 60, 30, 0, 182, 176, 1, 0, 0, 0, 182, 177, 1, 0, 0, 0, 182, 178, 1, 0, 0, 0, 182, 179, 1, 0, 0, 0, 182, 180, 1, 0, 0, 0, 183, 5, 1, 0, 0, 0, 184, 207, 3, 62, 31, 0, 185, 207, 3, 8, 4, 0, 186, 207, 3, 94, 47, 0, 187, 207, 3, 88, 44, 0, 188, 207, 3, 64, 32, 0, 189, 207, 3, 90, 45, 0, 190, 207, 3, 96, 48, 0, 191, 207, 3, 98, 49, 0, 192, 207, 3, 102, 51, 0, 193, 207, 3, 104, 52, 0, 194, 207, 3, 130, 65, 0, 195, 207, 3, 106, 53, 0, 196, 207, 3, 144, 72, 0, 197, 207, 3, 136, 68, 0, 198, 207, 3, 160, 80, 0, 199, 207, 3, 138, 69, 0, 200, 201, 4, 3, 2, 0, 201, 207, 3, 142, 71, 0, 202, 203, 4, 3, 3, 0, 203, 207, 3, 140, 70, 0, 204, 205, 4, 3, 4, 0, 205, 207, 3, 158, 79, 0, 206, 184, 1, 0, 0, 0, 206, 185, 1, 0, 0, 0, 206, 186, 1, 0, 0, 0, 206, 187, 1, 0, 0, 0, 206, 188, 1, 0, 0, 0, 206, 189, 1, 0, 0, 0, 206, 190, 1, 0, 0, 0, 206, 191, 1, 0, 0, 0, 206, 192, 1, 0, 0, 0, 206, 193, 1, 0, 0, 0, 206, 194, 1, 0, 0, 0, 206, 195, 1, 0, 0, 0, 206, 196, 1, 0, 0, 0, 206, 197, 1, 0, 0, 0, 206, 198, 1, 0, 0, 0, 206, 199, 1, 0, 0, 0, 206, 200, 1, 0, 0, 0, 206, 202, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 207, 7, 1, 0, 0, 0, 208, 209, 5, 18, 0, 0, 209, 210, 3, 10, 5, 0, 210, 9, 1, 0, 0, 0, 211, 212, 6, 5, -1, 0, 212, 213, 5, 52, 0, 0, 213, 241, 3, 10, 5, 8, 214, 241, 3, 16, 8, 0, 215, 241, 3, 12, 6, 0, 216, 218, 3, 16, 8, 0, 217, 219, 5, 52, 0, 0, 218, 217, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 5, 47, 0, 0, 221, 222, 5, 51, 0, 0, 222, 227, 3, 16, 8, 0, 223, 224, 5, 42, 0, 0, 224, 226, 3, 16, 8, 0, 225, 223, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 230, 231, 5, 59, 0, 0, 231, 241, 1, 0, 0, 0, 232, 233, 3, 16, 8, 0, 233, 235, 5, 48, 0, 0, 234, 236, 5, 52, 0, 0, 235, 234, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 5, 53, 0, 0, 238, 241, 1, 0, 0, 0, 239, 241, 3, 14, 7, 0, 240, 211, 1, 0, 0, 0, 240, 214, 1, 0, 0, 0, 240, 215, 1, 0, 0, 0, 240, 216, 1, 0, 0, 0, 240, 232, 1, 0, 0, 0, 240, 239, 1, 0, 0, 0, 241, 250, 1, 0, 0, 0, 242, 243, 10, 5, 0, 0, 243, 244, 5, 36, 0, 0, 244, 249, 3, 10, 5, 6, 245, 246, 10, 4, 0, 0, 246, 247, 5, 56, 0, 0, 247, 249, 3, 10, 5, 5, 248, 242, 1, 0, 0, 0, 248, 245, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 11, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 255, 3, 16, 8, 0, 254, 256, 5, 52, 0, 0, 255, 254, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 5, 50, 0, 0, 258, 259, 3, 120, 60, 0, 259, 284, 1, 0, 0, 0, 260, 262, 3, 16, 8, 0, 261, 263, 5, 52, 0, 0, 262, 261, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 5, 58, 0, 0, 265, 266, 3, 120, 60, 0, 266, 284, 1, 0, 0, 0, 267, 269, 3, 16, 8, 0, 268, 270, 5, 52, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 5, 50, 0, 0, 272, 273, 5, 51, 0, 0, 273, 278, 3, 120, 60, 0, 274, 275, 5, 42, 0, 0, 275, 277, 3, 120, 60, 0, 276, 274, 1, 0, 0, 0, 277, 280, 1, 0, 0, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281, 1, 0, 0, 0, 280, 278, 1, 0, 0, 0, 281, 282, 5, 59, 0, 0, 282, 284, 1, 0, 0, 0, 283, 253, 1, 0, 0, 0, 283, 260, 1, 0, 0, 0, 283, 267, 1, 0, 0, 0, 284, 13, 1, 0, 0, 0, 285, 288, 3, 70, 35, 0, 286, 287, 5, 40, 0, 0, 287, 289, 3, 30, 15, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 5, 41, 0, 0, 291, 292, 3, 80, 40, 0, 292, 15, 1, 0, 0, 0, 293, 299, 3, 18, 9, 0, 294, 295, 3, 18, 9, 0, 295, 296, 3, 122, 61, 0, 296, 297, 3, 18, 9, 0, 297, 299, 1, 0, 0, 0, 298, 293, 1, 0, 0, 0, 298, 294, 1, 0, 0, 0, 299, 17, 1, 0, 0, 0, 300, 301, 6, 9, -1, 0, 301, 305, 3, 20, 10, 0, 302, 303, 7, 0, 0, 0, 303, 305, 3, 18, 9, 3, 304, 300, 1, 0, 0, 0, 304, 302, 1, 0, 0, 0, 305, 314, 1, 0, 0, 0, 306, 307, 10, 2, 0, 0, 307, 308, 7, 1, 0, 0, 308, 313, 3, 18, 9, 3, 309, 310, 10, 1, 0, 0, 310, 311, 7, 0, 0, 0, 311, 313, 3, 18, 9, 2, 312, 306, 1, 0, 0, 0, 312, 309, 1, 0, 0, 0, 313, 316, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 19, 1, 0, 0, 0, 316, 314, 1, 0, 0, 0, 317, 318, 6, 10, -1, 0, 318, 326, 3, 80, 40, 0, 319, 326, 3, 70, 35, 0, 320, 326, 3, 22, 11, 0, 321, 322, 5, 51, 0, 0, 322, 323, 3, 10, 5, 0, 323, 324, 5, 59, 0, 0, 324, 326, 1, 0, 0, 0, 325, 317, 1, 0, 0, 0, 325, 319, 1, 0, 0, 0, 325, 320, 1, 0, 0, 0, 325, 321, 1, 0, 0, 0, 326, 332, 1, 0, 0, 0, 327, 328, 10, 1, 0, 0, 328, 329, 5, 40, 0, 0, 329, 331, 3, 30, 15, 0, 330, 327, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 21, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 335, 336, 3, 24, 12, 0, 336, 350, 5, 51, 0, 0, 337, 351, 5, 71, 0, 0, 338, 343, 3, 10, 5, 0, 339, 340, 5, 42, 0, 0, 340, 342, 3, 10, 5, 0, 341, 339, 1, 0, 0, 0, 342, 345, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 348, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 346, 347, 5, 42, 0, 0, 347, 349, 3, 26, 13, 0, 348, 346, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 351, 1, 0, 0, 0, 350, 337, 1, 0, 0, 0, 350, 338, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 353, 5, 59, 0, 0, 353, 23, 1, 0, 0, 0, 354, 355, 3, 86, 43, 0, 355, 25, 1, 0, 0, 0, 356, 357, 5, 74, 0, 0, 357, 362, 3, 28, 14, 0, 358, 359, 5, 42, 0, 0, 359, 361, 3, 28, 14, 0, 360, 358, 1, 0, 0, 0, 361, 364, 1, 0, 0, 0, 362, 360, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 365, 1, 0, 0, 0, 364, 362, 1, 0, 0, 0, 365, 366, 5, 75, 0, 0, 366, 27, 1, 0, 0, 0, 367, 368, 3, 120, 60, 0, 368, 369, 5, 41, 0, 0, 369, 370, 3, 80, 40, 0, 370, 29, 1, 0, 0, 0, 371, 372, 3, 76, 38, 0, 372, 31, 1, 0, 0, 0, 373, 374, 5, 13, 0, 0, 374, 375, 3, 34, 17, 0, 375, 33, 1, 0, 0, 0, 376, 381, 3, 36, 18, 0, 377, 378, 5, 42, 0, 0, 378, 380, 3, 36, 18, 0, 379, 377, 1, 0, 0, 0, 380, 383, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 35, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 385, 3, 70, 35, 0, 385, 386, 5, 38, 0, 0, 386, 388, 1, 0, 0, 0, 387, 384, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 390, 3, 10, 5, 0, 390, 37, 1, 0, 0, 0, 391, 396, 3, 40, 20, 0, 392, 393, 5, 42, 0, 0, 393, 395, 3, 40, 20, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 39, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 402, 3, 70, 35, 0, 400, 401, 5, 38, 0, 0, 401, 403, 3, 10, 5, 0, 402, 400, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 41, 1, 0, 0, 0, 404, 405, 5, 7, 0, 0, 405, 410, 3, 44, 22, 0, 406, 407, 5, 42, 0, 0, 407, 409, 3, 44, 22, 0, 408, 406, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 414, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 413, 415, 3, 54, 27, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 43, 1, 0, 0, 0, 416, 417, 3, 46, 23, 0, 417, 418, 5, 41, 0, 0, 418, 419, 3, 50, 25, 0, 419, 426, 1, 0, 0, 0, 420, 421, 3, 50, 25, 0, 421, 422, 5, 40, 0, 0, 422, 423, 3, 48, 24, 0, 423, 426, 1, 0, 0, 0, 424, 426, 3, 52, 26, 0, 425, 416, 1, 0, 0, 0, 425, 420, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 45, 1, 0, 0, 0, 427, 428, 5, 90, 0, 0, 428, 47, 1, 0, 0, 0, 429, 430, 5, 90, 0, 0, 430, 49, 1, 0, 0, 0, 431, 432, 5, 90, 0, 0, 432, 51, 1, 0, 0, 0, 433, 434, 7, 2, 0, 0, 434, 53, 1, 0, 0, 0, 435, 438, 3, 56, 28, 0, 436, 438, 3, 58, 29, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 55, 1, 0, 0, 0, 439, 440, 5, 89, 0, 0, 440, 445, 5, 90, 0, 0, 441, 442, 5, 42, 0, 0, 442, 444, 5, 90, 0, 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, 57, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 449, 5, 79, 0, 0, 449, 450, 3, 56, 28, 0, 450, 451, 5, 80, 0, 0, 451, 59, 1, 0, 0, 0, 452, 453, 5, 23, 0, 0, 453, 458, 3, 44, 22, 0, 454, 455, 5, 42, 0, 0, 455, 457, 3, 44, 22, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 462, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 463, 3, 66, 33, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 465, 5, 39, 0, 0, 465, 467, 3, 34, 17, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 61, 1, 0, 0, 0, 468, 469, 5, 5, 0, 0, 469, 470, 3, 34, 17, 0, 470, 63, 1, 0, 0, 0, 471, 473, 5, 17, 0, 0, 472, 474, 3, 66, 33, 0, 473, 472, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 477, 1, 0, 0, 0, 475, 476, 5, 39, 0, 0, 476, 478, 3, 34, 17, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 65, 1, 0, 0, 0, 479, 484, 3, 68, 34, 0, 480, 481, 5, 42, 0, 0, 481, 483, 3, 68, 34, 0, 482, 480, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 67, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 490, 3, 36, 18, 0, 488, 489, 5, 18, 0, 0, 489, 491, 3, 10, 5, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 69, 1, 0, 0, 0, 492, 497, 3, 86, 43, 0, 493, 494, 5, 44, 0, 0, 494, 496, 3, 86, 43, 0, 495, 493, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 71, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 505, 3, 78, 39, 0, 501, 502, 5, 44, 0, 0, 502, 504, 3, 78, 39, 0, 503, 501, 1, 0, 0, 0, 504, 507, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 73, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 513, 3, 72, 36, 0, 509, 510, 5, 42, 0, 0, 510, 512, 3, 72, 36, 0, 511, 509, 1, 0, 0, 0, 512, 515, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 75, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 516, 517, 7, 3, 0, 0, 517, 77, 1, 0, 0, 0, 518, 522, 5, 94, 0, 0, 519, 522, 3, 82, 41, 0, 520, 522, 3, 84, 42, 0, 521, 518, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 520, 1, 0, 0, 0, 522, 79, 1, 0, 0, 0, 523, 566, 5, 53, 0, 0, 524, 525, 3, 118, 59, 0, 525, 526, 5, 81, 0, 0, 526, 566, 1, 0, 0, 0, 527, 566, 3, 116, 58, 0, 528, 566, 3, 118, 59, 0, 529, 566, 3, 112, 56, 0, 530, 566, 3, 82, 41, 0, 531, 566, 3, 120, 60, 0, 532, 533, 5, 79, 0, 0, 533, 538, 3, 114, 57, 0, 534, 535, 5, 42, 0, 0, 535, 537, 3, 114, 57, 0, 536, 534, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 541, 542, 5, 80, 0, 0, 542, 566, 1, 0, 0, 0, 543, 544, 5, 79, 0, 0, 544, 549, 3, 112, 56, 0, 545, 546, 5, 42, 0, 0, 546, 548, 3, 112, 56, 0, 547, 545, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 553, 5, 80, 0, 0, 553, 566, 1, 0, 0, 0, 554, 555, 5, 79, 0, 0, 555, 560, 3, 120, 60, 0, 556, 557, 5, 42, 0, 0, 557, 559, 3, 120, 60, 0, 558, 556, 1, 0, 0, 0, 559, 562, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 563, 1, 0, 0, 0, 562, 560, 1, 0, 0, 0, 563, 564, 5, 80, 0, 0, 564, 566, 1, 0, 0, 0, 565, 523, 1, 0, 0, 0, 565, 524, 1, 0, 0, 0, 565, 527, 1, 0, 0, 0, 565, 528, 1, 0, 0, 0, 565, 529, 1, 0, 0, 0, 565, 530, 1, 0, 0, 0, 565, 531, 1, 0, 0, 0, 565, 532, 1, 0, 0, 0, 565, 543, 1, 0, 0, 0, 565, 554, 1, 0, 0, 0, 566, 81, 1, 0, 0, 0, 567, 570, 5, 57, 0, 0, 568, 570, 5, 77, 0, 0, 569, 567, 1, 0, 0, 0, 569, 568, 1, 0, 0, 0, 570, 83, 1, 0, 0, 0, 571, 574, 5, 76, 0, 0, 572, 574, 5, 78, 0, 0, 573, 571, 1, 0, 0, 0, 573, 572, 1, 0, 0, 0, 574, 85, 1, 0, 0, 0, 575, 579, 3, 76, 38, 0, 576, 579, 3, 82, 41, 0, 577, 579, 3, 84, 42, 0, 578, 575, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 577, 1, 0, 0, 0, 579, 87, 1, 0, 0, 0, 580, 581, 5, 10, 0, 0, 581, 582, 3, 80, 40, 0, 582, 89, 1, 0, 0, 0, 583, 584, 5, 16, 0, 0, 584, 589, 3, 92, 46, 0, 585, 586, 5, 42, 0, 0, 586, 588, 3, 92, 46, 0, 587, 585, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 587, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 91, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 592, 594, 3, 10, 5, 0, 593, 595, 7, 4, 0, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 598, 1, 0, 0, 0, 596, 597, 5, 54, 0, 0, 597, 599, 7, 5, 0, 0, 598, 596, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 93, 1, 0, 0, 0, 600, 601, 5, 9, 0, 0, 601, 602, 3, 74, 37, 0, 602, 95, 1, 0, 0, 0, 603, 604, 5, 3, 0, 0, 604, 605, 3, 74, 37, 0, 605, 97, 1, 0, 0, 0, 606, 607, 5, 12, 0, 0, 607, 612, 3, 100, 50, 0, 608, 609, 5, 42, 0, 0, 609, 611, 3, 100, 50, 0, 610, 608, 1, 0, 0, 0, 611, 614, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 99, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 615, 616, 3, 72, 36, 0, 616, 617, 5, 98, 0, 0, 617, 618, 3, 72, 36, 0, 618, 624, 1, 0, 0, 0, 619, 620, 3, 72, 36, 0, 620, 621, 5, 38, 0, 0, 621, 622, 3, 72, 36, 0, 622, 624, 1, 0, 0, 0, 623, 615, 1, 0, 0, 0, 623, 619, 1, 0, 0, 0, 624, 101, 1, 0, 0, 0, 625, 626, 5, 2, 0, 0, 626, 627, 3, 20, 10, 0, 627, 629, 3, 120, 60, 0, 628, 630, 3, 108, 54, 0, 629, 628, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 103, 1, 0, 0, 0, 631, 632, 5, 8, 0, 0, 632, 633, 3, 20, 10, 0, 633, 634, 3, 120, 60, 0, 634, 105, 1, 0, 0, 0, 635, 636, 5, 11, 0, 0, 636, 637, 3, 70, 35, 0, 637, 107, 1, 0, 0, 0, 638, 643, 3, 110, 55, 0, 639, 640, 5, 42, 0, 0, 640, 642, 3, 110, 55, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 109, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 647, 3, 76, 38, 0, 647, 648, 5, 38, 0, 0, 648, 649, 3, 80, 40, 0, 649, 111, 1, 0, 0, 0, 650, 651, 7, 6, 0, 0, 651, 113, 1, 0, 0, 0, 652, 655, 3, 116, 58, 0, 653, 655, 3, 118, 59, 0, 654, 652, 1, 0, 0, 0, 654, 653, 1, 0, 0, 0, 655, 115, 1, 0, 0, 0, 656, 658, 7, 0, 0, 0, 657, 656, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 5, 35, 0, 0, 660, 117, 1, 0, 0, 0, 661, 663, 7, 0, 0, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 5, 34, 0, 0, 665, 119, 1, 0, 0, 0, 666, 667, 5, 33, 0, 0, 667, 121, 1, 0, 0, 0, 668, 669, 7, 7, 0, 0, 669, 123, 1, 0, 0, 0, 670, 671, 5, 6, 0, 0, 671, 672, 3, 126, 63, 0, 672, 125, 1, 0, 0, 0, 673, 674, 5, 79, 0, 0, 674, 675, 3, 2, 1, 0, 675, 676, 5, 80, 0, 0, 676, 127, 1, 0, 0, 0, 677, 678, 5, 15, 0, 0, 678, 679, 5, 112, 0, 0, 679, 129, 1, 0, 0, 0, 680, 681, 5, 4, 0, 0, 681, 684, 3, 132, 66, 0, 682, 683, 5, 55, 0, 0, 683, 685, 3, 72, 36, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 695, 1, 0, 0, 0, 686, 687, 5, 61, 0, 0, 687, 692, 3, 134, 67, 0, 688, 689, 5, 42, 0, 0, 689, 691, 3, 134, 67, 0, 690, 688, 1, 0, 0, 0, 691, 694, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 695, 686, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 131, 1, 0, 0, 0, 697, 698, 7, 8, 0, 0, 698, 133, 1, 0, 0, 0, 699, 700, 3, 72, 36, 0, 700, 701, 5, 38, 0, 0, 701, 703, 1, 0, 0, 0, 702, 699, 1, 0, 0, 0, 702, 703, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 3, 72, 36, 0, 705, 135, 1, 0, 0, 0, 706, 707, 5, 20, 0, 0, 707, 710, 3, 70, 35, 0, 708, 709, 5, 55, 0, 0, 709, 711, 3, 70, 35, 0, 710, 708, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 717, 1, 0, 0, 0, 712, 713, 5, 98, 0, 0, 713, 714, 3, 70, 35, 0, 714, 715, 5, 42, 0, 0, 715, 716, 3, 70, 35, 0, 716, 718, 1, 0, 0, 0, 717, 712, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 137, 1, 0, 0, 0, 719, 720, 5, 14, 0, 0, 720, 721, 3, 80, 40, 0, 721, 139, 1, 0, 0, 0, 722, 723, 5, 22, 0, 0, 723, 724, 3, 44, 22, 0, 724, 725, 5, 55, 0, 0, 725, 726, 3, 74, 37, 0, 726, 141, 1, 0, 0, 0, 727, 728, 5, 21, 0, 0, 728, 731, 3, 66, 33, 0, 729, 730, 5, 39, 0, 0, 730, 732, 3, 34, 17, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 143, 1, 0, 0, 0, 733, 734, 7, 9, 0, 0, 734, 735, 5, 126, 0, 0, 735, 736, 3, 146, 73, 0, 736, 737, 3, 148, 74, 0, 737, 145, 1, 0, 0, 0, 738, 739, 3, 44, 22, 0, 739, 147, 1, 0, 0, 0, 740, 741, 5, 55, 0, 0, 741, 746, 3, 150, 75, 0, 742, 743, 5, 42, 0, 0, 743, 745, 3, 150, 75, 0, 744, 742, 1, 0, 0, 0, 745, 748, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 149, 1, 0, 0, 0, 748, 746, 1, 0, 0, 0, 749, 750, 3, 16, 8, 0, 750, 151, 1, 0, 0, 0, 751, 756, 3, 154, 77, 0, 752, 753, 5, 42, 0, 0, 753, 755, 3, 154, 77, 0, 754, 752, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 153, 1, 0, 0, 0, 758, 756, 1, 0, 0, 0, 759, 760, 3, 76, 38, 0, 760, 761, 5, 38, 0, 0, 761, 762, 3, 156, 78, 0, 762, 155, 1, 0, 0, 0, 763, 766, 3, 80, 40, 0, 764, 766, 3, 76, 38, 0, 765, 763, 1, 0, 0, 0, 765, 764, 1, 0, 0, 0, 766, 157, 1, 0, 0, 0, 767, 768, 5, 24, 0, 0, 768, 769, 3, 80, 40, 0, 769, 770, 5, 55, 0, 0, 770, 773, 3, 38, 19, 0, 771, 772, 5, 61, 0, 0, 772, 774, 3, 152, 76, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 159, 1, 0, 0, 0, 775, 779, 5, 1, 0, 0, 776, 777, 3, 70, 35, 0, 777, 778, 5, 38, 0, 0, 778, 780, 1, 0, 0, 0, 779, 776, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 3, 20, 10, 0, 782, 783, 5, 61, 0, 0, 783, 784, 3, 86, 43, 0, 784, 161, 1, 0, 0, 0, 74, 173, 182, 206, 218, 227, 235, 240, 248, 250, 255, 262, 269, 278, 283, 288, 298, 304, 312, 314, 325, 332, 343, 348, 350, 362, 381, 387, 396, 402, 410, 414, 425, 437, 445, 458, 462, 466, 473, 477, 484, 490, 497, 505, 513, 521, 538, 549, 560, 565, 569, 573, 578, 589, 594, 598, 612, 623, 629, 643, 654, 657, 662, 684, 692, 695, 702, 710, 717, 731, 746, 756, 765, 773, 779]
\ No newline at end of file
+[4, 1, 139, 802, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 172, 8, 1, 10, 1, 12, 1, 175, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 183, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 207, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 219, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 226, 8, 5, 10, 5, 12, 5, 229, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 236, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 241, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 249, 8, 5, 10, 5, 12, 5, 252, 9, 5, 1, 6, 1, 6, 3, 6, 256, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 263, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 270, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 277, 8, 6, 10, 6, 12, 6, 280, 9, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 286, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 293, 8, 6, 10, 6, 12, 6, 296, 9, 6, 1, 6, 1, 6, 3, 6, 300, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 305, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 315, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 321, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 329, 8, 9, 10, 9, 12, 9, 332, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 342, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 347, 8, 10, 10, 10, 12, 10, 350, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 358, 8, 11, 10, 11, 12, 11, 361, 9, 11, 1, 11, 1, 11, 3, 11, 365, 8, 11, 3, 11, 367, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 377, 8, 13, 10, 13, 12, 13, 380, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 396, 8, 17, 10, 17, 12, 17, 399, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 404, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 411, 8, 19, 10, 19, 12, 19, 414, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 419, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 425, 8, 21, 10, 21, 12, 21, 428, 9, 21, 1, 21, 3, 21, 431, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 442, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 454, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 460, 8, 28, 10, 28, 12, 28, 463, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 473, 8, 30, 10, 30, 12, 30, 476, 9, 30, 1, 30, 3, 30, 479, 8, 30, 1, 30, 1, 30, 3, 30, 483, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 490, 8, 32, 1, 32, 1, 32, 3, 32, 494, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 499, 8, 33, 10, 33, 12, 33, 502, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 507, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 512, 8, 35, 10, 35, 12, 35, 515, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 520, 8, 36, 10, 36, 12, 36, 523, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 528, 8, 37, 10, 37, 12, 37, 531, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 538, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 553, 8, 40, 10, 40, 12, 40, 556, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 564, 8, 40, 10, 40, 12, 40, 567, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 575, 8, 40, 10, 40, 12, 40, 578, 9, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 41, 1, 41, 3, 41, 586, 8, 41, 1, 42, 1, 42, 3, 42, 590, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 595, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 604, 8, 45, 10, 45, 12, 45, 607, 9, 45, 1, 46, 1, 46, 3, 46, 611, 8, 46, 1, 46, 1, 46, 3, 46, 615, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 627, 8, 49, 10, 49, 12, 49, 630, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 640, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 646, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 658, 8, 54, 10, 54, 12, 54, 661, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 671, 8, 57, 1, 58, 3, 58, 674, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 679, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 701, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 707, 8, 65, 10, 65, 12, 65, 710, 9, 65, 3, 65, 712, 8, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 3, 67, 719, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 727, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 734, 8, 68, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 748, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 761, 8, 74, 10, 74, 12, 74, 764, 9, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 5, 76, 771, 8, 76, 10, 76, 12, 76, 774, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 3, 78, 782, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 790, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 796, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 0, 4, 2, 10, 18, 20, 81, 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, 0, 10, 1, 0, 69, 70, 1, 0, 71, 73, 2, 0, 33, 33, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 33, 33, 102, 102, 2, 0, 19, 19, 26, 27, 836, 0, 162, 1, 0, 0, 0, 2, 165, 1, 0, 0, 0, 4, 182, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 8, 208, 1, 0, 0, 0, 10, 240, 1, 0, 0, 0, 12, 299, 1, 0, 0, 0, 14, 301, 1, 0, 0, 0, 16, 314, 1, 0, 0, 0, 18, 320, 1, 0, 0, 0, 20, 341, 1, 0, 0, 0, 22, 351, 1, 0, 0, 0, 24, 370, 1, 0, 0, 0, 26, 372, 1, 0, 0, 0, 28, 383, 1, 0, 0, 0, 30, 387, 1, 0, 0, 0, 32, 389, 1, 0, 0, 0, 34, 392, 1, 0, 0, 0, 36, 403, 1, 0, 0, 0, 38, 407, 1, 0, 0, 0, 40, 415, 1, 0, 0, 0, 42, 420, 1, 0, 0, 0, 44, 441, 1, 0, 0, 0, 46, 443, 1, 0, 0, 0, 48, 445, 1, 0, 0, 0, 50, 447, 1, 0, 0, 0, 52, 449, 1, 0, 0, 0, 54, 453, 1, 0, 0, 0, 56, 455, 1, 0, 0, 0, 58, 464, 1, 0, 0, 0, 60, 468, 1, 0, 0, 0, 62, 484, 1, 0, 0, 0, 64, 487, 1, 0, 0, 0, 66, 495, 1, 0, 0, 0, 68, 503, 1, 0, 0, 0, 70, 508, 1, 0, 0, 0, 72, 516, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 532, 1, 0, 0, 0, 78, 537, 1, 0, 0, 0, 80, 581, 1, 0, 0, 0, 82, 585, 1, 0, 0, 0, 84, 589, 1, 0, 0, 0, 86, 594, 1, 0, 0, 0, 88, 596, 1, 0, 0, 0, 90, 599, 1, 0, 0, 0, 92, 608, 1, 0, 0, 0, 94, 616, 1, 0, 0, 0, 96, 619, 1, 0, 0, 0, 98, 622, 1, 0, 0, 0, 100, 639, 1, 0, 0, 0, 102, 641, 1, 0, 0, 0, 104, 647, 1, 0, 0, 0, 106, 651, 1, 0, 0, 0, 108, 654, 1, 0, 0, 0, 110, 662, 1, 0, 0, 0, 112, 666, 1, 0, 0, 0, 114, 670, 1, 0, 0, 0, 116, 673, 1, 0, 0, 0, 118, 678, 1, 0, 0, 0, 120, 682, 1, 0, 0, 0, 122, 684, 1, 0, 0, 0, 124, 686, 1, 0, 0, 0, 126, 689, 1, 0, 0, 0, 128, 693, 1, 0, 0, 0, 130, 696, 1, 0, 0, 0, 132, 713, 1, 0, 0, 0, 134, 718, 1, 0, 0, 0, 136, 722, 1, 0, 0, 0, 138, 735, 1, 0, 0, 0, 140, 738, 1, 0, 0, 0, 142, 743, 1, 0, 0, 0, 144, 749, 1, 0, 0, 0, 146, 754, 1, 0, 0, 0, 148, 756, 1, 0, 0, 0, 150, 765, 1, 0, 0, 0, 152, 767, 1, 0, 0, 0, 154, 775, 1, 0, 0, 0, 156, 781, 1, 0, 0, 0, 158, 783, 1, 0, 0, 0, 160, 791, 1, 0, 0, 0, 162, 163, 3, 2, 1, 0, 163, 164, 5, 0, 0, 1, 164, 1, 1, 0, 0, 0, 165, 166, 6, 1, -1, 0, 166, 167, 3, 4, 2, 0, 167, 173, 1, 0, 0, 0, 168, 169, 10, 1, 0, 0, 169, 170, 5, 32, 0, 0, 170, 172, 3, 6, 3, 0, 171, 168, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 3, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 183, 3, 124, 62, 0, 177, 183, 3, 42, 21, 0, 178, 183, 3, 32, 16, 0, 179, 183, 3, 128, 64, 0, 180, 181, 4, 2, 1, 0, 181, 183, 3, 60, 30, 0, 182, 176, 1, 0, 0, 0, 182, 177, 1, 0, 0, 0, 182, 178, 1, 0, 0, 0, 182, 179, 1, 0, 0, 0, 182, 180, 1, 0, 0, 0, 183, 5, 1, 0, 0, 0, 184, 207, 3, 62, 31, 0, 185, 207, 3, 8, 4, 0, 186, 207, 3, 94, 47, 0, 187, 207, 3, 88, 44, 0, 188, 207, 3, 64, 32, 0, 189, 207, 3, 90, 45, 0, 190, 207, 3, 96, 48, 0, 191, 207, 3, 98, 49, 0, 192, 207, 3, 102, 51, 0, 193, 207, 3, 104, 52, 0, 194, 207, 3, 130, 65, 0, 195, 207, 3, 106, 53, 0, 196, 207, 3, 144, 72, 0, 197, 207, 3, 136, 68, 0, 198, 207, 3, 160, 80, 0, 199, 207, 3, 138, 69, 0, 200, 201, 4, 3, 2, 0, 201, 207, 3, 142, 71, 0, 202, 203, 4, 3, 3, 0, 203, 207, 3, 140, 70, 0, 204, 205, 4, 3, 4, 0, 205, 207, 3, 158, 79, 0, 206, 184, 1, 0, 0, 0, 206, 185, 1, 0, 0, 0, 206, 186, 1, 0, 0, 0, 206, 187, 1, 0, 0, 0, 206, 188, 1, 0, 0, 0, 206, 189, 1, 0, 0, 0, 206, 190, 1, 0, 0, 0, 206, 191, 1, 0, 0, 0, 206, 192, 1, 0, 0, 0, 206, 193, 1, 0, 0, 0, 206, 194, 1, 0, 0, 0, 206, 195, 1, 0, 0, 0, 206, 196, 1, 0, 0, 0, 206, 197, 1, 0, 0, 0, 206, 198, 1, 0, 0, 0, 206, 199, 1, 0, 0, 0, 206, 200, 1, 0, 0, 0, 206, 202, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 207, 7, 1, 0, 0, 0, 208, 209, 5, 18, 0, 0, 209, 210, 3, 10, 5, 0, 210, 9, 1, 0, 0, 0, 211, 212, 6, 5, -1, 0, 212, 213, 5, 52, 0, 0, 213, 241, 3, 10, 5, 8, 214, 241, 3, 16, 8, 0, 215, 241, 3, 12, 6, 0, 216, 218, 3, 16, 8, 0, 217, 219, 5, 52, 0, 0, 218, 217, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 5, 47, 0, 0, 221, 222, 5, 51, 0, 0, 222, 227, 3, 16, 8, 0, 223, 224, 5, 42, 0, 0, 224, 226, 3, 16, 8, 0, 225, 223, 1, 0, 0, 0, 226, 229, 1, 0, 0, 0, 227, 225, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 230, 231, 5, 59, 0, 0, 231, 241, 1, 0, 0, 0, 232, 233, 3, 16, 8, 0, 233, 235, 5, 48, 0, 0, 234, 236, 5, 52, 0, 0, 235, 234, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 5, 53, 0, 0, 238, 241, 1, 0, 0, 0, 239, 241, 3, 14, 7, 0, 240, 211, 1, 0, 0, 0, 240, 214, 1, 0, 0, 0, 240, 215, 1, 0, 0, 0, 240, 216, 1, 0, 0, 0, 240, 232, 1, 0, 0, 0, 240, 239, 1, 0, 0, 0, 241, 250, 1, 0, 0, 0, 242, 243, 10, 5, 0, 0, 243, 244, 5, 36, 0, 0, 244, 249, 3, 10, 5, 6, 245, 246, 10, 4, 0, 0, 246, 247, 5, 56, 0, 0, 247, 249, 3, 10, 5, 5, 248, 242, 1, 0, 0, 0, 248, 245, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 11, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 255, 3, 16, 8, 0, 254, 256, 5, 52, 0, 0, 255, 254, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 5, 50, 0, 0, 258, 259, 3, 120, 60, 0, 259, 300, 1, 0, 0, 0, 260, 262, 3, 16, 8, 0, 261, 263, 5, 52, 0, 0, 262, 261, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 5, 58, 0, 0, 265, 266, 3, 120, 60, 0, 266, 300, 1, 0, 0, 0, 267, 269, 3, 16, 8, 0, 268, 270, 5, 52, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 272, 5, 50, 0, 0, 272, 273, 5, 51, 0, 0, 273, 278, 3, 120, 60, 0, 274, 275, 5, 42, 0, 0, 275, 277, 3, 120, 60, 0, 276, 274, 1, 0, 0, 0, 277, 280, 1, 0, 0, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281, 1, 0, 0, 0, 280, 278, 1, 0, 0, 0, 281, 282, 5, 59, 0, 0, 282, 300, 1, 0, 0, 0, 283, 285, 3, 16, 8, 0, 284, 286, 5, 52, 0, 0, 285, 284, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 288, 5, 58, 0, 0, 288, 289, 5, 51, 0, 0, 289, 294, 3, 120, 60, 0, 290, 291, 5, 42, 0, 0, 291, 293, 3, 120, 60, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 297, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 298, 5, 59, 0, 0, 298, 300, 1, 0, 0, 0, 299, 253, 1, 0, 0, 0, 299, 260, 1, 0, 0, 0, 299, 267, 1, 0, 0, 0, 299, 283, 1, 0, 0, 0, 300, 13, 1, 0, 0, 0, 301, 304, 3, 70, 35, 0, 302, 303, 5, 40, 0, 0, 303, 305, 3, 30, 15, 0, 304, 302, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 307, 5, 41, 0, 0, 307, 308, 3, 80, 40, 0, 308, 15, 1, 0, 0, 0, 309, 315, 3, 18, 9, 0, 310, 311, 3, 18, 9, 0, 311, 312, 3, 122, 61, 0, 312, 313, 3, 18, 9, 0, 313, 315, 1, 0, 0, 0, 314, 309, 1, 0, 0, 0, 314, 310, 1, 0, 0, 0, 315, 17, 1, 0, 0, 0, 316, 317, 6, 9, -1, 0, 317, 321, 3, 20, 10, 0, 318, 319, 7, 0, 0, 0, 319, 321, 3, 18, 9, 3, 320, 316, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 330, 1, 0, 0, 0, 322, 323, 10, 2, 0, 0, 323, 324, 7, 1, 0, 0, 324, 329, 3, 18, 9, 3, 325, 326, 10, 1, 0, 0, 326, 327, 7, 0, 0, 0, 327, 329, 3, 18, 9, 2, 328, 322, 1, 0, 0, 0, 328, 325, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 19, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 6, 10, -1, 0, 334, 342, 3, 80, 40, 0, 335, 342, 3, 70, 35, 0, 336, 342, 3, 22, 11, 0, 337, 338, 5, 51, 0, 0, 338, 339, 3, 10, 5, 0, 339, 340, 5, 59, 0, 0, 340, 342, 1, 0, 0, 0, 341, 333, 1, 0, 0, 0, 341, 335, 1, 0, 0, 0, 341, 336, 1, 0, 0, 0, 341, 337, 1, 0, 0, 0, 342, 348, 1, 0, 0, 0, 343, 344, 10, 1, 0, 0, 344, 345, 5, 40, 0, 0, 345, 347, 3, 30, 15, 0, 346, 343, 1, 0, 0, 0, 347, 350, 1, 0, 0, 0, 348, 346, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 21, 1, 0, 0, 0, 350, 348, 1, 0, 0, 0, 351, 352, 3, 24, 12, 0, 352, 366, 5, 51, 0, 0, 353, 367, 5, 71, 0, 0, 354, 359, 3, 10, 5, 0, 355, 356, 5, 42, 0, 0, 356, 358, 3, 10, 5, 0, 357, 355, 1, 0, 0, 0, 358, 361, 1, 0, 0, 0, 359, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 364, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 362, 363, 5, 42, 0, 0, 363, 365, 3, 26, 13, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 367, 1, 0, 0, 0, 366, 353, 1, 0, 0, 0, 366, 354, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 369, 5, 59, 0, 0, 369, 23, 1, 0, 0, 0, 370, 371, 3, 86, 43, 0, 371, 25, 1, 0, 0, 0, 372, 373, 5, 74, 0, 0, 373, 378, 3, 28, 14, 0, 374, 375, 5, 42, 0, 0, 375, 377, 3, 28, 14, 0, 376, 374, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 381, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 382, 5, 75, 0, 0, 382, 27, 1, 0, 0, 0, 383, 384, 3, 120, 60, 0, 384, 385, 5, 41, 0, 0, 385, 386, 3, 80, 40, 0, 386, 29, 1, 0, 0, 0, 387, 388, 3, 76, 38, 0, 388, 31, 1, 0, 0, 0, 389, 390, 5, 13, 0, 0, 390, 391, 3, 34, 17, 0, 391, 33, 1, 0, 0, 0, 392, 397, 3, 36, 18, 0, 393, 394, 5, 42, 0, 0, 394, 396, 3, 36, 18, 0, 395, 393, 1, 0, 0, 0, 396, 399, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 35, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 400, 401, 3, 70, 35, 0, 401, 402, 5, 38, 0, 0, 402, 404, 1, 0, 0, 0, 403, 400, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 406, 3, 10, 5, 0, 406, 37, 1, 0, 0, 0, 407, 412, 3, 40, 20, 0, 408, 409, 5, 42, 0, 0, 409, 411, 3, 40, 20, 0, 410, 408, 1, 0, 0, 0, 411, 414, 1, 0, 0, 0, 412, 410, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 39, 1, 0, 0, 0, 414, 412, 1, 0, 0, 0, 415, 418, 3, 70, 35, 0, 416, 417, 5, 38, 0, 0, 417, 419, 3, 10, 5, 0, 418, 416, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 41, 1, 0, 0, 0, 420, 421, 5, 7, 0, 0, 421, 426, 3, 44, 22, 0, 422, 423, 5, 42, 0, 0, 423, 425, 3, 44, 22, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 431, 3, 54, 27, 0, 430, 429, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 43, 1, 0, 0, 0, 432, 433, 3, 46, 23, 0, 433, 434, 5, 41, 0, 0, 434, 435, 3, 50, 25, 0, 435, 442, 1, 0, 0, 0, 436, 437, 3, 50, 25, 0, 437, 438, 5, 40, 0, 0, 438, 439, 3, 48, 24, 0, 439, 442, 1, 0, 0, 0, 440, 442, 3, 52, 26, 0, 441, 432, 1, 0, 0, 0, 441, 436, 1, 0, 0, 0, 441, 440, 1, 0, 0, 0, 442, 45, 1, 0, 0, 0, 443, 444, 5, 90, 0, 0, 444, 47, 1, 0, 0, 0, 445, 446, 5, 90, 0, 0, 446, 49, 1, 0, 0, 0, 447, 448, 5, 90, 0, 0, 448, 51, 1, 0, 0, 0, 449, 450, 7, 2, 0, 0, 450, 53, 1, 0, 0, 0, 451, 454, 3, 56, 28, 0, 452, 454, 3, 58, 29, 0, 453, 451, 1, 0, 0, 0, 453, 452, 1, 0, 0, 0, 454, 55, 1, 0, 0, 0, 455, 456, 5, 89, 0, 0, 456, 461, 5, 90, 0, 0, 457, 458, 5, 42, 0, 0, 458, 460, 5, 90, 0, 0, 459, 457, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 57, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 464, 465, 5, 79, 0, 0, 465, 466, 3, 56, 28, 0, 466, 467, 5, 80, 0, 0, 467, 59, 1, 0, 0, 0, 468, 469, 5, 23, 0, 0, 469, 474, 3, 44, 22, 0, 470, 471, 5, 42, 0, 0, 471, 473, 3, 44, 22, 0, 472, 470, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 479, 3, 66, 33, 0, 478, 477, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 482, 1, 0, 0, 0, 480, 481, 5, 39, 0, 0, 481, 483, 3, 34, 17, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 61, 1, 0, 0, 0, 484, 485, 5, 5, 0, 0, 485, 486, 3, 34, 17, 0, 486, 63, 1, 0, 0, 0, 487, 489, 5, 17, 0, 0, 488, 490, 3, 66, 33, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 492, 5, 39, 0, 0, 492, 494, 3, 34, 17, 0, 493, 491, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 65, 1, 0, 0, 0, 495, 500, 3, 68, 34, 0, 496, 497, 5, 42, 0, 0, 497, 499, 3, 68, 34, 0, 498, 496, 1, 0, 0, 0, 499, 502, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 67, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 503, 506, 3, 36, 18, 0, 504, 505, 5, 18, 0, 0, 505, 507, 3, 10, 5, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 69, 1, 0, 0, 0, 508, 513, 3, 86, 43, 0, 509, 510, 5, 44, 0, 0, 510, 512, 3, 86, 43, 0, 511, 509, 1, 0, 0, 0, 512, 515, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 71, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 516, 521, 3, 78, 39, 0, 517, 518, 5, 44, 0, 0, 518, 520, 3, 78, 39, 0, 519, 517, 1, 0, 0, 0, 520, 523, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 73, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 524, 529, 3, 72, 36, 0, 525, 526, 5, 42, 0, 0, 526, 528, 3, 72, 36, 0, 527, 525, 1, 0, 0, 0, 528, 531, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 75, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 532, 533, 7, 3, 0, 0, 533, 77, 1, 0, 0, 0, 534, 538, 5, 94, 0, 0, 535, 538, 3, 82, 41, 0, 536, 538, 3, 84, 42, 0, 537, 534, 1, 0, 0, 0, 537, 535, 1, 0, 0, 0, 537, 536, 1, 0, 0, 0, 538, 79, 1, 0, 0, 0, 539, 582, 5, 53, 0, 0, 540, 541, 3, 118, 59, 0, 541, 542, 5, 81, 0, 0, 542, 582, 1, 0, 0, 0, 543, 582, 3, 116, 58, 0, 544, 582, 3, 118, 59, 0, 545, 582, 3, 112, 56, 0, 546, 582, 3, 82, 41, 0, 547, 582, 3, 120, 60, 0, 548, 549, 5, 79, 0, 0, 549, 554, 3, 114, 57, 0, 550, 551, 5, 42, 0, 0, 551, 553, 3, 114, 57, 0, 552, 550, 1, 0, 0, 0, 553, 556, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 557, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 557, 558, 5, 80, 0, 0, 558, 582, 1, 0, 0, 0, 559, 560, 5, 79, 0, 0, 560, 565, 3, 112, 56, 0, 561, 562, 5, 42, 0, 0, 562, 564, 3, 112, 56, 0, 563, 561, 1, 0, 0, 0, 564, 567, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 568, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 568, 569, 5, 80, 0, 0, 569, 582, 1, 0, 0, 0, 570, 571, 5, 79, 0, 0, 571, 576, 3, 120, 60, 0, 572, 573, 5, 42, 0, 0, 573, 575, 3, 120, 60, 0, 574, 572, 1, 0, 0, 0, 575, 578, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 579, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 579, 580, 5, 80, 0, 0, 580, 582, 1, 0, 0, 0, 581, 539, 1, 0, 0, 0, 581, 540, 1, 0, 0, 0, 581, 543, 1, 0, 0, 0, 581, 544, 1, 0, 0, 0, 581, 545, 1, 0, 0, 0, 581, 546, 1, 0, 0, 0, 581, 547, 1, 0, 0, 0, 581, 548, 1, 0, 0, 0, 581, 559, 1, 0, 0, 0, 581, 570, 1, 0, 0, 0, 582, 81, 1, 0, 0, 0, 583, 586, 5, 57, 0, 0, 584, 586, 5, 77, 0, 0, 585, 583, 1, 0, 0, 0, 585, 584, 1, 0, 0, 0, 586, 83, 1, 0, 0, 0, 587, 590, 5, 76, 0, 0, 588, 590, 5, 78, 0, 0, 589, 587, 1, 0, 0, 0, 589, 588, 1, 0, 0, 0, 590, 85, 1, 0, 0, 0, 591, 595, 3, 76, 38, 0, 592, 595, 3, 82, 41, 0, 593, 595, 3, 84, 42, 0, 594, 591, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 593, 1, 0, 0, 0, 595, 87, 1, 0, 0, 0, 596, 597, 5, 10, 0, 0, 597, 598, 3, 80, 40, 0, 598, 89, 1, 0, 0, 0, 599, 600, 5, 16, 0, 0, 600, 605, 3, 92, 46, 0, 601, 602, 5, 42, 0, 0, 602, 604, 3, 92, 46, 0, 603, 601, 1, 0, 0, 0, 604, 607, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 91, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 610, 3, 10, 5, 0, 609, 611, 7, 4, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 614, 1, 0, 0, 0, 612, 613, 5, 54, 0, 0, 613, 615, 7, 5, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 93, 1, 0, 0, 0, 616, 617, 5, 9, 0, 0, 617, 618, 3, 74, 37, 0, 618, 95, 1, 0, 0, 0, 619, 620, 5, 3, 0, 0, 620, 621, 3, 74, 37, 0, 621, 97, 1, 0, 0, 0, 622, 623, 5, 12, 0, 0, 623, 628, 3, 100, 50, 0, 624, 625, 5, 42, 0, 0, 625, 627, 3, 100, 50, 0, 626, 624, 1, 0, 0, 0, 627, 630, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 99, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 631, 632, 3, 72, 36, 0, 632, 633, 5, 98, 0, 0, 633, 634, 3, 72, 36, 0, 634, 640, 1, 0, 0, 0, 635, 636, 3, 72, 36, 0, 636, 637, 5, 38, 0, 0, 637, 638, 3, 72, 36, 0, 638, 640, 1, 0, 0, 0, 639, 631, 1, 0, 0, 0, 639, 635, 1, 0, 0, 0, 640, 101, 1, 0, 0, 0, 641, 642, 5, 2, 0, 0, 642, 643, 3, 20, 10, 0, 643, 645, 3, 120, 60, 0, 644, 646, 3, 108, 54, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 103, 1, 0, 0, 0, 647, 648, 5, 8, 0, 0, 648, 649, 3, 20, 10, 0, 649, 650, 3, 120, 60, 0, 650, 105, 1, 0, 0, 0, 651, 652, 5, 11, 0, 0, 652, 653, 3, 70, 35, 0, 653, 107, 1, 0, 0, 0, 654, 659, 3, 110, 55, 0, 655, 656, 5, 42, 0, 0, 656, 658, 3, 110, 55, 0, 657, 655, 1, 0, 0, 0, 658, 661, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 109, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 663, 3, 76, 38, 0, 663, 664, 5, 38, 0, 0, 664, 665, 3, 80, 40, 0, 665, 111, 1, 0, 0, 0, 666, 667, 7, 6, 0, 0, 667, 113, 1, 0, 0, 0, 668, 671, 3, 116, 58, 0, 669, 671, 3, 118, 59, 0, 670, 668, 1, 0, 0, 0, 670, 669, 1, 0, 0, 0, 671, 115, 1, 0, 0, 0, 672, 674, 7, 0, 0, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 676, 5, 35, 0, 0, 676, 117, 1, 0, 0, 0, 677, 679, 7, 0, 0, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 5, 34, 0, 0, 681, 119, 1, 0, 0, 0, 682, 683, 5, 33, 0, 0, 683, 121, 1, 0, 0, 0, 684, 685, 7, 7, 0, 0, 685, 123, 1, 0, 0, 0, 686, 687, 5, 6, 0, 0, 687, 688, 3, 126, 63, 0, 688, 125, 1, 0, 0, 0, 689, 690, 5, 79, 0, 0, 690, 691, 3, 2, 1, 0, 691, 692, 5, 80, 0, 0, 692, 127, 1, 0, 0, 0, 693, 694, 5, 15, 0, 0, 694, 695, 5, 112, 0, 0, 695, 129, 1, 0, 0, 0, 696, 697, 5, 4, 0, 0, 697, 700, 3, 132, 66, 0, 698, 699, 5, 55, 0, 0, 699, 701, 3, 72, 36, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 711, 1, 0, 0, 0, 702, 703, 5, 61, 0, 0, 703, 708, 3, 134, 67, 0, 704, 705, 5, 42, 0, 0, 705, 707, 3, 134, 67, 0, 706, 704, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 712, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 702, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 131, 1, 0, 0, 0, 713, 714, 7, 8, 0, 0, 714, 133, 1, 0, 0, 0, 715, 716, 3, 72, 36, 0, 716, 717, 5, 38, 0, 0, 717, 719, 1, 0, 0, 0, 718, 715, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 3, 72, 36, 0, 721, 135, 1, 0, 0, 0, 722, 723, 5, 20, 0, 0, 723, 726, 3, 70, 35, 0, 724, 725, 5, 55, 0, 0, 725, 727, 3, 70, 35, 0, 726, 724, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 733, 1, 0, 0, 0, 728, 729, 5, 98, 0, 0, 729, 730, 3, 70, 35, 0, 730, 731, 5, 42, 0, 0, 731, 732, 3, 70, 35, 0, 732, 734, 1, 0, 0, 0, 733, 728, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 137, 1, 0, 0, 0, 735, 736, 5, 14, 0, 0, 736, 737, 3, 80, 40, 0, 737, 139, 1, 0, 0, 0, 738, 739, 5, 22, 0, 0, 739, 740, 3, 44, 22, 0, 740, 741, 5, 55, 0, 0, 741, 742, 3, 74, 37, 0, 742, 141, 1, 0, 0, 0, 743, 744, 5, 21, 0, 0, 744, 747, 3, 66, 33, 0, 745, 746, 5, 39, 0, 0, 746, 748, 3, 34, 17, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 143, 1, 0, 0, 0, 749, 750, 7, 9, 0, 0, 750, 751, 5, 126, 0, 0, 751, 752, 3, 146, 73, 0, 752, 753, 3, 148, 74, 0, 753, 145, 1, 0, 0, 0, 754, 755, 3, 44, 22, 0, 755, 147, 1, 0, 0, 0, 756, 757, 5, 55, 0, 0, 757, 762, 3, 150, 75, 0, 758, 759, 5, 42, 0, 0, 759, 761, 3, 150, 75, 0, 760, 758, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 149, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 765, 766, 3, 16, 8, 0, 766, 151, 1, 0, 0, 0, 767, 772, 3, 154, 77, 0, 768, 769, 5, 42, 0, 0, 769, 771, 3, 154, 77, 0, 770, 768, 1, 0, 0, 0, 771, 774, 1, 0, 0, 0, 772, 770, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 153, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 775, 776, 3, 76, 38, 0, 776, 777, 5, 38, 0, 0, 777, 778, 3, 156, 78, 0, 778, 155, 1, 0, 0, 0, 779, 782, 3, 80, 40, 0, 780, 782, 3, 76, 38, 0, 781, 779, 1, 0, 0, 0, 781, 780, 1, 0, 0, 0, 782, 157, 1, 0, 0, 0, 783, 784, 5, 24, 0, 0, 784, 785, 3, 80, 40, 0, 785, 786, 5, 55, 0, 0, 786, 789, 3, 38, 19, 0, 787, 788, 5, 61, 0, 0, 788, 790, 3, 152, 76, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 159, 1, 0, 0, 0, 791, 795, 5, 1, 0, 0, 792, 793, 3, 70, 35, 0, 793, 794, 5, 38, 0, 0, 794, 796, 1, 0, 0, 0, 795, 792, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 3, 20, 10, 0, 798, 799, 5, 61, 0, 0, 799, 800, 3, 86, 43, 0, 800, 161, 1, 0, 0, 0, 76, 173, 182, 206, 218, 227, 235, 240, 248, 250, 255, 262, 269, 278, 285, 294, 299, 304, 314, 320, 328, 330, 341, 348, 359, 364, 366, 378, 397, 403, 412, 418, 426, 430, 441, 453, 461, 474, 478, 482, 489, 493, 500, 506, 513, 521, 529, 537, 554, 565, 576, 581, 585, 589, 594, 605, 610, 614, 628, 639, 645, 659, 670, 673, 678, 700, 708, 711, 718, 726, 733, 747, 762, 772, 781, 789, 795]
\ 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 e0e2433e4c517..66d3be11b78fe 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
@@ -1231,15 +1231,50 @@ public T accept(ParseTreeVisitor extends T> visitor) {
else return visitor.visitChildren(this);
}
}
+ @SuppressWarnings("CheckReturnValue")
+ public static class RlikeListExpressionContext extends RegexBooleanExpressionContext {
+ public ValueExpressionContext valueExpression() {
+ return getRuleContext(ValueExpressionContext.class,0);
+ }
+ public TerminalNode RLIKE() { return getToken(EsqlBaseParser.RLIKE, 0); }
+ public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); }
+ public List string() {
+ return getRuleContexts(StringContext.class);
+ }
+ public StringContext string(int i) {
+ return getRuleContext(StringContext.class,i);
+ }
+ public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); }
+ public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); }
+ public List COMMA() { return getTokens(EsqlBaseParser.COMMA); }
+ public TerminalNode COMMA(int i) {
+ return getToken(EsqlBaseParser.COMMA, i);
+ }
+ @SuppressWarnings("this-escape")
+ public RlikeListExpressionContext(RegexBooleanExpressionContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRlikeListExpression(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRlikeListExpression(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitRlikeListExpression(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException {
RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState());
enterRule(_localctx, 12, RULE_regexBooleanExpression);
int _la;
try {
- setState(283);
+ setState(299);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
_localctx = new LikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
@@ -1326,6 +1361,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
match(RP);
}
break;
+ case 4:
+ _localctx = new RlikeListExpressionContext(_localctx);
+ enterOuterAlt(_localctx, 4);
+ {
+ setState(283);
+ valueExpression();
+ setState(285);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==NOT) {
+ {
+ setState(284);
+ match(NOT);
+ }
+ }
+
+ setState(287);
+ match(RLIKE);
+ setState(288);
+ match(LP);
+ setState(289);
+ string();
+ setState(294);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==COMMA) {
+ {
+ {
+ setState(290);
+ match(COMMA);
+ setState(291);
+ string();
+ }
+ }
+ setState(296);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ setState(297);
+ match(RP);
+ }
+ break;
}
}
catch (RecognitionException re) {
@@ -1382,23 +1459,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(285);
+ setState(301);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(288);
+ setState(304);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(286);
+ setState(302);
match(CAST_OP);
- setState(287);
+ setState(303);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(290);
+ setState(306);
match(COLON);
- setState(291);
+ setState(307);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -1482,14 +1559,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
enterRule(_localctx, 16, RULE_valueExpression);
try {
- setState(298);
+ setState(314);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(293);
+ setState(309);
operatorExpression(0);
}
break;
@@ -1497,11 +1574,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(294);
+ setState(310);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(295);
+ setState(311);
comparisonOperator();
- setState(296);
+ setState(312);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -1626,16 +1703,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(304);
+ setState(320);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
case 1:
{
_localctx = new OperatorExpressionDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(301);
+ setState(317);
primaryExpression(0);
}
break;
@@ -1644,7 +1721,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(302);
+ setState(318);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1655,31 +1732,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(303);
+ setState(319);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(314);
+ setState(330);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,18,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(312);
+ setState(328);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
case 1:
{
_localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState));
((ArithmeticBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression);
- setState(306);
+ setState(322);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(307);
+ setState(323);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 7L) != 0)) ) {
@@ -1690,7 +1767,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(308);
+ setState(324);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -1699,9 +1776,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(309);
+ setState(325);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(310);
+ setState(326);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1712,16 +1789,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(311);
+ setState(327);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(316);
+ setState(332);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,18,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
}
}
}
@@ -1877,16 +1954,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(325);
+ setState(341);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
case 1:
{
_localctx = new ConstantDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(318);
+ setState(334);
constant();
}
break;
@@ -1895,7 +1972,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(319);
+ setState(335);
qualifiedName();
}
break;
@@ -1904,7 +1981,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(320);
+ setState(336);
functionExpression();
}
break;
@@ -1913,19 +1990,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(321);
+ setState(337);
match(LP);
- setState(322);
+ setState(338);
booleanExpression(0);
- setState(323);
+ setState(339);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(332);
+ setState(348);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,22,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -1934,18 +2011,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(327);
+ setState(343);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(328);
+ setState(344);
match(CAST_OP);
- setState(329);
+ setState(345);
dataType();
}
}
}
- setState(334);
+ setState(350);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,22,_ctx);
}
}
}
@@ -2009,16 +2086,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(335);
+ setState(351);
functionName();
- setState(336);
+ setState(352);
match(LP);
- setState(350);
+ setState(366);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASTERISK:
{
- setState(337);
+ setState(353);
match(ASTERISK);
}
break;
@@ -2041,34 +2118,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
case QUOTED_IDENTIFIER:
{
{
- setState(338);
+ setState(354);
booleanExpression(0);
- setState(343);
+ setState(359);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,21,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,23,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(339);
+ setState(355);
match(COMMA);
- setState(340);
+ setState(356);
booleanExpression(0);
}
}
}
- setState(345);
+ setState(361);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,21,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,23,_ctx);
}
- setState(348);
+ setState(364);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(346);
+ setState(362);
match(COMMA);
- setState(347);
+ setState(363);
mapExpression();
}
}
@@ -2081,7 +2158,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
default:
break;
}
- setState(352);
+ setState(368);
match(RP);
}
}
@@ -2127,7 +2204,7 @@ public final FunctionNameContext functionName() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(354);
+ setState(370);
identifierOrParameter();
}
}
@@ -2183,27 +2260,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(356);
+ setState(372);
match(LEFT_BRACES);
- setState(357);
+ setState(373);
entryExpression();
- setState(362);
+ setState(378);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(358);
+ setState(374);
match(COMMA);
- setState(359);
+ setState(375);
entryExpression();
}
}
- setState(364);
+ setState(380);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(365);
+ setState(381);
match(RIGHT_BRACES);
}
}
@@ -2255,11 +2332,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(367);
+ setState(383);
((EntryExpressionContext)_localctx).key = string();
- setState(368);
+ setState(384);
match(COLON);
- setState(369);
+ setState(385);
((EntryExpressionContext)_localctx).value = constant();
}
}
@@ -2317,7 +2394,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(371);
+ setState(387);
identifier();
}
}
@@ -2364,9 +2441,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(373);
+ setState(389);
match(ROW);
- setState(374);
+ setState(390);
fields();
}
}
@@ -2420,25 +2497,25 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(376);
+ setState(392);
field();
- setState(381);
+ setState(397);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(377);
+ setState(393);
match(COMMA);
- setState(378);
+ setState(394);
field();
}
}
}
- setState(383);
+ setState(399);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
}
}
}
@@ -2488,19 +2565,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(387);
+ setState(403);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
case 1:
{
- setState(384);
+ setState(400);
qualifiedName();
- setState(385);
+ setState(401);
match(ASSIGN);
}
break;
}
- setState(389);
+ setState(405);
booleanExpression(0);
}
}
@@ -2554,25 +2631,25 @@ public final RerankFieldsContext rerankFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(391);
+ setState(407);
rerankField();
- setState(396);
+ setState(412);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(392);
+ setState(408);
match(COMMA);
- setState(393);
+ setState(409);
rerankField();
}
}
}
- setState(398);
+ setState(414);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
}
}
}
@@ -2622,16 +2699,16 @@ public final RerankFieldContext rerankField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(399);
+ setState(415);
qualifiedName();
- setState(402);
+ setState(418);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
case 1:
{
- setState(400);
+ setState(416);
match(ASSIGN);
- setState(401);
+ setState(417);
booleanExpression(0);
}
break;
@@ -2692,34 +2769,34 @@ public final FromCommandContext fromCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(404);
+ setState(420);
match(FROM);
- setState(405);
+ setState(421);
indexPattern();
- setState(410);
+ setState(426);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(406);
+ setState(422);
match(COMMA);
- setState(407);
+ setState(423);
indexPattern();
}
}
}
- setState(412);
+ setState(428);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,29,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
}
- setState(414);
+ setState(430);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
case 1:
{
- setState(413);
+ setState(429);
metadata();
}
break;
@@ -2777,35 +2854,35 @@ public final IndexPatternContext indexPattern() throws RecognitionException {
IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState());
enterRule(_localctx, 44, RULE_indexPattern);
try {
- setState(425);
+ setState(441);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(416);
+ setState(432);
clusterString();
- setState(417);
+ setState(433);
match(COLON);
- setState(418);
+ setState(434);
unquotedIndexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(420);
+ setState(436);
unquotedIndexString();
- setState(421);
+ setState(437);
match(CAST_OP);
- setState(422);
+ setState(438);
selectorString();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(424);
+ setState(440);
indexString();
}
break;
@@ -2851,7 +2928,7 @@ public final ClusterStringContext clusterString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(427);
+ setState(443);
match(UNQUOTED_SOURCE);
}
}
@@ -2895,7 +2972,7 @@ public final SelectorStringContext selectorString() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(429);
+ setState(445);
match(UNQUOTED_SOURCE);
}
}
@@ -2939,7 +3016,7 @@ public final UnquotedIndexStringContext unquotedIndexString() throws Recognition
try {
enterOuterAlt(_localctx, 1);
{
- setState(431);
+ setState(447);
match(UNQUOTED_SOURCE);
}
}
@@ -2985,7 +3062,7 @@ public final IndexStringContext indexString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(433);
+ setState(449);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -3040,20 +3117,20 @@ public final MetadataContext metadata() throws RecognitionException {
MetadataContext _localctx = new MetadataContext(_ctx, getState());
enterRule(_localctx, 54, RULE_metadata);
try {
- setState(437);
+ setState(453);
_errHandler.sync(this);
switch (_input.LA(1)) {
case METADATA:
enterOuterAlt(_localctx, 1);
{
- setState(435);
+ setState(451);
metadataOption();
}
break;
case OPENING_BRACKET:
enterOuterAlt(_localctx, 2);
{
- setState(436);
+ setState(452);
deprecated_metadata();
}
break;
@@ -3110,27 +3187,27 @@ public final MetadataOptionContext metadataOption() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(439);
+ setState(455);
match(METADATA);
- setState(440);
+ setState(456);
match(UNQUOTED_SOURCE);
- setState(445);
+ setState(461);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,35,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(441);
+ setState(457);
match(COMMA);
- setState(442);
+ setState(458);
match(UNQUOTED_SOURCE);
}
}
}
- setState(447);
+ setState(463);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,35,_ctx);
}
}
}
@@ -3177,11 +3254,11 @@ public final Deprecated_metadataContext deprecated_metadata() throws Recognition
try {
enterOuterAlt(_localctx, 1);
{
- setState(448);
+ setState(464);
match(OPENING_BRACKET);
- setState(449);
+ setState(465);
metadataOption();
- setState(450);
+ setState(466);
match(CLOSING_BRACKET);
}
}
@@ -3245,46 +3322,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(452);
+ setState(468);
match(DEV_METRICS);
- setState(453);
+ setState(469);
indexPattern();
- setState(458);
+ setState(474);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,34,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(454);
+ setState(470);
match(COMMA);
- setState(455);
+ setState(471);
indexPattern();
}
}
}
- setState(460);
+ setState(476);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,34,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,36,_ctx);
}
- setState(462);
+ setState(478);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
case 1:
{
- setState(461);
+ setState(477);
((MetricsCommandContext)_localctx).aggregates = aggFields();
}
break;
}
- setState(466);
+ setState(482);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(464);
+ setState(480);
match(BY);
- setState(465);
+ setState(481);
((MetricsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3334,9 +3411,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(468);
+ setState(484);
match(EVAL);
- setState(469);
+ setState(485);
fields();
}
}
@@ -3389,26 +3466,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(471);
+ setState(487);
match(STATS);
- setState(473);
+ setState(489);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
case 1:
{
- setState(472);
+ setState(488);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(477);
+ setState(493);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
- setState(475);
+ setState(491);
match(BY);
- setState(476);
+ setState(492);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3465,25 +3542,25 @@ public final AggFieldsContext aggFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(479);
+ setState(495);
aggField();
- setState(484);
+ setState(500);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(480);
+ setState(496);
match(COMMA);
- setState(481);
+ setState(497);
aggField();
}
}
}
- setState(486);
+ setState(502);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
}
}
}
@@ -3533,16 +3610,16 @@ public final AggFieldContext aggField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(487);
+ setState(503);
field();
- setState(490);
+ setState(506);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) {
case 1:
{
- setState(488);
+ setState(504);
match(WHERE);
- setState(489);
+ setState(505);
booleanExpression(0);
}
break;
@@ -3599,25 +3676,25 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(492);
+ setState(508);
identifierOrParameter();
- setState(497);
+ setState(513);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(493);
+ setState(509);
match(DOT);
- setState(494);
+ setState(510);
identifierOrParameter();
}
}
}
- setState(499);
+ setState(515);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
}
}
}
@@ -3671,25 +3748,25 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(500);
+ setState(516);
identifierPattern();
- setState(505);
+ setState(521);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(501);
+ setState(517);
match(DOT);
- setState(502);
+ setState(518);
identifierPattern();
}
}
}
- setState(507);
+ setState(523);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
}
}
}
@@ -3743,25 +3820,25 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(508);
+ setState(524);
qualifiedNamePattern();
- setState(513);
+ setState(529);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(509);
+ setState(525);
match(COMMA);
- setState(510);
+ setState(526);
qualifiedNamePattern();
}
}
}
- setState(515);
+ setState(531);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,45,_ctx);
}
}
}
@@ -3807,7 +3884,7 @@ public final IdentifierContext identifier() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(516);
+ setState(532);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -3863,13 +3940,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
enterRule(_localctx, 78, RULE_identifierPattern);
try {
- setState(521);
+ setState(537);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(518);
+ setState(534);
match(ID_PATTERN);
}
break;
@@ -3877,7 +3954,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(519);
+ setState(535);
parameter();
}
break;
@@ -3885,7 +3962,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(520);
+ setState(536);
doubleParameter();
}
break;
@@ -4160,14 +4237,14 @@ public final ConstantContext constant() throws RecognitionException {
enterRule(_localctx, 80, RULE_constant);
int _la;
try {
- setState(565);
+ setState(581);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(523);
+ setState(539);
match(NULL);
}
break;
@@ -4175,9 +4252,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(524);
+ setState(540);
integerValue();
- setState(525);
+ setState(541);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -4185,7 +4262,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(527);
+ setState(543);
decimalValue();
}
break;
@@ -4193,7 +4270,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(528);
+ setState(544);
integerValue();
}
break;
@@ -4201,7 +4278,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(529);
+ setState(545);
booleanValue();
}
break;
@@ -4209,7 +4286,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(530);
+ setState(546);
parameter();
}
break;
@@ -4217,7 +4294,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(531);
+ setState(547);
string();
}
break;
@@ -4225,27 +4302,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(532);
+ setState(548);
match(OPENING_BRACKET);
- setState(533);
+ setState(549);
numericValue();
- setState(538);
+ setState(554);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(534);
+ setState(550);
match(COMMA);
- setState(535);
+ setState(551);
numericValue();
}
}
- setState(540);
+ setState(556);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(541);
+ setState(557);
match(CLOSING_BRACKET);
}
break;
@@ -4253,27 +4330,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(543);
+ setState(559);
match(OPENING_BRACKET);
- setState(544);
+ setState(560);
booleanValue();
- setState(549);
+ setState(565);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(545);
+ setState(561);
match(COMMA);
- setState(546);
+ setState(562);
booleanValue();
}
}
- setState(551);
+ setState(567);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(552);
+ setState(568);
match(CLOSING_BRACKET);
}
break;
@@ -4281,27 +4358,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(554);
+ setState(570);
match(OPENING_BRACKET);
- setState(555);
+ setState(571);
string();
- setState(560);
+ setState(576);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(556);
+ setState(572);
match(COMMA);
- setState(557);
+ setState(573);
string();
}
}
- setState(562);
+ setState(578);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(563);
+ setState(579);
match(CLOSING_BRACKET);
}
break;
@@ -4375,14 +4452,14 @@ public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
enterRule(_localctx, 82, RULE_parameter);
try {
- setState(569);
+ setState(585);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(567);
+ setState(583);
match(PARAM);
}
break;
@@ -4390,7 +4467,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(568);
+ setState(584);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -4466,14 +4543,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
enterRule(_localctx, 84, RULE_doubleParameter);
try {
- setState(573);
+ setState(589);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(571);
+ setState(587);
match(DOUBLE_PARAMS);
}
break;
@@ -4481,7 +4558,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(572);
+ setState(588);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -4535,14 +4612,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
enterRule(_localctx, 86, RULE_identifierOrParameter);
try {
- setState(578);
+ setState(594);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(575);
+ setState(591);
identifier();
}
break;
@@ -4550,7 +4627,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(576);
+ setState(592);
parameter();
}
break;
@@ -4558,7 +4635,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(577);
+ setState(593);
doubleParameter();
}
break;
@@ -4609,9 +4686,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(580);
+ setState(596);
match(LIMIT);
- setState(581);
+ setState(597);
constant();
}
}
@@ -4666,27 +4743,27 @@ public final SortCommandContext sortCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(583);
+ setState(599);
match(SORT);
- setState(584);
+ setState(600);
orderExpression();
- setState(589);
+ setState(605);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,52,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(585);
+ setState(601);
match(COMMA);
- setState(586);
+ setState(602);
orderExpression();
}
}
}
- setState(591);
+ setState(607);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,52,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
}
}
}
@@ -4740,14 +4817,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(592);
+ setState(608);
booleanExpression(0);
- setState(594);
+ setState(610);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) {
case 1:
{
- setState(593);
+ setState(609);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -4761,14 +4838,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(598);
+ setState(614);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
case 1:
{
- setState(596);
+ setState(612);
match(NULLS);
- setState(597);
+ setState(613);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -4827,9 +4904,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(600);
+ setState(616);
match(KEEP);
- setState(601);
+ setState(617);
qualifiedNamePatterns();
}
}
@@ -4876,9 +4953,9 @@ public final DropCommandContext dropCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(603);
+ setState(619);
match(DROP);
- setState(604);
+ setState(620);
qualifiedNamePatterns();
}
}
@@ -4933,27 +5010,27 @@ public final RenameCommandContext renameCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(606);
+ setState(622);
match(RENAME);
- setState(607);
+ setState(623);
renameClause();
- setState(612);
+ setState(628);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(608);
+ setState(624);
match(COMMA);
- setState(609);
+ setState(625);
renameClause();
}
}
}
- setState(614);
+ setState(630);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
}
}
}
@@ -5004,28 +5081,28 @@ public final RenameClauseContext renameClause() throws RecognitionException {
RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState());
enterRule(_localctx, 100, RULE_renameClause);
try {
- setState(623);
+ setState(639);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(615);
+ setState(631);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(616);
+ setState(632);
match(AS);
- setState(617);
+ setState(633);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(619);
+ setState(635);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(620);
+ setState(636);
match(ASSIGN);
- setState(621);
+ setState(637);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
}
break;
@@ -5080,18 +5157,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(625);
+ setState(641);
match(DISSECT);
- setState(626);
+ setState(642);
primaryExpression(0);
- setState(627);
+ setState(643);
string();
- setState(629);
+ setState(645);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
case 1:
{
- setState(628);
+ setState(644);
commandOptions();
}
break;
@@ -5144,11 +5221,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(631);
+ setState(647);
match(GROK);
- setState(632);
+ setState(648);
primaryExpression(0);
- setState(633);
+ setState(649);
string();
}
}
@@ -5195,9 +5272,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(635);
+ setState(651);
match(MV_EXPAND);
- setState(636);
+ setState(652);
qualifiedName();
}
}
@@ -5251,25 +5328,25 @@ public final CommandOptionsContext commandOptions() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(638);
+ setState(654);
commandOption();
- setState(643);
+ setState(659);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,58,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,60,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(639);
+ setState(655);
match(COMMA);
- setState(640);
+ setState(656);
commandOption();
}
}
}
- setState(645);
+ setState(661);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,58,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,60,_ctx);
}
}
}
@@ -5319,11 +5396,11 @@ public final CommandOptionContext commandOption() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(646);
+ setState(662);
identifier();
- setState(647);
+ setState(663);
match(ASSIGN);
- setState(648);
+ setState(664);
constant();
}
}
@@ -5369,7 +5446,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(650);
+ setState(666);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -5424,20 +5501,20 @@ public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
enterRule(_localctx, 114, RULE_numericValue);
try {
- setState(654);
+ setState(670);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(652);
+ setState(668);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(653);
+ setState(669);
integerValue();
}
break;
@@ -5486,12 +5563,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(657);
+ setState(673);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(656);
+ setState(672);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5504,7 +5581,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(659);
+ setState(675);
match(DECIMAL_LITERAL);
}
}
@@ -5551,12 +5628,12 @@ public final IntegerValueContext integerValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(662);
+ setState(678);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(661);
+ setState(677);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5569,7 +5646,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(664);
+ setState(680);
match(INTEGER_LITERAL);
}
}
@@ -5613,7 +5690,7 @@ public final StringContext string() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(666);
+ setState(682);
match(QUOTED_STRING);
}
}
@@ -5663,7 +5740,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(668);
+ setState(684);
_la = _input.LA(1);
if ( !(((((_la - 62)) & ~0x3f) == 0 && ((1L << (_la - 62)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -5718,9 +5795,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(670);
+ setState(686);
match(EXPLAIN);
- setState(671);
+ setState(687);
subqueryExpression();
}
}
@@ -5768,11 +5845,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(673);
+ setState(689);
match(OPENING_BRACKET);
- setState(674);
+ setState(690);
query(0);
- setState(675);
+ setState(691);
match(CLOSING_BRACKET);
}
}
@@ -5829,9 +5906,9 @@ public final ShowCommandContext showCommand() throws RecognitionException {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(677);
+ setState(693);
match(SHOW);
- setState(678);
+ setState(694);
match(INFO);
}
}
@@ -5896,48 +5973,48 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(680);
+ setState(696);
match(ENRICH);
- setState(681);
+ setState(697);
((EnrichCommandContext)_localctx).policyName = enrichPolicyName();
- setState(684);
+ setState(700);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
{
- setState(682);
+ setState(698);
match(ON);
- setState(683);
+ setState(699);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(695);
+ setState(711);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
case 1:
{
- setState(686);
+ setState(702);
match(WITH);
- setState(687);
+ setState(703);
enrichWithClause();
- setState(692);
+ setState(708);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,63,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,65,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(688);
+ setState(704);
match(COMMA);
- setState(689);
+ setState(705);
enrichWithClause();
}
}
}
- setState(694);
+ setState(710);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,63,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,65,_ctx);
}
}
break;
@@ -5986,7 +6063,7 @@ public final EnrichPolicyNameContext enrichPolicyName() throws RecognitionExcept
try {
enterOuterAlt(_localctx, 1);
{
- setState(697);
+ setState(713);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==ENRICH_POLICY_NAME) ) {
_errHandler.recoverInline(this);
@@ -6046,19 +6123,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept
try {
enterOuterAlt(_localctx, 1);
{
- setState(702);
+ setState(718);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
case 1:
{
- setState(699);
+ setState(715);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(700);
+ setState(716);
match(ASSIGN);
}
break;
}
- setState(704);
+ setState(720);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -6115,34 +6192,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(706);
+ setState(722);
match(CHANGE_POINT);
- setState(707);
+ setState(723);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(710);
+ setState(726);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
case 1:
{
- setState(708);
+ setState(724);
match(ON);
- setState(709);
+ setState(725);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(717);
+ setState(733);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
case 1:
{
- setState(712);
+ setState(728);
match(AS);
- setState(713);
+ setState(729);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(714);
+ setState(730);
match(COMMA);
- setState(715);
+ setState(731);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -6193,9 +6270,9 @@ public final SampleCommandContext sampleCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(719);
+ setState(735);
match(SAMPLE);
- setState(720);
+ setState(736);
((SampleCommandContext)_localctx).probability = constant();
}
}
@@ -6248,13 +6325,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(722);
+ setState(738);
match(DEV_LOOKUP);
- setState(723);
+ setState(739);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(724);
+ setState(740);
match(ON);
- setState(725);
+ setState(741);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -6307,18 +6384,18 @@ public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(727);
+ setState(743);
match(DEV_INLINESTATS);
- setState(728);
+ setState(744);
((InlinestatsCommandContext)_localctx).stats = aggFields();
- setState(731);
+ setState(747);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) {
case 1:
{
- setState(729);
+ setState(745);
match(BY);
- setState(730);
+ setState(746);
((InlinestatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -6376,7 +6453,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(733);
+ setState(749);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 201850880L) != 0)) ) {
@@ -6387,11 +6464,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(734);
+ setState(750);
match(JOIN);
- setState(735);
+ setState(751);
joinTarget();
- setState(736);
+ setState(752);
joinCondition();
}
}
@@ -6438,7 +6515,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(738);
+ setState(754);
((JoinTargetContext)_localctx).index = indexPattern();
}
}
@@ -6493,27 +6570,27 @@ public final JoinConditionContext joinCondition() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(740);
+ setState(756);
match(ON);
- setState(741);
+ setState(757);
joinPredicate();
- setState(746);
+ setState(762);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(742);
+ setState(758);
match(COMMA);
- setState(743);
+ setState(759);
joinPredicate();
}
}
}
- setState(748);
+ setState(764);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,71,_ctx);
}
}
}
@@ -6559,7 +6636,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(749);
+ setState(765);
valueExpression();
}
}
@@ -6613,25 +6690,25 @@ public final InferenceCommandOptionsContext inferenceCommandOptions() throws Rec
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(751);
+ setState(767);
inferenceCommandOption();
- setState(756);
+ setState(772);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,70,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(752);
+ setState(768);
match(COMMA);
- setState(753);
+ setState(769);
inferenceCommandOption();
}
}
}
- setState(758);
+ setState(774);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,70,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
}
}
}
@@ -6681,11 +6758,11 @@ public final InferenceCommandOptionContext inferenceCommandOption() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(759);
+ setState(775);
identifier();
- setState(760);
+ setState(776);
match(ASSIGN);
- setState(761);
+ setState(777);
inferenceCommandOptionValue();
}
}
@@ -6732,7 +6809,7 @@ public final InferenceCommandOptionValueContext inferenceCommandOptionValue() th
InferenceCommandOptionValueContext _localctx = new InferenceCommandOptionValueContext(_ctx, getState());
enterRule(_localctx, 156, RULE_inferenceCommandOptionValue);
try {
- setState(765);
+ setState(781);
_errHandler.sync(this);
switch (_input.LA(1)) {
case QUOTED_STRING:
@@ -6748,7 +6825,7 @@ public final InferenceCommandOptionValueContext inferenceCommandOptionValue() th
case OPENING_BRACKET:
enterOuterAlt(_localctx, 1);
{
- setState(763);
+ setState(779);
constant();
}
break;
@@ -6756,7 +6833,7 @@ public final InferenceCommandOptionValueContext inferenceCommandOptionValue() th
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 2);
{
- setState(764);
+ setState(780);
identifier();
}
break;
@@ -6816,22 +6893,22 @@ public final RerankCommandContext rerankCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(767);
+ setState(783);
match(DEV_RERANK);
- setState(768);
+ setState(784);
((RerankCommandContext)_localctx).queryText = constant();
- setState(769);
+ setState(785);
match(ON);
- setState(770);
+ setState(786);
rerankFields();
- setState(773);
+ setState(789);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) {
case 1:
{
- setState(771);
+ setState(787);
match(WITH);
- setState(772);
+ setState(788);
inferenceCommandOptions();
}
break;
@@ -6892,25 +6969,25 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce
try {
enterOuterAlt(_localctx, 1);
{
- setState(775);
+ setState(791);
match(COMPLETION);
- setState(779);
+ setState(795);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,73,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) {
case 1:
{
- setState(776);
+ setState(792);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
- setState(777);
+ setState(793);
match(ASSIGN);
}
break;
}
- setState(781);
+ setState(797);
((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
- setState(782);
+ setState(798);
match(WITH);
- setState(783);
+ setState(799);
((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
}
}
@@ -6994,7 +7071,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
}
public static final String _serializedATN =
- "\u0004\u0001\u008b\u0312\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008b\u0322\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"+
@@ -7034,455 +7111,466 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003"+
"\u0006\u010e\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
"\u0006\u0005\u0006\u0115\b\u0006\n\u0006\f\u0006\u0118\t\u0006\u0001\u0006"+
- "\u0001\u0006\u0003\u0006\u011c\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007"+
- "\u0003\u0007\u0121\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b"+
- "\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u012b\b\b\u0001\t\u0001\t\u0001"+
- "\t\u0001\t\u0003\t\u0131\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+
- "\t\u0005\t\u0139\b\t\n\t\f\t\u013c\t\t\u0001\n\u0001\n\u0001\n\u0001\n"+
- "\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u0146\b\n\u0001\n\u0001\n\u0001"+
- "\n\u0005\n\u014b\b\n\n\n\f\n\u014e\t\n\u0001\u000b\u0001\u000b\u0001\u000b"+
- "\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u0156\b\u000b\n\u000b"+
- "\f\u000b\u0159\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u015d\b\u000b"+
- "\u0003\u000b\u015f\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001"+
- "\r\u0001\r\u0001\r\u0001\r\u0005\r\u0169\b\r\n\r\f\r\u016c\t\r\u0001\r"+
- "\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001"+
- "\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+
- "\u0011\u0005\u0011\u017c\b\u0011\n\u0011\f\u0011\u017f\t\u0011\u0001\u0012"+
- "\u0001\u0012\u0001\u0012\u0003\u0012\u0184\b\u0012\u0001\u0012\u0001\u0012"+
- "\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u018b\b\u0013\n\u0013"+
- "\f\u0013\u018e\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014"+
- "\u0193\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015"+
- "\u0199\b\u0015\n\u0015\f\u0015\u019c\t\u0015\u0001\u0015\u0003\u0015\u019f"+
- "\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+
- "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u01aa\b\u0016\u0001"+
- "\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+
- "\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u01b6\b\u001b\u0001"+
- "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u01bc\b\u001c\n"+
- "\u001c\f\u001c\u01bf\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
- "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01c9"+
- "\b\u001e\n\u001e\f\u001e\u01cc\t\u001e\u0001\u001e\u0003\u001e\u01cf\b"+
- "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01d3\b\u001e\u0001\u001f\u0001"+
- "\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01da\b \u0001 \u0001 \u0003 "+
- "\u01de\b \u0001!\u0001!\u0001!\u0005!\u01e3\b!\n!\f!\u01e6\t!\u0001\""+
- "\u0001\"\u0001\"\u0003\"\u01eb\b\"\u0001#\u0001#\u0001#\u0005#\u01f0\b"+
- "#\n#\f#\u01f3\t#\u0001$\u0001$\u0001$\u0005$\u01f8\b$\n$\f$\u01fb\t$\u0001"+
- "%\u0001%\u0001%\u0005%\u0200\b%\n%\f%\u0203\t%\u0001&\u0001&\u0001\'\u0001"+
- "\'\u0001\'\u0003\'\u020a\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
- "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0219\b(\n("+
- "\f(\u021c\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0224\b"+
- "(\n(\f(\u0227\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u022f"+
- "\b(\n(\f(\u0232\t(\u0001(\u0001(\u0003(\u0236\b(\u0001)\u0001)\u0003)"+
- "\u023a\b)\u0001*\u0001*\u0003*\u023e\b*\u0001+\u0001+\u0001+\u0003+\u0243"+
- "\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0005-\u024c\b-\n"+
- "-\f-\u024f\t-\u0001.\u0001.\u0003.\u0253\b.\u0001.\u0001.\u0003.\u0257"+
- "\b.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u00011\u00011\u0001"+
- "1\u00051\u0263\b1\n1\f1\u0266\t1\u00012\u00012\u00012\u00012\u00012\u0001"+
- "2\u00012\u00012\u00032\u0270\b2\u00013\u00013\u00013\u00013\u00033\u0276"+
- "\b3\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u00016\u00016\u0001"+
- "6\u00056\u0282\b6\n6\f6\u0285\t6\u00017\u00017\u00017\u00017\u00018\u0001"+
- "8\u00019\u00019\u00039\u028f\b9\u0001:\u0003:\u0292\b:\u0001:\u0001:\u0001"+
- ";\u0003;\u0297\b;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001>\u0001"+
- ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001"+
- "A\u0001A\u0001A\u0003A\u02ad\bA\u0001A\u0001A\u0001A\u0001A\u0005A\u02b3"+
- "\bA\nA\fA\u02b6\tA\u0003A\u02b8\bA\u0001B\u0001B\u0001C\u0001C\u0001C"+
- "\u0003C\u02bf\bC\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0003D\u02c7"+
- "\bD\u0001D\u0001D\u0001D\u0001D\u0001D\u0003D\u02ce\bD\u0001E\u0001E\u0001"+
- "E\u0001F\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0003"+
- "G\u02dc\bG\u0001H\u0001H\u0001H\u0001H\u0001H\u0001I\u0001I\u0001J\u0001"+
- "J\u0001J\u0001J\u0005J\u02e9\bJ\nJ\fJ\u02ec\tJ\u0001K\u0001K\u0001L\u0001"+
- "L\u0001L\u0005L\u02f3\bL\nL\fL\u02f6\tL\u0001M\u0001M\u0001M\u0001M\u0001"+
- "N\u0001N\u0003N\u02fe\bN\u0001O\u0001O\u0001O\u0001O\u0001O\u0001O\u0003"+
- "O\u0306\bO\u0001P\u0001P\u0001P\u0001P\u0003P\u030c\bP\u0001P\u0001P\u0001"+
- "P\u0001P\u0001P\u0000\u0004\u0002\n\u0012\u0014Q\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"+
- "\u0000\n\u0001\u0000EF\u0001\u0000GI\u0002\u0000!!ZZ\u0001\u0000QR\u0002"+
- "\u0000%%++\u0002\u0000..11\u0002\u0000--<<\u0002\u0000>>@D\u0002\u0000"+
- "!!ff\u0002\u0000\u0013\u0013\u001a\u001b\u0331\u0000\u00a2\u0001\u0000"+
- "\u0000\u0000\u0002\u00a5\u0001\u0000\u0000\u0000\u0004\u00b6\u0001\u0000"+
- "\u0000\u0000\u0006\u00ce\u0001\u0000\u0000\u0000\b\u00d0\u0001\u0000\u0000"+
- "\u0000\n\u00f0\u0001\u0000\u0000\u0000\f\u011b\u0001\u0000\u0000\u0000"+
- "\u000e\u011d\u0001\u0000\u0000\u0000\u0010\u012a\u0001\u0000\u0000\u0000"+
- "\u0012\u0130\u0001\u0000\u0000\u0000\u0014\u0145\u0001\u0000\u0000\u0000"+
- "\u0016\u014f\u0001\u0000\u0000\u0000\u0018\u0162\u0001\u0000\u0000\u0000"+
- "\u001a\u0164\u0001\u0000\u0000\u0000\u001c\u016f\u0001\u0000\u0000\u0000"+
- "\u001e\u0173\u0001\u0000\u0000\u0000 \u0175\u0001\u0000\u0000\u0000\""+
- "\u0178\u0001\u0000\u0000\u0000$\u0183\u0001\u0000\u0000\u0000&\u0187\u0001"+
- "\u0000\u0000\u0000(\u018f\u0001\u0000\u0000\u0000*\u0194\u0001\u0000\u0000"+
- "\u0000,\u01a9\u0001\u0000\u0000\u0000.\u01ab\u0001\u0000\u0000\u00000"+
- "\u01ad\u0001\u0000\u0000\u00002\u01af\u0001\u0000\u0000\u00004\u01b1\u0001"+
- "\u0000\u0000\u00006\u01b5\u0001\u0000\u0000\u00008\u01b7\u0001\u0000\u0000"+
- "\u0000:\u01c0\u0001\u0000\u0000\u0000<\u01c4\u0001\u0000\u0000\u0000>"+
- "\u01d4\u0001\u0000\u0000\u0000@\u01d7\u0001\u0000\u0000\u0000B\u01df\u0001"+
- "\u0000\u0000\u0000D\u01e7\u0001\u0000\u0000\u0000F\u01ec\u0001\u0000\u0000"+
- "\u0000H\u01f4\u0001\u0000\u0000\u0000J\u01fc\u0001\u0000\u0000\u0000L"+
- "\u0204\u0001\u0000\u0000\u0000N\u0209\u0001\u0000\u0000\u0000P\u0235\u0001"+
- "\u0000\u0000\u0000R\u0239\u0001\u0000\u0000\u0000T\u023d\u0001\u0000\u0000"+
- "\u0000V\u0242\u0001\u0000\u0000\u0000X\u0244\u0001\u0000\u0000\u0000Z"+
- "\u0247\u0001\u0000\u0000\u0000\\\u0250\u0001\u0000\u0000\u0000^\u0258"+
- "\u0001\u0000\u0000\u0000`\u025b\u0001\u0000\u0000\u0000b\u025e\u0001\u0000"+
- "\u0000\u0000d\u026f\u0001\u0000\u0000\u0000f\u0271\u0001\u0000\u0000\u0000"+
- "h\u0277\u0001\u0000\u0000\u0000j\u027b\u0001\u0000\u0000\u0000l\u027e"+
- "\u0001\u0000\u0000\u0000n\u0286\u0001\u0000\u0000\u0000p\u028a\u0001\u0000"+
- "\u0000\u0000r\u028e\u0001\u0000\u0000\u0000t\u0291\u0001\u0000\u0000\u0000"+
- "v\u0296\u0001\u0000\u0000\u0000x\u029a\u0001\u0000\u0000\u0000z\u029c"+
- "\u0001\u0000\u0000\u0000|\u029e\u0001\u0000\u0000\u0000~\u02a1\u0001\u0000"+
- "\u0000\u0000\u0080\u02a5\u0001\u0000\u0000\u0000\u0082\u02a8\u0001\u0000"+
- "\u0000\u0000\u0084\u02b9\u0001\u0000\u0000\u0000\u0086\u02be\u0001\u0000"+
- "\u0000\u0000\u0088\u02c2\u0001\u0000\u0000\u0000\u008a\u02cf\u0001\u0000"+
- "\u0000\u0000\u008c\u02d2\u0001\u0000\u0000\u0000\u008e\u02d7\u0001\u0000"+
- "\u0000\u0000\u0090\u02dd\u0001\u0000\u0000\u0000\u0092\u02e2\u0001\u0000"+
- "\u0000\u0000\u0094\u02e4\u0001\u0000\u0000\u0000\u0096\u02ed\u0001\u0000"+
- "\u0000\u0000\u0098\u02ef\u0001\u0000\u0000\u0000\u009a\u02f7\u0001\u0000"+
- "\u0000\u0000\u009c\u02fd\u0001\u0000\u0000\u0000\u009e\u02ff\u0001\u0000"+
- "\u0000\u0000\u00a0\u0307\u0001\u0000\u0000\u0000\u00a2\u00a3\u0003\u0002"+
- "\u0001\u0000\u00a3\u00a4\u0005\u0000\u0000\u0001\u00a4\u0001\u0001\u0000"+
- "\u0000\u0000\u00a5\u00a6\u0006\u0001\uffff\uffff\u0000\u00a6\u00a7\u0003"+
- "\u0004\u0002\u0000\u00a7\u00ad\u0001\u0000\u0000\u0000\u00a8\u00a9\n\u0001"+
- "\u0000\u0000\u00a9\u00aa\u0005 \u0000\u0000\u00aa\u00ac\u0003\u0006\u0003"+
- "\u0000\u00ab\u00a8\u0001\u0000\u0000\u0000\u00ac\u00af\u0001\u0000\u0000"+
- "\u0000\u00ad\u00ab\u0001\u0000\u0000\u0000\u00ad\u00ae\u0001\u0000\u0000"+
- "\u0000\u00ae\u0003\u0001\u0000\u0000\u0000\u00af\u00ad\u0001\u0000\u0000"+
- "\u0000\u00b0\u00b7\u0003|>\u0000\u00b1\u00b7\u0003*\u0015\u0000\u00b2"+
- "\u00b7\u0003 \u0010\u0000\u00b3\u00b7\u0003\u0080@\u0000\u00b4\u00b5\u0004"+
- "\u0002\u0001\u0000\u00b5\u00b7\u0003<\u001e\u0000\u00b6\u00b0\u0001\u0000"+
- "\u0000\u0000\u00b6\u00b1\u0001\u0000\u0000\u0000\u00b6\u00b2\u0001\u0000"+
- "\u0000\u0000\u00b6\u00b3\u0001\u0000\u0000\u0000\u00b6\u00b4\u0001\u0000"+
- "\u0000\u0000\u00b7\u0005\u0001\u0000\u0000\u0000\u00b8\u00cf\u0003>\u001f"+
- "\u0000\u00b9\u00cf\u0003\b\u0004\u0000\u00ba\u00cf\u0003^/\u0000\u00bb"+
- "\u00cf\u0003X,\u0000\u00bc\u00cf\u0003@ \u0000\u00bd\u00cf\u0003Z-\u0000"+
- "\u00be\u00cf\u0003`0\u0000\u00bf\u00cf\u0003b1\u0000\u00c0\u00cf\u0003"+
- "f3\u0000\u00c1\u00cf\u0003h4\u0000\u00c2\u00cf\u0003\u0082A\u0000\u00c3"+
- "\u00cf\u0003j5\u0000\u00c4\u00cf\u0003\u0090H\u0000\u00c5\u00cf\u0003"+
- "\u0088D\u0000\u00c6\u00cf\u0003\u00a0P\u0000\u00c7\u00cf\u0003\u008aE"+
- "\u0000\u00c8\u00c9\u0004\u0003\u0002\u0000\u00c9\u00cf\u0003\u008eG\u0000"+
- "\u00ca\u00cb\u0004\u0003\u0003\u0000\u00cb\u00cf\u0003\u008cF\u0000\u00cc"+
- "\u00cd\u0004\u0003\u0004\u0000\u00cd\u00cf\u0003\u009eO\u0000\u00ce\u00b8"+
- "\u0001\u0000\u0000\u0000\u00ce\u00b9\u0001\u0000\u0000\u0000\u00ce\u00ba"+
- "\u0001\u0000\u0000\u0000\u00ce\u00bb\u0001\u0000\u0000\u0000\u00ce\u00bc"+
- "\u0001\u0000\u0000\u0000\u00ce\u00bd\u0001\u0000\u0000\u0000\u00ce\u00be"+
- "\u0001\u0000\u0000\u0000\u00ce\u00bf\u0001\u0000\u0000\u0000\u00ce\u00c0"+
- "\u0001\u0000\u0000\u0000\u00ce\u00c1\u0001\u0000\u0000\u0000\u00ce\u00c2"+
- "\u0001\u0000\u0000\u0000\u00ce\u00c3\u0001\u0000\u0000\u0000\u00ce\u00c4"+
- "\u0001\u0000\u0000\u0000\u00ce\u00c5\u0001\u0000\u0000\u0000\u00ce\u00c6"+
- "\u0001\u0000\u0000\u0000\u00ce\u00c7\u0001\u0000\u0000\u0000\u00ce\u00c8"+
- "\u0001\u0000\u0000\u0000\u00ce\u00ca\u0001\u0000\u0000\u0000\u00ce\u00cc"+
- "\u0001\u0000\u0000\u0000\u00cf\u0007\u0001\u0000\u0000\u0000\u00d0\u00d1"+
- "\u0005\u0012\u0000\u0000\u00d1\u00d2\u0003\n\u0005\u0000\u00d2\t\u0001"+
- "\u0000\u0000\u0000\u00d3\u00d4\u0006\u0005\uffff\uffff\u0000\u00d4\u00d5"+
- "\u00054\u0000\u0000\u00d5\u00f1\u0003\n\u0005\b\u00d6\u00f1\u0003\u0010"+
- "\b\u0000\u00d7\u00f1\u0003\f\u0006\u0000\u00d8\u00da\u0003\u0010\b\u0000"+
- "\u00d9\u00db\u00054\u0000\u0000\u00da\u00d9\u0001\u0000\u0000\u0000\u00da"+
- "\u00db\u0001\u0000\u0000\u0000\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc"+
- "\u00dd\u0005/\u0000\u0000\u00dd\u00de\u00053\u0000\u0000\u00de\u00e3\u0003"+
- "\u0010\b\u0000\u00df\u00e0\u0005*\u0000\u0000\u00e0\u00e2\u0003\u0010"+
- "\b\u0000\u00e1\u00df\u0001\u0000\u0000\u0000\u00e2\u00e5\u0001\u0000\u0000"+
- "\u0000\u00e3\u00e1\u0001\u0000\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000"+
- "\u0000\u00e4\u00e6\u0001\u0000\u0000\u0000\u00e5\u00e3\u0001\u0000\u0000"+
- "\u0000\u00e6\u00e7\u0005;\u0000\u0000\u00e7\u00f1\u0001\u0000\u0000\u0000"+
- "\u00e8\u00e9\u0003\u0010\b\u0000\u00e9\u00eb\u00050\u0000\u0000\u00ea"+
- "\u00ec\u00054\u0000\u0000\u00eb\u00ea\u0001\u0000\u0000\u0000\u00eb\u00ec"+
- "\u0001\u0000\u0000\u0000\u00ec\u00ed\u0001\u0000\u0000\u0000\u00ed\u00ee"+
- "\u00055\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000\u00ef\u00f1\u0003"+
- "\u000e\u0007\u0000\u00f0\u00d3\u0001\u0000\u0000\u0000\u00f0\u00d6\u0001"+
- "\u0000\u0000\u0000\u00f0\u00d7\u0001\u0000\u0000\u0000\u00f0\u00d8\u0001"+
- "\u0000\u0000\u0000\u00f0\u00e8\u0001\u0000\u0000\u0000\u00f0\u00ef\u0001"+
- "\u0000\u0000\u0000\u00f1\u00fa\u0001\u0000\u0000\u0000\u00f2\u00f3\n\u0005"+
- "\u0000\u0000\u00f3\u00f4\u0005$\u0000\u0000\u00f4\u00f9\u0003\n\u0005"+
- "\u0006\u00f5\u00f6\n\u0004\u0000\u0000\u00f6\u00f7\u00058\u0000\u0000"+
- "\u00f7\u00f9\u0003\n\u0005\u0005\u00f8\u00f2\u0001\u0000\u0000\u0000\u00f8"+
- "\u00f5\u0001\u0000\u0000\u0000\u00f9\u00fc\u0001\u0000\u0000\u0000\u00fa"+
- "\u00f8\u0001\u0000\u0000\u0000\u00fa\u00fb\u0001\u0000\u0000\u0000\u00fb"+
- "\u000b\u0001\u0000\u0000\u0000\u00fc\u00fa\u0001\u0000\u0000\u0000\u00fd"+
- "\u00ff\u0003\u0010\b\u0000\u00fe\u0100\u00054\u0000\u0000\u00ff\u00fe"+
- "\u0001\u0000\u0000\u0000\u00ff\u0100\u0001\u0000\u0000\u0000\u0100\u0101"+
- "\u0001\u0000\u0000\u0000\u0101\u0102\u00052\u0000\u0000\u0102\u0103\u0003"+
- "x<\u0000\u0103\u011c\u0001\u0000\u0000\u0000\u0104\u0106\u0003\u0010\b"+
- "\u0000\u0105\u0107\u00054\u0000\u0000\u0106\u0105\u0001\u0000\u0000\u0000"+
- "\u0106\u0107\u0001\u0000\u0000\u0000\u0107\u0108\u0001\u0000\u0000\u0000"+
- "\u0108\u0109\u0005:\u0000\u0000\u0109\u010a\u0003x<\u0000\u010a\u011c"+
- "\u0001\u0000\u0000\u0000\u010b\u010d\u0003\u0010\b\u0000\u010c\u010e\u0005"+
- "4\u0000\u0000\u010d\u010c\u0001\u0000\u0000\u0000\u010d\u010e\u0001\u0000"+
- "\u0000\u0000\u010e\u010f\u0001\u0000\u0000\u0000\u010f\u0110\u00052\u0000"+
- "\u0000\u0110\u0111\u00053\u0000\u0000\u0111\u0116\u0003x<\u0000\u0112"+
- "\u0113\u0005*\u0000\u0000\u0113\u0115\u0003x<\u0000\u0114\u0112\u0001"+
- "\u0000\u0000\u0000\u0115\u0118\u0001\u0000\u0000\u0000\u0116\u0114\u0001"+
- "\u0000\u0000\u0000\u0116\u0117\u0001\u0000\u0000\u0000\u0117\u0119\u0001"+
- "\u0000\u0000\u0000\u0118\u0116\u0001\u0000\u0000\u0000\u0119\u011a\u0005"+
- ";\u0000\u0000\u011a\u011c\u0001\u0000\u0000\u0000\u011b\u00fd\u0001\u0000"+
- "\u0000\u0000\u011b\u0104\u0001\u0000\u0000\u0000\u011b\u010b\u0001\u0000"+
- "\u0000\u0000\u011c\r\u0001\u0000\u0000\u0000\u011d\u0120\u0003F#\u0000"+
- "\u011e\u011f\u0005(\u0000\u0000\u011f\u0121\u0003\u001e\u000f\u0000\u0120"+
- "\u011e\u0001\u0000\u0000\u0000\u0120\u0121\u0001\u0000\u0000\u0000\u0121"+
- "\u0122\u0001\u0000\u0000\u0000\u0122\u0123\u0005)\u0000\u0000\u0123\u0124"+
- "\u0003P(\u0000\u0124\u000f\u0001\u0000\u0000\u0000\u0125\u012b\u0003\u0012"+
- "\t\u0000\u0126\u0127\u0003\u0012\t\u0000\u0127\u0128\u0003z=\u0000\u0128"+
- "\u0129\u0003\u0012\t\u0000\u0129\u012b\u0001\u0000\u0000\u0000\u012a\u0125"+
- "\u0001\u0000\u0000\u0000\u012a\u0126\u0001\u0000\u0000\u0000\u012b\u0011"+
- "\u0001\u0000\u0000\u0000\u012c\u012d\u0006\t\uffff\uffff\u0000\u012d\u0131"+
- "\u0003\u0014\n\u0000\u012e\u012f\u0007\u0000\u0000\u0000\u012f\u0131\u0003"+
- "\u0012\t\u0003\u0130\u012c\u0001\u0000\u0000\u0000\u0130\u012e\u0001\u0000"+
- "\u0000\u0000\u0131\u013a\u0001\u0000\u0000\u0000\u0132\u0133\n\u0002\u0000"+
- "\u0000\u0133\u0134\u0007\u0001\u0000\u0000\u0134\u0139\u0003\u0012\t\u0003"+
- "\u0135\u0136\n\u0001\u0000\u0000\u0136\u0137\u0007\u0000\u0000\u0000\u0137"+
- "\u0139\u0003\u0012\t\u0002\u0138\u0132\u0001\u0000\u0000\u0000\u0138\u0135"+
- "\u0001\u0000\u0000\u0000\u0139\u013c\u0001\u0000\u0000\u0000\u013a\u0138"+
- "\u0001\u0000\u0000\u0000\u013a\u013b\u0001\u0000\u0000\u0000\u013b\u0013"+
- "\u0001\u0000\u0000\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013d\u013e"+
- "\u0006\n\uffff\uffff\u0000\u013e\u0146\u0003P(\u0000\u013f\u0146\u0003"+
- "F#\u0000\u0140\u0146\u0003\u0016\u000b\u0000\u0141\u0142\u00053\u0000"+
- "\u0000\u0142\u0143\u0003\n\u0005\u0000\u0143\u0144\u0005;\u0000\u0000"+
- "\u0144\u0146\u0001\u0000\u0000\u0000\u0145\u013d\u0001\u0000\u0000\u0000"+
- "\u0145\u013f\u0001\u0000\u0000\u0000\u0145\u0140\u0001\u0000\u0000\u0000"+
- "\u0145\u0141\u0001\u0000\u0000\u0000\u0146\u014c\u0001\u0000\u0000\u0000"+
- "\u0147\u0148\n\u0001\u0000\u0000\u0148\u0149\u0005(\u0000\u0000\u0149"+
- "\u014b\u0003\u001e\u000f\u0000\u014a\u0147\u0001\u0000\u0000\u0000\u014b"+
- "\u014e\u0001\u0000\u0000\u0000\u014c\u014a\u0001\u0000\u0000\u0000\u014c"+
- "\u014d\u0001\u0000\u0000\u0000\u014d\u0015\u0001\u0000\u0000\u0000\u014e"+
- "\u014c\u0001\u0000\u0000\u0000\u014f\u0150\u0003\u0018\f\u0000\u0150\u015e"+
- "\u00053\u0000\u0000\u0151\u015f\u0005G\u0000\u0000\u0152\u0157\u0003\n"+
- "\u0005\u0000\u0153\u0154\u0005*\u0000\u0000\u0154\u0156\u0003\n\u0005"+
- "\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0156\u0159\u0001\u0000\u0000"+
- "\u0000\u0157\u0155\u0001\u0000\u0000\u0000\u0157\u0158\u0001\u0000\u0000"+
- "\u0000\u0158\u015c\u0001\u0000\u0000\u0000\u0159\u0157\u0001\u0000\u0000"+
- "\u0000\u015a\u015b\u0005*\u0000\u0000\u015b\u015d\u0003\u001a\r\u0000"+
+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u011e\b\u0006\u0001\u0006"+
+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0005\u0006\u0125\b\u0006"+
+ "\n\u0006\f\u0006\u0128\t\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u012c"+
+ "\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u0131\b\u0007"+
+ "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+
+ "\b\u0003\b\u013b\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u0141\b\t"+
+ "\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005\t\u0149\b\t\n\t"+
+ "\f\t\u014c\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n"+
+ "\u0001\n\u0003\n\u0156\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u015b\b\n\n"+
+ "\n\f\n\u015e\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
+ "\u000b\u0001\u000b\u0005\u000b\u0166\b\u000b\n\u000b\f\u000b\u0169\t\u000b"+
+ "\u0001\u000b\u0001\u000b\u0003\u000b\u016d\b\u000b\u0003\u000b\u016f\b"+
+ "\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r"+
+ "\u0001\r\u0005\r\u0179\b\r\n\r\f\r\u017c\t\r\u0001\r\u0001\r\u0001\u000e"+
+ "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010"+
+ "\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011"+
+ "\u018c\b\u0011\n\u0011\f\u0011\u018f\t\u0011\u0001\u0012\u0001\u0012\u0001"+
+ "\u0012\u0003\u0012\u0194\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001"+
+ "\u0013\u0001\u0013\u0005\u0013\u019b\b\u0013\n\u0013\f\u0013\u019e\t\u0013"+
+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u01a3\b\u0014\u0001\u0015"+
+ "\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u01a9\b\u0015\n\u0015"+
+ "\f\u0015\u01ac\t\u0015\u0001\u0015\u0003\u0015\u01af\b\u0015\u0001\u0016"+
+ "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
+ "\u0001\u0016\u0001\u0016\u0003\u0016\u01ba\b\u0016\u0001\u0017\u0001\u0017"+
+ "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a"+
+ "\u0001\u001b\u0001\u001b\u0003\u001b\u01c6\b\u001b\u0001\u001c\u0001\u001c"+
+ "\u0001\u001c\u0001\u001c\u0005\u001c\u01cc\b\u001c\n\u001c\f\u001c\u01cf"+
+ "\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001"+
+ "\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01d9\b\u001e\n\u001e\f\u001e"+
+ "\u01dc\t\u001e\u0001\u001e\u0003\u001e\u01df\b\u001e\u0001\u001e\u0001"+
+ "\u001e\u0003\u001e\u01e3\b\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001"+
+ " \u0001 \u0003 \u01ea\b \u0001 \u0001 \u0003 \u01ee\b \u0001!\u0001!\u0001"+
+ "!\u0005!\u01f3\b!\n!\f!\u01f6\t!\u0001\"\u0001\"\u0001\"\u0003\"\u01fb"+
+ "\b\"\u0001#\u0001#\u0001#\u0005#\u0200\b#\n#\f#\u0203\t#\u0001$\u0001"+
+ "$\u0001$\u0005$\u0208\b$\n$\f$\u020b\t$\u0001%\u0001%\u0001%\u0005%\u0210"+
+ "\b%\n%\f%\u0213\t%\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0003\'\u021a"+
+ "\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
+ "(\u0001(\u0001(\u0001(\u0005(\u0229\b(\n(\f(\u022c\t(\u0001(\u0001(\u0001"+
+ "(\u0001(\u0001(\u0001(\u0005(\u0234\b(\n(\f(\u0237\t(\u0001(\u0001(\u0001"+
+ "(\u0001(\u0001(\u0001(\u0005(\u023f\b(\n(\f(\u0242\t(\u0001(\u0001(\u0003"+
+ "(\u0246\b(\u0001)\u0001)\u0003)\u024a\b)\u0001*\u0001*\u0003*\u024e\b"+
+ "*\u0001+\u0001+\u0001+\u0003+\u0253\b+\u0001,\u0001,\u0001,\u0001-\u0001"+
+ "-\u0001-\u0001-\u0005-\u025c\b-\n-\f-\u025f\t-\u0001.\u0001.\u0003.\u0263"+
+ "\b.\u0001.\u0001.\u0003.\u0267\b.\u0001/\u0001/\u0001/\u00010\u00010\u0001"+
+ "0\u00011\u00011\u00011\u00011\u00051\u0273\b1\n1\f1\u0276\t1\u00012\u0001"+
+ "2\u00012\u00012\u00012\u00012\u00012\u00012\u00032\u0280\b2\u00013\u0001"+
+ "3\u00013\u00013\u00033\u0286\b3\u00014\u00014\u00014\u00014\u00015\u0001"+
+ "5\u00015\u00016\u00016\u00016\u00056\u0292\b6\n6\f6\u0295\t6\u00017\u0001"+
+ "7\u00017\u00017\u00018\u00018\u00019\u00019\u00039\u029f\b9\u0001:\u0003"+
+ ":\u02a2\b:\u0001:\u0001:\u0001;\u0003;\u02a7\b;\u0001;\u0001;\u0001<\u0001"+
+ "<\u0001=\u0001=\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001"+
+ "@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0003A\u02bd\bA\u0001A\u0001"+
+ "A\u0001A\u0001A\u0005A\u02c3\bA\nA\fA\u02c6\tA\u0003A\u02c8\bA\u0001B"+
+ "\u0001B\u0001C\u0001C\u0001C\u0003C\u02cf\bC\u0001C\u0001C\u0001D\u0001"+
+ "D\u0001D\u0001D\u0003D\u02d7\bD\u0001D\u0001D\u0001D\u0001D\u0001D\u0003"+
+ "D\u02de\bD\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001F\u0001"+
+ "G\u0001G\u0001G\u0001G\u0003G\u02ec\bG\u0001H\u0001H\u0001H\u0001H\u0001"+
+ "H\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0005J\u02f9\bJ\nJ\fJ\u02fc"+
+ "\tJ\u0001K\u0001K\u0001L\u0001L\u0001L\u0005L\u0303\bL\nL\fL\u0306\tL"+
+ "\u0001M\u0001M\u0001M\u0001M\u0001N\u0001N\u0003N\u030e\bN\u0001O\u0001"+
+ "O\u0001O\u0001O\u0001O\u0001O\u0003O\u0316\bO\u0001P\u0001P\u0001P\u0001"+
+ "P\u0003P\u031c\bP\u0001P\u0001P\u0001P\u0001P\u0001P\u0000\u0004\u0002"+
+ "\n\u0012\u0014Q\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\u0000\n\u0001\u0000EF\u0001"+
+ "\u0000GI\u0002\u0000!!ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000..1"+
+ "1\u0002\u0000--<<\u0002\u0000>>@D\u0002\u0000!!ff\u0002\u0000\u0013\u0013"+
+ "\u001a\u001b\u0344\u0000\u00a2\u0001\u0000\u0000\u0000\u0002\u00a5\u0001"+
+ "\u0000\u0000\u0000\u0004\u00b6\u0001\u0000\u0000\u0000\u0006\u00ce\u0001"+
+ "\u0000\u0000\u0000\b\u00d0\u0001\u0000\u0000\u0000\n\u00f0\u0001\u0000"+
+ "\u0000\u0000\f\u012b\u0001\u0000\u0000\u0000\u000e\u012d\u0001\u0000\u0000"+
+ "\u0000\u0010\u013a\u0001\u0000\u0000\u0000\u0012\u0140\u0001\u0000\u0000"+
+ "\u0000\u0014\u0155\u0001\u0000\u0000\u0000\u0016\u015f\u0001\u0000\u0000"+
+ "\u0000\u0018\u0172\u0001\u0000\u0000\u0000\u001a\u0174\u0001\u0000\u0000"+
+ "\u0000\u001c\u017f\u0001\u0000\u0000\u0000\u001e\u0183\u0001\u0000\u0000"+
+ "\u0000 \u0185\u0001\u0000\u0000\u0000\"\u0188\u0001\u0000\u0000\u0000"+
+ "$\u0193\u0001\u0000\u0000\u0000&\u0197\u0001\u0000\u0000\u0000(\u019f"+
+ "\u0001\u0000\u0000\u0000*\u01a4\u0001\u0000\u0000\u0000,\u01b9\u0001\u0000"+
+ "\u0000\u0000.\u01bb\u0001\u0000\u0000\u00000\u01bd\u0001\u0000\u0000\u0000"+
+ "2\u01bf\u0001\u0000\u0000\u00004\u01c1\u0001\u0000\u0000\u00006\u01c5"+
+ "\u0001\u0000\u0000\u00008\u01c7\u0001\u0000\u0000\u0000:\u01d0\u0001\u0000"+
+ "\u0000\u0000<\u01d4\u0001\u0000\u0000\u0000>\u01e4\u0001\u0000\u0000\u0000"+
+ "@\u01e7\u0001\u0000\u0000\u0000B\u01ef\u0001\u0000\u0000\u0000D\u01f7"+
+ "\u0001\u0000\u0000\u0000F\u01fc\u0001\u0000\u0000\u0000H\u0204\u0001\u0000"+
+ "\u0000\u0000J\u020c\u0001\u0000\u0000\u0000L\u0214\u0001\u0000\u0000\u0000"+
+ "N\u0219\u0001\u0000\u0000\u0000P\u0245\u0001\u0000\u0000\u0000R\u0249"+
+ "\u0001\u0000\u0000\u0000T\u024d\u0001\u0000\u0000\u0000V\u0252\u0001\u0000"+
+ "\u0000\u0000X\u0254\u0001\u0000\u0000\u0000Z\u0257\u0001\u0000\u0000\u0000"+
+ "\\\u0260\u0001\u0000\u0000\u0000^\u0268\u0001\u0000\u0000\u0000`\u026b"+
+ "\u0001\u0000\u0000\u0000b\u026e\u0001\u0000\u0000\u0000d\u027f\u0001\u0000"+
+ "\u0000\u0000f\u0281\u0001\u0000\u0000\u0000h\u0287\u0001\u0000\u0000\u0000"+
+ "j\u028b\u0001\u0000\u0000\u0000l\u028e\u0001\u0000\u0000\u0000n\u0296"+
+ "\u0001\u0000\u0000\u0000p\u029a\u0001\u0000\u0000\u0000r\u029e\u0001\u0000"+
+ "\u0000\u0000t\u02a1\u0001\u0000\u0000\u0000v\u02a6\u0001\u0000\u0000\u0000"+
+ "x\u02aa\u0001\u0000\u0000\u0000z\u02ac\u0001\u0000\u0000\u0000|\u02ae"+
+ "\u0001\u0000\u0000\u0000~\u02b1\u0001\u0000\u0000\u0000\u0080\u02b5\u0001"+
+ "\u0000\u0000\u0000\u0082\u02b8\u0001\u0000\u0000\u0000\u0084\u02c9\u0001"+
+ "\u0000\u0000\u0000\u0086\u02ce\u0001\u0000\u0000\u0000\u0088\u02d2\u0001"+
+ "\u0000\u0000\u0000\u008a\u02df\u0001\u0000\u0000\u0000\u008c\u02e2\u0001"+
+ "\u0000\u0000\u0000\u008e\u02e7\u0001\u0000\u0000\u0000\u0090\u02ed\u0001"+
+ "\u0000\u0000\u0000\u0092\u02f2\u0001\u0000\u0000\u0000\u0094\u02f4\u0001"+
+ "\u0000\u0000\u0000\u0096\u02fd\u0001\u0000\u0000\u0000\u0098\u02ff\u0001"+
+ "\u0000\u0000\u0000\u009a\u0307\u0001\u0000\u0000\u0000\u009c\u030d\u0001"+
+ "\u0000\u0000\u0000\u009e\u030f\u0001\u0000\u0000\u0000\u00a0\u0317\u0001"+
+ "\u0000\u0000\u0000\u00a2\u00a3\u0003\u0002\u0001\u0000\u00a3\u00a4\u0005"+
+ "\u0000\u0000\u0001\u00a4\u0001\u0001\u0000\u0000\u0000\u00a5\u00a6\u0006"+
+ "\u0001\uffff\uffff\u0000\u00a6\u00a7\u0003\u0004\u0002\u0000\u00a7\u00ad"+
+ "\u0001\u0000\u0000\u0000\u00a8\u00a9\n\u0001\u0000\u0000\u00a9\u00aa\u0005"+
+ " \u0000\u0000\u00aa\u00ac\u0003\u0006\u0003\u0000\u00ab\u00a8\u0001\u0000"+
+ "\u0000\u0000\u00ac\u00af\u0001\u0000\u0000\u0000\u00ad\u00ab\u0001\u0000"+
+ "\u0000\u0000\u00ad\u00ae\u0001\u0000\u0000\u0000\u00ae\u0003\u0001\u0000"+
+ "\u0000\u0000\u00af\u00ad\u0001\u0000\u0000\u0000\u00b0\u00b7\u0003|>\u0000"+
+ "\u00b1\u00b7\u0003*\u0015\u0000\u00b2\u00b7\u0003 \u0010\u0000\u00b3\u00b7"+
+ "\u0003\u0080@\u0000\u00b4\u00b5\u0004\u0002\u0001\u0000\u00b5\u00b7\u0003"+
+ "<\u001e\u0000\u00b6\u00b0\u0001\u0000\u0000\u0000\u00b6\u00b1\u0001\u0000"+
+ "\u0000\u0000\u00b6\u00b2\u0001\u0000\u0000\u0000\u00b6\u00b3\u0001\u0000"+
+ "\u0000\u0000\u00b6\u00b4\u0001\u0000\u0000\u0000\u00b7\u0005\u0001\u0000"+
+ "\u0000\u0000\u00b8\u00cf\u0003>\u001f\u0000\u00b9\u00cf\u0003\b\u0004"+
+ "\u0000\u00ba\u00cf\u0003^/\u0000\u00bb\u00cf\u0003X,\u0000\u00bc\u00cf"+
+ "\u0003@ \u0000\u00bd\u00cf\u0003Z-\u0000\u00be\u00cf\u0003`0\u0000\u00bf"+
+ "\u00cf\u0003b1\u0000\u00c0\u00cf\u0003f3\u0000\u00c1\u00cf\u0003h4\u0000"+
+ "\u00c2\u00cf\u0003\u0082A\u0000\u00c3\u00cf\u0003j5\u0000\u00c4\u00cf"+
+ "\u0003\u0090H\u0000\u00c5\u00cf\u0003\u0088D\u0000\u00c6\u00cf\u0003\u00a0"+
+ "P\u0000\u00c7\u00cf\u0003\u008aE\u0000\u00c8\u00c9\u0004\u0003\u0002\u0000"+
+ "\u00c9\u00cf\u0003\u008eG\u0000\u00ca\u00cb\u0004\u0003\u0003\u0000\u00cb"+
+ "\u00cf\u0003\u008cF\u0000\u00cc\u00cd\u0004\u0003\u0004\u0000\u00cd\u00cf"+
+ "\u0003\u009eO\u0000\u00ce\u00b8\u0001\u0000\u0000\u0000\u00ce\u00b9\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00ba\u0001\u0000\u0000\u0000\u00ce\u00bb\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00bc\u0001\u0000\u0000\u0000\u00ce\u00bd\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00be\u0001\u0000\u0000\u0000\u00ce\u00bf\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00c0\u0001\u0000\u0000\u0000\u00ce\u00c1\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00c2\u0001\u0000\u0000\u0000\u00ce\u00c3\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00c4\u0001\u0000\u0000\u0000\u00ce\u00c5\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00c6\u0001\u0000\u0000\u0000\u00ce\u00c7\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00c8\u0001\u0000\u0000\u0000\u00ce\u00ca\u0001"+
+ "\u0000\u0000\u0000\u00ce\u00cc\u0001\u0000\u0000\u0000\u00cf\u0007\u0001"+
+ "\u0000\u0000\u0000\u00d0\u00d1\u0005\u0012\u0000\u0000\u00d1\u00d2\u0003"+
+ "\n\u0005\u0000\u00d2\t\u0001\u0000\u0000\u0000\u00d3\u00d4\u0006\u0005"+
+ "\uffff\uffff\u0000\u00d4\u00d5\u00054\u0000\u0000\u00d5\u00f1\u0003\n"+
+ "\u0005\b\u00d6\u00f1\u0003\u0010\b\u0000\u00d7\u00f1\u0003\f\u0006\u0000"+
+ "\u00d8\u00da\u0003\u0010\b\u0000\u00d9\u00db\u00054\u0000\u0000\u00da"+
+ "\u00d9\u0001\u0000\u0000\u0000\u00da\u00db\u0001\u0000\u0000\u0000\u00db"+
+ "\u00dc\u0001\u0000\u0000\u0000\u00dc\u00dd\u0005/\u0000\u0000\u00dd\u00de"+
+ "\u00053\u0000\u0000\u00de\u00e3\u0003\u0010\b\u0000\u00df\u00e0\u0005"+
+ "*\u0000\u0000\u00e0\u00e2\u0003\u0010\b\u0000\u00e1\u00df\u0001\u0000"+
+ "\u0000\u0000\u00e2\u00e5\u0001\u0000\u0000\u0000\u00e3\u00e1\u0001\u0000"+
+ "\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000\u0000\u00e4\u00e6\u0001\u0000"+
+ "\u0000\u0000\u00e5\u00e3\u0001\u0000\u0000\u0000\u00e6\u00e7\u0005;\u0000"+
+ "\u0000\u00e7\u00f1\u0001\u0000\u0000\u0000\u00e8\u00e9\u0003\u0010\b\u0000"+
+ "\u00e9\u00eb\u00050\u0000\u0000\u00ea\u00ec\u00054\u0000\u0000\u00eb\u00ea"+
+ "\u0001\u0000\u0000\u0000\u00eb\u00ec\u0001\u0000\u0000\u0000\u00ec\u00ed"+
+ "\u0001\u0000\u0000\u0000\u00ed\u00ee\u00055\u0000\u0000\u00ee\u00f1\u0001"+
+ "\u0000\u0000\u0000\u00ef\u00f1\u0003\u000e\u0007\u0000\u00f0\u00d3\u0001"+
+ "\u0000\u0000\u0000\u00f0\u00d6\u0001\u0000\u0000\u0000\u00f0\u00d7\u0001"+
+ "\u0000\u0000\u0000\u00f0\u00d8\u0001\u0000\u0000\u0000\u00f0\u00e8\u0001"+
+ "\u0000\u0000\u0000\u00f0\u00ef\u0001\u0000\u0000\u0000\u00f1\u00fa\u0001"+
+ "\u0000\u0000\u0000\u00f2\u00f3\n\u0005\u0000\u0000\u00f3\u00f4\u0005$"+
+ "\u0000\u0000\u00f4\u00f9\u0003\n\u0005\u0006\u00f5\u00f6\n\u0004\u0000"+
+ "\u0000\u00f6\u00f7\u00058\u0000\u0000\u00f7\u00f9\u0003\n\u0005\u0005"+
+ "\u00f8\u00f2\u0001\u0000\u0000\u0000\u00f8\u00f5\u0001\u0000\u0000\u0000"+
+ "\u00f9\u00fc\u0001\u0000\u0000\u0000\u00fa\u00f8\u0001\u0000\u0000\u0000"+
+ "\u00fa\u00fb\u0001\u0000\u0000\u0000\u00fb\u000b\u0001\u0000\u0000\u0000"+
+ "\u00fc\u00fa\u0001\u0000\u0000\u0000\u00fd\u00ff\u0003\u0010\b\u0000\u00fe"+
+ "\u0100\u00054\u0000\u0000\u00ff\u00fe\u0001\u0000\u0000\u0000\u00ff\u0100"+
+ "\u0001\u0000\u0000\u0000\u0100\u0101\u0001\u0000\u0000\u0000\u0101\u0102"+
+ "\u00052\u0000\u0000\u0102\u0103\u0003x<\u0000\u0103\u012c\u0001\u0000"+
+ "\u0000\u0000\u0104\u0106\u0003\u0010\b\u0000\u0105\u0107\u00054\u0000"+
+ "\u0000\u0106\u0105\u0001\u0000\u0000\u0000\u0106\u0107\u0001\u0000\u0000"+
+ "\u0000\u0107\u0108\u0001\u0000\u0000\u0000\u0108\u0109\u0005:\u0000\u0000"+
+ "\u0109\u010a\u0003x<\u0000\u010a\u012c\u0001\u0000\u0000\u0000\u010b\u010d"+
+ "\u0003\u0010\b\u0000\u010c\u010e\u00054\u0000\u0000\u010d\u010c\u0001"+
+ "\u0000\u0000\u0000\u010d\u010e\u0001\u0000\u0000\u0000\u010e\u010f\u0001"+
+ "\u0000\u0000\u0000\u010f\u0110\u00052\u0000\u0000\u0110\u0111\u00053\u0000"+
+ "\u0000\u0111\u0116\u0003x<\u0000\u0112\u0113\u0005*\u0000\u0000\u0113"+
+ "\u0115\u0003x<\u0000\u0114\u0112\u0001\u0000\u0000\u0000\u0115\u0118\u0001"+
+ "\u0000\u0000\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0116\u0117\u0001"+
+ "\u0000\u0000\u0000\u0117\u0119\u0001\u0000\u0000\u0000\u0118\u0116\u0001"+
+ "\u0000\u0000\u0000\u0119\u011a\u0005;\u0000\u0000\u011a\u012c\u0001\u0000"+
+ "\u0000\u0000\u011b\u011d\u0003\u0010\b\u0000\u011c\u011e\u00054\u0000"+
+ "\u0000\u011d\u011c\u0001\u0000\u0000\u0000\u011d\u011e\u0001\u0000\u0000"+
+ "\u0000\u011e\u011f\u0001\u0000\u0000\u0000\u011f\u0120\u0005:\u0000\u0000"+
+ "\u0120\u0121\u00053\u0000\u0000\u0121\u0126\u0003x<\u0000\u0122\u0123"+
+ "\u0005*\u0000\u0000\u0123\u0125\u0003x<\u0000\u0124\u0122\u0001\u0000"+
+ "\u0000\u0000\u0125\u0128\u0001\u0000\u0000\u0000\u0126\u0124\u0001\u0000"+
+ "\u0000\u0000\u0126\u0127\u0001\u0000\u0000\u0000\u0127\u0129\u0001\u0000"+
+ "\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0129\u012a\u0005;\u0000"+
+ "\u0000\u012a\u012c\u0001\u0000\u0000\u0000\u012b\u00fd\u0001\u0000\u0000"+
+ "\u0000\u012b\u0104\u0001\u0000\u0000\u0000\u012b\u010b\u0001\u0000\u0000"+
+ "\u0000\u012b\u011b\u0001\u0000\u0000\u0000\u012c\r\u0001\u0000\u0000\u0000"+
+ "\u012d\u0130\u0003F#\u0000\u012e\u012f\u0005(\u0000\u0000\u012f\u0131"+
+ "\u0003\u001e\u000f\u0000\u0130\u012e\u0001\u0000\u0000\u0000\u0130\u0131"+
+ "\u0001\u0000\u0000\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132\u0133"+
+ "\u0005)\u0000\u0000\u0133\u0134\u0003P(\u0000\u0134\u000f\u0001\u0000"+
+ "\u0000\u0000\u0135\u013b\u0003\u0012\t\u0000\u0136\u0137\u0003\u0012\t"+
+ "\u0000\u0137\u0138\u0003z=\u0000\u0138\u0139\u0003\u0012\t\u0000\u0139"+
+ "\u013b\u0001\u0000\u0000\u0000\u013a\u0135\u0001\u0000\u0000\u0000\u013a"+
+ "\u0136\u0001\u0000\u0000\u0000\u013b\u0011\u0001\u0000\u0000\u0000\u013c"+
+ "\u013d\u0006\t\uffff\uffff\u0000\u013d\u0141\u0003\u0014\n\u0000\u013e"+
+ "\u013f\u0007\u0000\u0000\u0000\u013f\u0141\u0003\u0012\t\u0003\u0140\u013c"+
+ "\u0001\u0000\u0000\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0141\u014a"+
+ "\u0001\u0000\u0000\u0000\u0142\u0143\n\u0002\u0000\u0000\u0143\u0144\u0007"+
+ "\u0001\u0000\u0000\u0144\u0149\u0003\u0012\t\u0003\u0145\u0146\n\u0001"+
+ "\u0000\u0000\u0146\u0147\u0007\u0000\u0000\u0000\u0147\u0149\u0003\u0012"+
+ "\t\u0002\u0148\u0142\u0001\u0000\u0000\u0000\u0148\u0145\u0001\u0000\u0000"+
+ "\u0000\u0149\u014c\u0001\u0000\u0000\u0000\u014a\u0148\u0001\u0000\u0000"+
+ "\u0000\u014a\u014b\u0001\u0000\u0000\u0000\u014b\u0013\u0001\u0000\u0000"+
+ "\u0000\u014c\u014a\u0001\u0000\u0000\u0000\u014d\u014e\u0006\n\uffff\uffff"+
+ "\u0000\u014e\u0156\u0003P(\u0000\u014f\u0156\u0003F#\u0000\u0150\u0156"+
+ "\u0003\u0016\u000b\u0000\u0151\u0152\u00053\u0000\u0000\u0152\u0153\u0003"+
+ "\n\u0005\u0000\u0153\u0154\u0005;\u0000\u0000\u0154\u0156\u0001\u0000"+
+ "\u0000\u0000\u0155\u014d\u0001\u0000\u0000\u0000\u0155\u014f\u0001\u0000"+
+ "\u0000\u0000\u0155\u0150\u0001\u0000\u0000\u0000\u0155\u0151\u0001\u0000"+
+ "\u0000\u0000\u0156\u015c\u0001\u0000\u0000\u0000\u0157\u0158\n\u0001\u0000"+
+ "\u0000\u0158\u0159\u0005(\u0000\u0000\u0159\u015b\u0003\u001e\u000f\u0000"+
+ "\u015a\u0157\u0001\u0000\u0000\u0000\u015b\u015e\u0001\u0000\u0000\u0000"+
"\u015c\u015a\u0001\u0000\u0000\u0000\u015c\u015d\u0001\u0000\u0000\u0000"+
- "\u015d\u015f\u0001\u0000\u0000\u0000\u015e\u0151\u0001\u0000\u0000\u0000"+
- "\u015e\u0152\u0001\u0000\u0000\u0000\u015e\u015f\u0001\u0000\u0000\u0000"+
- "\u015f\u0160\u0001\u0000\u0000\u0000\u0160\u0161\u0005;\u0000\u0000\u0161"+
- "\u0017\u0001\u0000\u0000\u0000\u0162\u0163\u0003V+\u0000\u0163\u0019\u0001"+
- "\u0000\u0000\u0000\u0164\u0165\u0005J\u0000\u0000\u0165\u016a\u0003\u001c"+
- "\u000e\u0000\u0166\u0167\u0005*\u0000\u0000\u0167\u0169\u0003\u001c\u000e"+
- "\u0000\u0168\u0166\u0001\u0000\u0000\u0000\u0169\u016c\u0001\u0000\u0000"+
- "\u0000\u016a\u0168\u0001\u0000\u0000\u0000\u016a\u016b\u0001\u0000\u0000"+
- "\u0000\u016b\u016d\u0001\u0000\u0000\u0000\u016c\u016a\u0001\u0000\u0000"+
- "\u0000\u016d\u016e\u0005K\u0000\u0000\u016e\u001b\u0001\u0000\u0000\u0000"+
- "\u016f\u0170\u0003x<\u0000\u0170\u0171\u0005)\u0000\u0000\u0171\u0172"+
- "\u0003P(\u0000\u0172\u001d\u0001\u0000\u0000\u0000\u0173\u0174\u0003L"+
- "&\u0000\u0174\u001f\u0001\u0000\u0000\u0000\u0175\u0176\u0005\r\u0000"+
- "\u0000\u0176\u0177\u0003\"\u0011\u0000\u0177!\u0001\u0000\u0000\u0000"+
- "\u0178\u017d\u0003$\u0012\u0000\u0179\u017a\u0005*\u0000\u0000\u017a\u017c"+
- "\u0003$\u0012\u0000\u017b\u0179\u0001\u0000\u0000\u0000\u017c\u017f\u0001"+
- "\u0000\u0000\u0000\u017d\u017b\u0001\u0000\u0000\u0000\u017d\u017e\u0001"+
- "\u0000\u0000\u0000\u017e#\u0001\u0000\u0000\u0000\u017f\u017d\u0001\u0000"+
- "\u0000\u0000\u0180\u0181\u0003F#\u0000\u0181\u0182\u0005&\u0000\u0000"+
- "\u0182\u0184\u0001\u0000\u0000\u0000\u0183\u0180\u0001\u0000\u0000\u0000"+
- "\u0183\u0184\u0001\u0000\u0000\u0000\u0184\u0185\u0001\u0000\u0000\u0000"+
- "\u0185\u0186\u0003\n\u0005\u0000\u0186%\u0001\u0000\u0000\u0000\u0187"+
- "\u018c\u0003(\u0014\u0000\u0188\u0189\u0005*\u0000\u0000\u0189\u018b\u0003"+
- "(\u0014\u0000\u018a\u0188\u0001\u0000\u0000\u0000\u018b\u018e\u0001\u0000"+
- "\u0000\u0000\u018c\u018a\u0001\u0000\u0000\u0000\u018c\u018d\u0001\u0000"+
- "\u0000\u0000\u018d\'\u0001\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000"+
- "\u0000\u018f\u0192\u0003F#\u0000\u0190\u0191\u0005&\u0000\u0000\u0191"+
- "\u0193\u0003\n\u0005\u0000\u0192\u0190\u0001\u0000\u0000\u0000\u0192\u0193"+
- "\u0001\u0000\u0000\u0000\u0193)\u0001\u0000\u0000\u0000\u0194\u0195\u0005"+
- "\u0007\u0000\u0000\u0195\u019a\u0003,\u0016\u0000\u0196\u0197\u0005*\u0000"+
- "\u0000\u0197\u0199\u0003,\u0016\u0000\u0198\u0196\u0001\u0000\u0000\u0000"+
- "\u0199\u019c\u0001\u0000\u0000\u0000\u019a\u0198\u0001\u0000\u0000\u0000"+
- "\u019a\u019b\u0001\u0000\u0000\u0000\u019b\u019e\u0001\u0000\u0000\u0000"+
- "\u019c\u019a\u0001\u0000\u0000\u0000\u019d\u019f\u00036\u001b\u0000\u019e"+
- "\u019d\u0001\u0000\u0000\u0000\u019e\u019f\u0001\u0000\u0000\u0000\u019f"+
- "+\u0001\u0000\u0000\u0000\u01a0\u01a1\u0003.\u0017\u0000\u01a1\u01a2\u0005"+
- ")\u0000\u0000\u01a2\u01a3\u00032\u0019\u0000\u01a3\u01aa\u0001\u0000\u0000"+
- "\u0000\u01a4\u01a5\u00032\u0019\u0000\u01a5\u01a6\u0005(\u0000\u0000\u01a6"+
- "\u01a7\u00030\u0018\u0000\u01a7\u01aa\u0001\u0000\u0000\u0000\u01a8\u01aa"+
- "\u00034\u001a\u0000\u01a9\u01a0\u0001\u0000\u0000\u0000\u01a9\u01a4\u0001"+
- "\u0000\u0000\u0000\u01a9\u01a8\u0001\u0000\u0000\u0000\u01aa-\u0001\u0000"+
- "\u0000\u0000\u01ab\u01ac\u0005Z\u0000\u0000\u01ac/\u0001\u0000\u0000\u0000"+
- "\u01ad\u01ae\u0005Z\u0000\u0000\u01ae1\u0001\u0000\u0000\u0000\u01af\u01b0"+
- "\u0005Z\u0000\u0000\u01b03\u0001\u0000\u0000\u0000\u01b1\u01b2\u0007\u0002"+
- "\u0000\u0000\u01b25\u0001\u0000\u0000\u0000\u01b3\u01b6\u00038\u001c\u0000"+
- "\u01b4\u01b6\u0003:\u001d\u0000\u01b5\u01b3\u0001\u0000\u0000\u0000\u01b5"+
- "\u01b4\u0001\u0000\u0000\u0000\u01b67\u0001\u0000\u0000\u0000\u01b7\u01b8"+
- "\u0005Y\u0000\u0000\u01b8\u01bd\u0005Z\u0000\u0000\u01b9\u01ba\u0005*"+
- "\u0000\u0000\u01ba\u01bc\u0005Z\u0000\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\u01be9\u0001\u0000\u0000\u0000"+
- "\u01bf\u01bd\u0001\u0000\u0000\u0000\u01c0\u01c1\u0005O\u0000\u0000\u01c1"+
- "\u01c2\u00038\u001c\u0000\u01c2\u01c3\u0005P\u0000\u0000\u01c3;\u0001"+
- "\u0000\u0000\u0000\u01c4\u01c5\u0005\u0017\u0000\u0000\u01c5\u01ca\u0003"+
- ",\u0016\u0000\u01c6\u01c7\u0005*\u0000\u0000\u01c7\u01c9\u0003,\u0016"+
- "\u0000\u01c8\u01c6\u0001\u0000\u0000\u0000\u01c9\u01cc\u0001\u0000\u0000"+
- "\u0000\u01ca\u01c8\u0001\u0000\u0000\u0000\u01ca\u01cb\u0001\u0000\u0000"+
- "\u0000\u01cb\u01ce\u0001\u0000\u0000\u0000\u01cc\u01ca\u0001\u0000\u0000"+
- "\u0000\u01cd\u01cf\u0003B!\u0000\u01ce\u01cd\u0001\u0000\u0000\u0000\u01ce"+
- "\u01cf\u0001\u0000\u0000\u0000\u01cf\u01d2\u0001\u0000\u0000\u0000\u01d0"+
- "\u01d1\u0005\'\u0000\u0000\u01d1\u01d3\u0003\"\u0011\u0000\u01d2\u01d0"+
- "\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3=\u0001"+
- "\u0000\u0000\u0000\u01d4\u01d5\u0005\u0005\u0000\u0000\u01d5\u01d6\u0003"+
- "\"\u0011\u0000\u01d6?\u0001\u0000\u0000\u0000\u01d7\u01d9\u0005\u0011"+
- "\u0000\u0000\u01d8\u01da\u0003B!\u0000\u01d9\u01d8\u0001\u0000\u0000\u0000"+
- "\u01d9\u01da\u0001\u0000\u0000\u0000\u01da\u01dd\u0001\u0000\u0000\u0000"+
- "\u01db\u01dc\u0005\'\u0000\u0000\u01dc\u01de\u0003\"\u0011\u0000\u01dd"+
- "\u01db\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01de"+
- "A\u0001\u0000\u0000\u0000\u01df\u01e4\u0003D\"\u0000\u01e0\u01e1\u0005"+
- "*\u0000\u0000\u01e1\u01e3\u0003D\"\u0000\u01e2\u01e0\u0001\u0000\u0000"+
- "\u0000\u01e3\u01e6\u0001\u0000\u0000\u0000\u01e4\u01e2\u0001\u0000\u0000"+
- "\u0000\u01e4\u01e5\u0001\u0000\u0000\u0000\u01e5C\u0001\u0000\u0000\u0000"+
- "\u01e6\u01e4\u0001\u0000\u0000\u0000\u01e7\u01ea\u0003$\u0012\u0000\u01e8"+
- "\u01e9\u0005\u0012\u0000\u0000\u01e9\u01eb\u0003\n\u0005\u0000\u01ea\u01e8"+
- "\u0001\u0000\u0000\u0000\u01ea\u01eb\u0001\u0000\u0000\u0000\u01ebE\u0001"+
- "\u0000\u0000\u0000\u01ec\u01f1\u0003V+\u0000\u01ed\u01ee\u0005,\u0000"+
- "\u0000\u01ee\u01f0\u0003V+\u0000\u01ef\u01ed\u0001\u0000\u0000\u0000\u01f0"+
- "\u01f3\u0001\u0000\u0000\u0000\u01f1\u01ef\u0001\u0000\u0000\u0000\u01f1"+
- "\u01f2\u0001\u0000\u0000\u0000\u01f2G\u0001\u0000\u0000\u0000\u01f3\u01f1"+
- "\u0001\u0000\u0000\u0000\u01f4\u01f9\u0003N\'\u0000\u01f5\u01f6\u0005"+
- ",\u0000\u0000\u01f6\u01f8\u0003N\'\u0000\u01f7\u01f5\u0001\u0000\u0000"+
- "\u0000\u01f8\u01fb\u0001\u0000\u0000\u0000\u01f9\u01f7\u0001\u0000\u0000"+
- "\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000\u01faI\u0001\u0000\u0000\u0000"+
- "\u01fb\u01f9\u0001\u0000\u0000\u0000\u01fc\u0201\u0003H$\u0000\u01fd\u01fe"+
- "\u0005*\u0000\u0000\u01fe\u0200\u0003H$\u0000\u01ff\u01fd\u0001\u0000"+
- "\u0000\u0000\u0200\u0203\u0001\u0000\u0000\u0000\u0201\u01ff\u0001\u0000"+
- "\u0000\u0000\u0201\u0202\u0001\u0000\u0000\u0000\u0202K\u0001\u0000\u0000"+
- "\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0204\u0205\u0007\u0003\u0000"+
- "\u0000\u0205M\u0001\u0000\u0000\u0000\u0206\u020a\u0005^\u0000\u0000\u0207"+
- "\u020a\u0003R)\u0000\u0208\u020a\u0003T*\u0000\u0209\u0206\u0001\u0000"+
- "\u0000\u0000\u0209\u0207\u0001\u0000\u0000\u0000\u0209\u0208\u0001\u0000"+
- "\u0000\u0000\u020aO\u0001\u0000\u0000\u0000\u020b\u0236\u00055\u0000\u0000"+
- "\u020c\u020d\u0003v;\u0000\u020d\u020e\u0005Q\u0000\u0000\u020e\u0236"+
- "\u0001\u0000\u0000\u0000\u020f\u0236\u0003t:\u0000\u0210\u0236\u0003v"+
- ";\u0000\u0211\u0236\u0003p8\u0000\u0212\u0236\u0003R)\u0000\u0213\u0236"+
- "\u0003x<\u0000\u0214\u0215\u0005O\u0000\u0000\u0215\u021a\u0003r9\u0000"+
- "\u0216\u0217\u0005*\u0000\u0000\u0217\u0219\u0003r9\u0000\u0218\u0216"+
- "\u0001\u0000\u0000\u0000\u0219\u021c\u0001\u0000\u0000\u0000\u021a\u0218"+
- "\u0001\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021b\u021d"+
- "\u0001\u0000\u0000\u0000\u021c\u021a\u0001\u0000\u0000\u0000\u021d\u021e"+
- "\u0005P\u0000\u0000\u021e\u0236\u0001\u0000\u0000\u0000\u021f\u0220\u0005"+
- "O\u0000\u0000\u0220\u0225\u0003p8\u0000\u0221\u0222\u0005*\u0000\u0000"+
- "\u0222\u0224\u0003p8\u0000\u0223\u0221\u0001\u0000\u0000\u0000\u0224\u0227"+
- "\u0001\u0000\u0000\u0000\u0225\u0223\u0001\u0000\u0000\u0000\u0225\u0226"+
- "\u0001\u0000\u0000\u0000\u0226\u0228\u0001\u0000\u0000\u0000\u0227\u0225"+
- "\u0001\u0000\u0000\u0000\u0228\u0229\u0005P\u0000\u0000\u0229\u0236\u0001"+
- "\u0000\u0000\u0000\u022a\u022b\u0005O\u0000\u0000\u022b\u0230\u0003x<"+
- "\u0000\u022c\u022d\u0005*\u0000\u0000\u022d\u022f\u0003x<\u0000\u022e"+
- "\u022c\u0001\u0000\u0000\u0000\u022f\u0232\u0001\u0000\u0000\u0000\u0230"+
- "\u022e\u0001\u0000\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231"+
- "\u0233\u0001\u0000\u0000\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0233"+
- "\u0234\u0005P\u0000\u0000\u0234\u0236\u0001\u0000\u0000\u0000\u0235\u020b"+
- "\u0001\u0000\u0000\u0000\u0235\u020c\u0001\u0000\u0000\u0000\u0235\u020f"+
- "\u0001\u0000\u0000\u0000\u0235\u0210\u0001\u0000\u0000\u0000\u0235\u0211"+
- "\u0001\u0000\u0000\u0000\u0235\u0212\u0001\u0000\u0000\u0000\u0235\u0213"+
- "\u0001\u0000\u0000\u0000\u0235\u0214\u0001\u0000\u0000\u0000\u0235\u021f"+
- "\u0001\u0000\u0000\u0000\u0235\u022a\u0001\u0000\u0000\u0000\u0236Q\u0001"+
- "\u0000\u0000\u0000\u0237\u023a\u00059\u0000\u0000\u0238\u023a\u0005M\u0000"+
- "\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u0239\u0238\u0001\u0000\u0000"+
- "\u0000\u023aS\u0001\u0000\u0000\u0000\u023b\u023e\u0005L\u0000\u0000\u023c"+
- "\u023e\u0005N\u0000\u0000\u023d\u023b\u0001\u0000\u0000\u0000\u023d\u023c"+
- "\u0001\u0000\u0000\u0000\u023eU\u0001\u0000\u0000\u0000\u023f\u0243\u0003"+
- "L&\u0000\u0240\u0243\u0003R)\u0000\u0241\u0243\u0003T*\u0000\u0242\u023f"+
- "\u0001\u0000\u0000\u0000\u0242\u0240\u0001\u0000\u0000\u0000\u0242\u0241"+
- "\u0001\u0000\u0000\u0000\u0243W\u0001\u0000\u0000\u0000\u0244\u0245\u0005"+
- "\n\u0000\u0000\u0245\u0246\u0003P(\u0000\u0246Y\u0001\u0000\u0000\u0000"+
- "\u0247\u0248\u0005\u0010\u0000\u0000\u0248\u024d\u0003\\.\u0000\u0249"+
- "\u024a\u0005*\u0000\u0000\u024a\u024c\u0003\\.\u0000\u024b\u0249\u0001"+
- "\u0000\u0000\u0000\u024c\u024f\u0001\u0000\u0000\u0000\u024d\u024b\u0001"+
- "\u0000\u0000\u0000\u024d\u024e\u0001\u0000\u0000\u0000\u024e[\u0001\u0000"+
- "\u0000\u0000\u024f\u024d\u0001\u0000\u0000\u0000\u0250\u0252\u0003\n\u0005"+
- "\u0000\u0251\u0253\u0007\u0004\u0000\u0000\u0252\u0251\u0001\u0000\u0000"+
- "\u0000\u0252\u0253\u0001\u0000\u0000\u0000\u0253\u0256\u0001\u0000\u0000"+
- "\u0000\u0254\u0255\u00056\u0000\u0000\u0255\u0257\u0007\u0005\u0000\u0000"+
- "\u0256\u0254\u0001\u0000\u0000\u0000\u0256\u0257\u0001\u0000\u0000\u0000"+
- "\u0257]\u0001\u0000\u0000\u0000\u0258\u0259\u0005\t\u0000\u0000\u0259"+
- "\u025a\u0003J%\u0000\u025a_\u0001\u0000\u0000\u0000\u025b\u025c\u0005"+
- "\u0003\u0000\u0000\u025c\u025d\u0003J%\u0000\u025da\u0001\u0000\u0000"+
- "\u0000\u025e\u025f\u0005\f\u0000\u0000\u025f\u0264\u0003d2\u0000\u0260"+
- "\u0261\u0005*\u0000\u0000\u0261\u0263\u0003d2\u0000\u0262\u0260\u0001"+
- "\u0000\u0000\u0000\u0263\u0266\u0001\u0000\u0000\u0000\u0264\u0262\u0001"+
- "\u0000\u0000\u0000\u0264\u0265\u0001\u0000\u0000\u0000\u0265c\u0001\u0000"+
- "\u0000\u0000\u0266\u0264\u0001\u0000\u0000\u0000\u0267\u0268\u0003H$\u0000"+
- "\u0268\u0269\u0005b\u0000\u0000\u0269\u026a\u0003H$\u0000\u026a\u0270"+
- "\u0001\u0000\u0000\u0000\u026b\u026c\u0003H$\u0000\u026c\u026d\u0005&"+
- "\u0000\u0000\u026d\u026e\u0003H$\u0000\u026e\u0270\u0001\u0000\u0000\u0000"+
- "\u026f\u0267\u0001\u0000\u0000\u0000\u026f\u026b\u0001\u0000\u0000\u0000"+
- "\u0270e\u0001\u0000\u0000\u0000\u0271\u0272\u0005\u0002\u0000\u0000\u0272"+
- "\u0273\u0003\u0014\n\u0000\u0273\u0275\u0003x<\u0000\u0274\u0276\u0003"+
- "l6\u0000\u0275\u0274\u0001\u0000\u0000\u0000\u0275\u0276\u0001\u0000\u0000"+
- "\u0000\u0276g\u0001\u0000\u0000\u0000\u0277\u0278\u0005\b\u0000\u0000"+
- "\u0278\u0279\u0003\u0014\n\u0000\u0279\u027a\u0003x<\u0000\u027ai\u0001"+
- "\u0000\u0000\u0000\u027b\u027c\u0005\u000b\u0000\u0000\u027c\u027d\u0003"+
- "F#\u0000\u027dk\u0001\u0000\u0000\u0000\u027e\u0283\u0003n7\u0000\u027f"+
- "\u0280\u0005*\u0000\u0000\u0280\u0282\u0003n7\u0000\u0281\u027f\u0001"+
- "\u0000\u0000\u0000\u0282\u0285\u0001\u0000\u0000\u0000\u0283\u0281\u0001"+
- "\u0000\u0000\u0000\u0283\u0284\u0001\u0000\u0000\u0000\u0284m\u0001\u0000"+
- "\u0000\u0000\u0285\u0283\u0001\u0000\u0000\u0000\u0286\u0287\u0003L&\u0000"+
- "\u0287\u0288\u0005&\u0000\u0000\u0288\u0289\u0003P(\u0000\u0289o\u0001"+
- "\u0000\u0000\u0000\u028a\u028b\u0007\u0006\u0000\u0000\u028bq\u0001\u0000"+
- "\u0000\u0000\u028c\u028f\u0003t:\u0000\u028d\u028f\u0003v;\u0000\u028e"+
- "\u028c\u0001\u0000\u0000\u0000\u028e\u028d\u0001\u0000\u0000\u0000\u028f"+
- "s\u0001\u0000\u0000\u0000\u0290\u0292\u0007\u0000\u0000\u0000\u0291\u0290"+
- "\u0001\u0000\u0000\u0000\u0291\u0292\u0001\u0000\u0000\u0000\u0292\u0293"+
- "\u0001\u0000\u0000\u0000\u0293\u0294\u0005#\u0000\u0000\u0294u\u0001\u0000"+
- "\u0000\u0000\u0295\u0297\u0007\u0000\u0000\u0000\u0296\u0295\u0001\u0000"+
- "\u0000\u0000\u0296\u0297\u0001\u0000\u0000\u0000\u0297\u0298\u0001\u0000"+
- "\u0000\u0000\u0298\u0299\u0005\"\u0000\u0000\u0299w\u0001\u0000\u0000"+
- "\u0000\u029a\u029b\u0005!\u0000\u0000\u029by\u0001\u0000\u0000\u0000\u029c"+
- "\u029d\u0007\u0007\u0000\u0000\u029d{\u0001\u0000\u0000\u0000\u029e\u029f"+
- "\u0005\u0006\u0000\u0000\u029f\u02a0\u0003~?\u0000\u02a0}\u0001\u0000"+
- "\u0000\u0000\u02a1\u02a2\u0005O\u0000\u0000\u02a2\u02a3\u0003\u0002\u0001"+
- "\u0000\u02a3\u02a4\u0005P\u0000\u0000\u02a4\u007f\u0001\u0000\u0000\u0000"+
- "\u02a5\u02a6\u0005\u000f\u0000\u0000\u02a6\u02a7\u0005p\u0000\u0000\u02a7"+
- "\u0081\u0001\u0000\u0000\u0000\u02a8\u02a9\u0005\u0004\u0000\u0000\u02a9"+
- "\u02ac\u0003\u0084B\u0000\u02aa\u02ab\u00057\u0000\u0000\u02ab\u02ad\u0003"+
- "H$\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000\u02ac\u02ad\u0001\u0000\u0000"+
- "\u0000\u02ad\u02b7\u0001\u0000\u0000\u0000\u02ae\u02af\u0005=\u0000\u0000"+
- "\u02af\u02b4\u0003\u0086C\u0000\u02b0\u02b1\u0005*\u0000\u0000\u02b1\u02b3"+
- "\u0003\u0086C\u0000\u02b2\u02b0\u0001\u0000\u0000\u0000\u02b3\u02b6\u0001"+
- "\u0000\u0000\u0000\u02b4\u02b2\u0001\u0000\u0000\u0000\u02b4\u02b5\u0001"+
- "\u0000\u0000\u0000\u02b5\u02b8\u0001\u0000\u0000\u0000\u02b6\u02b4\u0001"+
- "\u0000\u0000\u0000\u02b7\u02ae\u0001\u0000\u0000\u0000\u02b7\u02b8\u0001"+
- "\u0000\u0000\u0000\u02b8\u0083\u0001\u0000\u0000\u0000\u02b9\u02ba\u0007"+
- "\b\u0000\u0000\u02ba\u0085\u0001\u0000\u0000\u0000\u02bb\u02bc\u0003H"+
- "$\u0000\u02bc\u02bd\u0005&\u0000\u0000\u02bd\u02bf\u0001\u0000\u0000\u0000"+
- "\u02be\u02bb\u0001\u0000\u0000\u0000\u02be\u02bf\u0001\u0000\u0000\u0000"+
- "\u02bf\u02c0\u0001\u0000\u0000\u0000\u02c0\u02c1\u0003H$\u0000\u02c1\u0087"+
- "\u0001\u0000\u0000\u0000\u02c2\u02c3\u0005\u0014\u0000\u0000\u02c3\u02c6"+
- "\u0003F#\u0000\u02c4\u02c5\u00057\u0000\u0000\u02c5\u02c7\u0003F#\u0000"+
- "\u02c6\u02c4\u0001\u0000\u0000\u0000\u02c6\u02c7\u0001\u0000\u0000\u0000"+
- "\u02c7\u02cd\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005b\u0000\u0000\u02c9"+
- "\u02ca\u0003F#\u0000\u02ca\u02cb\u0005*\u0000\u0000\u02cb\u02cc\u0003"+
- "F#\u0000\u02cc\u02ce\u0001\u0000\u0000\u0000\u02cd\u02c8\u0001\u0000\u0000"+
- "\u0000\u02cd\u02ce\u0001\u0000\u0000\u0000\u02ce\u0089\u0001\u0000\u0000"+
- "\u0000\u02cf\u02d0\u0005\u000e\u0000\u0000\u02d0\u02d1\u0003P(\u0000\u02d1"+
- "\u008b\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005\u0016\u0000\u0000\u02d3"+
- "\u02d4\u0003,\u0016\u0000\u02d4\u02d5\u00057\u0000\u0000\u02d5\u02d6\u0003"+
- "J%\u0000\u02d6\u008d\u0001\u0000\u0000\u0000\u02d7\u02d8\u0005\u0015\u0000"+
- "\u0000\u02d8\u02db\u0003B!\u0000\u02d9\u02da\u0005\'\u0000\u0000\u02da"+
- "\u02dc\u0003\"\u0011\u0000\u02db\u02d9\u0001\u0000\u0000\u0000\u02db\u02dc"+
- "\u0001\u0000\u0000\u0000\u02dc\u008f\u0001\u0000\u0000\u0000\u02dd\u02de"+
- "\u0007\t\u0000\u0000\u02de\u02df\u0005~\u0000\u0000\u02df\u02e0\u0003"+
- "\u0092I\u0000\u02e0\u02e1\u0003\u0094J\u0000\u02e1\u0091\u0001\u0000\u0000"+
- "\u0000\u02e2\u02e3\u0003,\u0016\u0000\u02e3\u0093\u0001\u0000\u0000\u0000"+
- "\u02e4\u02e5\u00057\u0000\u0000\u02e5\u02ea\u0003\u0096K\u0000\u02e6\u02e7"+
- "\u0005*\u0000\u0000\u02e7\u02e9\u0003\u0096K\u0000\u02e8\u02e6\u0001\u0000"+
- "\u0000\u0000\u02e9\u02ec\u0001\u0000\u0000\u0000\u02ea\u02e8\u0001\u0000"+
- "\u0000\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb\u0095\u0001\u0000"+
- "\u0000\u0000\u02ec\u02ea\u0001\u0000\u0000\u0000\u02ed\u02ee\u0003\u0010"+
- "\b\u0000\u02ee\u0097\u0001\u0000\u0000\u0000\u02ef\u02f4\u0003\u009aM"+
- "\u0000\u02f0\u02f1\u0005*\u0000\u0000\u02f1\u02f3\u0003\u009aM\u0000\u02f2"+
- "\u02f0\u0001\u0000\u0000\u0000\u02f3\u02f6\u0001\u0000\u0000\u0000\u02f4"+
- "\u02f2\u0001\u0000\u0000\u0000\u02f4\u02f5\u0001\u0000\u0000\u0000\u02f5"+
- "\u0099\u0001\u0000\u0000\u0000\u02f6\u02f4\u0001\u0000\u0000\u0000\u02f7"+
- "\u02f8\u0003L&\u0000\u02f8\u02f9\u0005&\u0000\u0000\u02f9\u02fa\u0003"+
- "\u009cN\u0000\u02fa\u009b\u0001\u0000\u0000\u0000\u02fb\u02fe\u0003P("+
- "\u0000\u02fc\u02fe\u0003L&\u0000\u02fd\u02fb\u0001\u0000\u0000\u0000\u02fd"+
- "\u02fc\u0001\u0000\u0000\u0000\u02fe\u009d\u0001\u0000\u0000\u0000\u02ff"+
- "\u0300\u0005\u0018\u0000\u0000\u0300\u0301\u0003P(\u0000\u0301\u0302\u0005"+
- "7\u0000\u0000\u0302\u0305\u0003&\u0013\u0000\u0303\u0304\u0005=\u0000"+
- "\u0000\u0304\u0306\u0003\u0098L\u0000\u0305\u0303\u0001\u0000\u0000\u0000"+
- "\u0305\u0306\u0001\u0000\u0000\u0000\u0306\u009f\u0001\u0000\u0000\u0000"+
- "\u0307\u030b\u0005\u0001\u0000\u0000\u0308\u0309\u0003F#\u0000\u0309\u030a"+
- "\u0005&\u0000\u0000\u030a\u030c\u0001\u0000\u0000\u0000\u030b\u0308\u0001"+
- "\u0000\u0000\u0000\u030b\u030c\u0001\u0000\u0000\u0000\u030c\u030d\u0001"+
- "\u0000\u0000\u0000\u030d\u030e\u0003\u0014\n\u0000\u030e\u030f\u0005="+
- "\u0000\u0000\u030f\u0310\u0003V+\u0000\u0310\u00a1\u0001\u0000\u0000\u0000"+
- "J\u00ad\u00b6\u00ce\u00da\u00e3\u00eb\u00f0\u00f8\u00fa\u00ff\u0106\u010d"+
- "\u0116\u011b\u0120\u012a\u0130\u0138\u013a\u0145\u014c\u0157\u015c\u015e"+
- "\u016a\u017d\u0183\u018c\u0192\u019a\u019e\u01a9\u01b5\u01bd\u01ca\u01ce"+
- "\u01d2\u01d9\u01dd\u01e4\u01ea\u01f1\u01f9\u0201\u0209\u021a\u0225\u0230"+
- "\u0235\u0239\u023d\u0242\u024d\u0252\u0256\u0264\u026f\u0275\u0283\u028e"+
- "\u0291\u0296\u02ac\u02b4\u02b7\u02be\u02c6\u02cd\u02db\u02ea\u02f4\u02fd"+
- "\u0305\u030b";
+ "\u015d\u0015\u0001\u0000\u0000\u0000\u015e\u015c\u0001\u0000\u0000\u0000"+
+ "\u015f\u0160\u0003\u0018\f\u0000\u0160\u016e\u00053\u0000\u0000\u0161"+
+ "\u016f\u0005G\u0000\u0000\u0162\u0167\u0003\n\u0005\u0000\u0163\u0164"+
+ "\u0005*\u0000\u0000\u0164\u0166\u0003\n\u0005\u0000\u0165\u0163\u0001"+
+ "\u0000\u0000\u0000\u0166\u0169\u0001\u0000\u0000\u0000\u0167\u0165\u0001"+
+ "\u0000\u0000\u0000\u0167\u0168\u0001\u0000\u0000\u0000\u0168\u016c\u0001"+
+ "\u0000\u0000\u0000\u0169\u0167\u0001\u0000\u0000\u0000\u016a\u016b\u0005"+
+ "*\u0000\u0000\u016b\u016d\u0003\u001a\r\u0000\u016c\u016a\u0001\u0000"+
+ "\u0000\u0000\u016c\u016d\u0001\u0000\u0000\u0000\u016d\u016f\u0001\u0000"+
+ "\u0000\u0000\u016e\u0161\u0001\u0000\u0000\u0000\u016e\u0162\u0001\u0000"+
+ "\u0000\u0000\u016e\u016f\u0001\u0000\u0000\u0000\u016f\u0170\u0001\u0000"+
+ "\u0000\u0000\u0170\u0171\u0005;\u0000\u0000\u0171\u0017\u0001\u0000\u0000"+
+ "\u0000\u0172\u0173\u0003V+\u0000\u0173\u0019\u0001\u0000\u0000\u0000\u0174"+
+ "\u0175\u0005J\u0000\u0000\u0175\u017a\u0003\u001c\u000e\u0000\u0176\u0177"+
+ "\u0005*\u0000\u0000\u0177\u0179\u0003\u001c\u000e\u0000\u0178\u0176\u0001"+
+ "\u0000\u0000\u0000\u0179\u017c\u0001\u0000\u0000\u0000\u017a\u0178\u0001"+
+ "\u0000\u0000\u0000\u017a\u017b\u0001\u0000\u0000\u0000\u017b\u017d\u0001"+
+ "\u0000\u0000\u0000\u017c\u017a\u0001\u0000\u0000\u0000\u017d\u017e\u0005"+
+ "K\u0000\u0000\u017e\u001b\u0001\u0000\u0000\u0000\u017f\u0180\u0003x<"+
+ "\u0000\u0180\u0181\u0005)\u0000\u0000\u0181\u0182\u0003P(\u0000\u0182"+
+ "\u001d\u0001\u0000\u0000\u0000\u0183\u0184\u0003L&\u0000\u0184\u001f\u0001"+
+ "\u0000\u0000\u0000\u0185\u0186\u0005\r\u0000\u0000\u0186\u0187\u0003\""+
+ "\u0011\u0000\u0187!\u0001\u0000\u0000\u0000\u0188\u018d\u0003$\u0012\u0000"+
+ "\u0189\u018a\u0005*\u0000\u0000\u018a\u018c\u0003$\u0012\u0000\u018b\u0189"+
+ "\u0001\u0000\u0000\u0000\u018c\u018f\u0001\u0000\u0000\u0000\u018d\u018b"+
+ "\u0001\u0000\u0000\u0000\u018d\u018e\u0001\u0000\u0000\u0000\u018e#\u0001"+
+ "\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000\u0000\u0190\u0191\u0003"+
+ "F#\u0000\u0191\u0192\u0005&\u0000\u0000\u0192\u0194\u0001\u0000\u0000"+
+ "\u0000\u0193\u0190\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000"+
+ "\u0000\u0194\u0195\u0001\u0000\u0000\u0000\u0195\u0196\u0003\n\u0005\u0000"+
+ "\u0196%\u0001\u0000\u0000\u0000\u0197\u019c\u0003(\u0014\u0000\u0198\u0199"+
+ "\u0005*\u0000\u0000\u0199\u019b\u0003(\u0014\u0000\u019a\u0198\u0001\u0000"+
+ "\u0000\u0000\u019b\u019e\u0001\u0000\u0000\u0000\u019c\u019a\u0001\u0000"+
+ "\u0000\u0000\u019c\u019d\u0001\u0000\u0000\u0000\u019d\'\u0001\u0000\u0000"+
+ "\u0000\u019e\u019c\u0001\u0000\u0000\u0000\u019f\u01a2\u0003F#\u0000\u01a0"+
+ "\u01a1\u0005&\u0000\u0000\u01a1\u01a3\u0003\n\u0005\u0000\u01a2\u01a0"+
+ "\u0001\u0000\u0000\u0000\u01a2\u01a3\u0001\u0000\u0000\u0000\u01a3)\u0001"+
+ "\u0000\u0000\u0000\u01a4\u01a5\u0005\u0007\u0000\u0000\u01a5\u01aa\u0003"+
+ ",\u0016\u0000\u01a6\u01a7\u0005*\u0000\u0000\u01a7\u01a9\u0003,\u0016"+
+ "\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01ac\u0001\u0000\u0000"+
+ "\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01aa\u01ab\u0001\u0000\u0000"+
+ "\u0000\u01ab\u01ae\u0001\u0000\u0000\u0000\u01ac\u01aa\u0001\u0000\u0000"+
+ "\u0000\u01ad\u01af\u00036\u001b\u0000\u01ae\u01ad\u0001\u0000\u0000\u0000"+
+ "\u01ae\u01af\u0001\u0000\u0000\u0000\u01af+\u0001\u0000\u0000\u0000\u01b0"+
+ "\u01b1\u0003.\u0017\u0000\u01b1\u01b2\u0005)\u0000\u0000\u01b2\u01b3\u0003"+
+ "2\u0019\u0000\u01b3\u01ba\u0001\u0000\u0000\u0000\u01b4\u01b5\u00032\u0019"+
+ "\u0000\u01b5\u01b6\u0005(\u0000\u0000\u01b6\u01b7\u00030\u0018\u0000\u01b7"+
+ "\u01ba\u0001\u0000\u0000\u0000\u01b8\u01ba\u00034\u001a\u0000\u01b9\u01b0"+
+ "\u0001\u0000\u0000\u0000\u01b9\u01b4\u0001\u0000\u0000\u0000\u01b9\u01b8"+
+ "\u0001\u0000\u0000\u0000\u01ba-\u0001\u0000\u0000\u0000\u01bb\u01bc\u0005"+
+ "Z\u0000\u0000\u01bc/\u0001\u0000\u0000\u0000\u01bd\u01be\u0005Z\u0000"+
+ "\u0000\u01be1\u0001\u0000\u0000\u0000\u01bf\u01c0\u0005Z\u0000\u0000\u01c0"+
+ "3\u0001\u0000\u0000\u0000\u01c1\u01c2\u0007\u0002\u0000\u0000\u01c25\u0001"+
+ "\u0000\u0000\u0000\u01c3\u01c6\u00038\u001c\u0000\u01c4\u01c6\u0003:\u001d"+
+ "\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c5\u01c4\u0001\u0000\u0000"+
+ "\u0000\u01c67\u0001\u0000\u0000\u0000\u01c7\u01c8\u0005Y\u0000\u0000\u01c8"+
+ "\u01cd\u0005Z\u0000\u0000\u01c9\u01ca\u0005*\u0000\u0000\u01ca\u01cc\u0005"+
+ "Z\u0000\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cc\u01cf\u0001\u0000"+
+ "\u0000\u0000\u01cd\u01cb\u0001\u0000\u0000\u0000\u01cd\u01ce\u0001\u0000"+
+ "\u0000\u0000\u01ce9\u0001\u0000\u0000\u0000\u01cf\u01cd\u0001\u0000\u0000"+
+ "\u0000\u01d0\u01d1\u0005O\u0000\u0000\u01d1\u01d2\u00038\u001c\u0000\u01d2"+
+ "\u01d3\u0005P\u0000\u0000\u01d3;\u0001\u0000\u0000\u0000\u01d4\u01d5\u0005"+
+ "\u0017\u0000\u0000\u01d5\u01da\u0003,\u0016\u0000\u01d6\u01d7\u0005*\u0000"+
+ "\u0000\u01d7\u01d9\u0003,\u0016\u0000\u01d8\u01d6\u0001\u0000\u0000\u0000"+
+ "\u01d9\u01dc\u0001\u0000\u0000\u0000\u01da\u01d8\u0001\u0000\u0000\u0000"+
+ "\u01da\u01db\u0001\u0000\u0000\u0000\u01db\u01de\u0001\u0000\u0000\u0000"+
+ "\u01dc\u01da\u0001\u0000\u0000\u0000\u01dd\u01df\u0003B!\u0000\u01de\u01dd"+
+ "\u0001\u0000\u0000\u0000\u01de\u01df\u0001\u0000\u0000\u0000\u01df\u01e2"+
+ "\u0001\u0000\u0000\u0000\u01e0\u01e1\u0005\'\u0000\u0000\u01e1\u01e3\u0003"+
+ "\"\u0011\u0000\u01e2\u01e0\u0001\u0000\u0000\u0000\u01e2\u01e3\u0001\u0000"+
+ "\u0000\u0000\u01e3=\u0001\u0000\u0000\u0000\u01e4\u01e5\u0005\u0005\u0000"+
+ "\u0000\u01e5\u01e6\u0003\"\u0011\u0000\u01e6?\u0001\u0000\u0000\u0000"+
+ "\u01e7\u01e9\u0005\u0011\u0000\u0000\u01e8\u01ea\u0003B!\u0000\u01e9\u01e8"+
+ "\u0001\u0000\u0000\u0000\u01e9\u01ea\u0001\u0000\u0000\u0000\u01ea\u01ed"+
+ "\u0001\u0000\u0000\u0000\u01eb\u01ec\u0005\'\u0000\u0000\u01ec\u01ee\u0003"+
+ "\"\u0011\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000"+
+ "\u0000\u0000\u01eeA\u0001\u0000\u0000\u0000\u01ef\u01f4\u0003D\"\u0000"+
+ "\u01f0\u01f1\u0005*\u0000\u0000\u01f1\u01f3\u0003D\"\u0000\u01f2\u01f0"+
+ "\u0001\u0000\u0000\u0000\u01f3\u01f6\u0001\u0000\u0000\u0000\u01f4\u01f2"+
+ "\u0001\u0000\u0000\u0000\u01f4\u01f5\u0001\u0000\u0000\u0000\u01f5C\u0001"+
+ "\u0000\u0000\u0000\u01f6\u01f4\u0001\u0000\u0000\u0000\u01f7\u01fa\u0003"+
+ "$\u0012\u0000\u01f8\u01f9\u0005\u0012\u0000\u0000\u01f9\u01fb\u0003\n"+
+ "\u0005\u0000\u01fa\u01f8\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000"+
+ "\u0000\u0000\u01fbE\u0001\u0000\u0000\u0000\u01fc\u0201\u0003V+\u0000"+
+ "\u01fd\u01fe\u0005,\u0000\u0000\u01fe\u0200\u0003V+\u0000\u01ff\u01fd"+
+ "\u0001\u0000\u0000\u0000\u0200\u0203\u0001\u0000\u0000\u0000\u0201\u01ff"+
+ "\u0001\u0000\u0000\u0000\u0201\u0202\u0001\u0000\u0000\u0000\u0202G\u0001"+
+ "\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0204\u0209\u0003"+
+ "N\'\u0000\u0205\u0206\u0005,\u0000\u0000\u0206\u0208\u0003N\'\u0000\u0207"+
+ "\u0205\u0001\u0000\u0000\u0000\u0208\u020b\u0001\u0000\u0000\u0000\u0209"+
+ "\u0207\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000\u0000\u0000\u020a"+
+ "I\u0001\u0000\u0000\u0000\u020b\u0209\u0001\u0000\u0000\u0000\u020c\u0211"+
+ "\u0003H$\u0000\u020d\u020e\u0005*\u0000\u0000\u020e\u0210\u0003H$\u0000"+
+ "\u020f\u020d\u0001\u0000\u0000\u0000\u0210\u0213\u0001\u0000\u0000\u0000"+
+ "\u0211\u020f\u0001\u0000\u0000\u0000\u0211\u0212\u0001\u0000\u0000\u0000"+
+ "\u0212K\u0001\u0000\u0000\u0000\u0213\u0211\u0001\u0000\u0000\u0000\u0214"+
+ "\u0215\u0007\u0003\u0000\u0000\u0215M\u0001\u0000\u0000\u0000\u0216\u021a"+
+ "\u0005^\u0000\u0000\u0217\u021a\u0003R)\u0000\u0218\u021a\u0003T*\u0000"+
+ "\u0219\u0216\u0001\u0000\u0000\u0000\u0219\u0217\u0001\u0000\u0000\u0000"+
+ "\u0219\u0218\u0001\u0000\u0000\u0000\u021aO\u0001\u0000\u0000\u0000\u021b"+
+ "\u0246\u00055\u0000\u0000\u021c\u021d\u0003v;\u0000\u021d\u021e\u0005"+
+ "Q\u0000\u0000\u021e\u0246\u0001\u0000\u0000\u0000\u021f\u0246\u0003t:"+
+ "\u0000\u0220\u0246\u0003v;\u0000\u0221\u0246\u0003p8\u0000\u0222\u0246"+
+ "\u0003R)\u0000\u0223\u0246\u0003x<\u0000\u0224\u0225\u0005O\u0000\u0000"+
+ "\u0225\u022a\u0003r9\u0000\u0226\u0227\u0005*\u0000\u0000\u0227\u0229"+
+ "\u0003r9\u0000\u0228\u0226\u0001\u0000\u0000\u0000\u0229\u022c\u0001\u0000"+
+ "\u0000\u0000\u022a\u0228\u0001\u0000\u0000\u0000\u022a\u022b\u0001\u0000"+
+ "\u0000\u0000\u022b\u022d\u0001\u0000\u0000\u0000\u022c\u022a\u0001\u0000"+
+ "\u0000\u0000\u022d\u022e\u0005P\u0000\u0000\u022e\u0246\u0001\u0000\u0000"+
+ "\u0000\u022f\u0230\u0005O\u0000\u0000\u0230\u0235\u0003p8\u0000\u0231"+
+ "\u0232\u0005*\u0000\u0000\u0232\u0234\u0003p8\u0000\u0233\u0231\u0001"+
+ "\u0000\u0000\u0000\u0234\u0237\u0001\u0000\u0000\u0000\u0235\u0233\u0001"+
+ "\u0000\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0238\u0001"+
+ "\u0000\u0000\u0000\u0237\u0235\u0001\u0000\u0000\u0000\u0238\u0239\u0005"+
+ "P\u0000\u0000\u0239\u0246\u0001\u0000\u0000\u0000\u023a\u023b\u0005O\u0000"+
+ "\u0000\u023b\u0240\u0003x<\u0000\u023c\u023d\u0005*\u0000\u0000\u023d"+
+ "\u023f\u0003x<\u0000\u023e\u023c\u0001\u0000\u0000\u0000\u023f\u0242\u0001"+
+ "\u0000\u0000\u0000\u0240\u023e\u0001\u0000\u0000\u0000\u0240\u0241\u0001"+
+ "\u0000\u0000\u0000\u0241\u0243\u0001\u0000\u0000\u0000\u0242\u0240\u0001"+
+ "\u0000\u0000\u0000\u0243\u0244\u0005P\u0000\u0000\u0244\u0246\u0001\u0000"+
+ "\u0000\u0000\u0245\u021b\u0001\u0000\u0000\u0000\u0245\u021c\u0001\u0000"+
+ "\u0000\u0000\u0245\u021f\u0001\u0000\u0000\u0000\u0245\u0220\u0001\u0000"+
+ "\u0000\u0000\u0245\u0221\u0001\u0000\u0000\u0000\u0245\u0222\u0001\u0000"+
+ "\u0000\u0000\u0245\u0223\u0001\u0000\u0000\u0000\u0245\u0224\u0001\u0000"+
+ "\u0000\u0000\u0245\u022f\u0001\u0000\u0000\u0000\u0245\u023a\u0001\u0000"+
+ "\u0000\u0000\u0246Q\u0001\u0000\u0000\u0000\u0247\u024a\u00059\u0000\u0000"+
+ "\u0248\u024a\u0005M\u0000\u0000\u0249\u0247\u0001\u0000\u0000\u0000\u0249"+
+ "\u0248\u0001\u0000\u0000\u0000\u024aS\u0001\u0000\u0000\u0000\u024b\u024e"+
+ "\u0005L\u0000\u0000\u024c\u024e\u0005N\u0000\u0000\u024d\u024b\u0001\u0000"+
+ "\u0000\u0000\u024d\u024c\u0001\u0000\u0000\u0000\u024eU\u0001\u0000\u0000"+
+ "\u0000\u024f\u0253\u0003L&\u0000\u0250\u0253\u0003R)\u0000\u0251\u0253"+
+ "\u0003T*\u0000\u0252\u024f\u0001\u0000\u0000\u0000\u0252\u0250\u0001\u0000"+
+ "\u0000\u0000\u0252\u0251\u0001\u0000\u0000\u0000\u0253W\u0001\u0000\u0000"+
+ "\u0000\u0254\u0255\u0005\n\u0000\u0000\u0255\u0256\u0003P(\u0000\u0256"+
+ "Y\u0001\u0000\u0000\u0000\u0257\u0258\u0005\u0010\u0000\u0000\u0258\u025d"+
+ "\u0003\\.\u0000\u0259\u025a\u0005*\u0000\u0000\u025a\u025c\u0003\\.\u0000"+
+ "\u025b\u0259\u0001\u0000\u0000\u0000\u025c\u025f\u0001\u0000\u0000\u0000"+
+ "\u025d\u025b\u0001\u0000\u0000\u0000\u025d\u025e\u0001\u0000\u0000\u0000"+
+ "\u025e[\u0001\u0000\u0000\u0000\u025f\u025d\u0001\u0000\u0000\u0000\u0260"+
+ "\u0262\u0003\n\u0005\u0000\u0261\u0263\u0007\u0004\u0000\u0000\u0262\u0261"+
+ "\u0001\u0000\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263\u0266"+
+ "\u0001\u0000\u0000\u0000\u0264\u0265\u00056\u0000\u0000\u0265\u0267\u0007"+
+ "\u0005\u0000\u0000\u0266\u0264\u0001\u0000\u0000\u0000\u0266\u0267\u0001"+
+ "\u0000\u0000\u0000\u0267]\u0001\u0000\u0000\u0000\u0268\u0269\u0005\t"+
+ "\u0000\u0000\u0269\u026a\u0003J%\u0000\u026a_\u0001\u0000\u0000\u0000"+
+ "\u026b\u026c\u0005\u0003\u0000\u0000\u026c\u026d\u0003J%\u0000\u026da"+
+ "\u0001\u0000\u0000\u0000\u026e\u026f\u0005\f\u0000\u0000\u026f\u0274\u0003"+
+ "d2\u0000\u0270\u0271\u0005*\u0000\u0000\u0271\u0273\u0003d2\u0000\u0272"+
+ "\u0270\u0001\u0000\u0000\u0000\u0273\u0276\u0001\u0000\u0000\u0000\u0274"+
+ "\u0272\u0001\u0000\u0000\u0000\u0274\u0275\u0001\u0000\u0000\u0000\u0275"+
+ "c\u0001\u0000\u0000\u0000\u0276\u0274\u0001\u0000\u0000\u0000\u0277\u0278"+
+ "\u0003H$\u0000\u0278\u0279\u0005b\u0000\u0000\u0279\u027a\u0003H$\u0000"+
+ "\u027a\u0280\u0001\u0000\u0000\u0000\u027b\u027c\u0003H$\u0000\u027c\u027d"+
+ "\u0005&\u0000\u0000\u027d\u027e\u0003H$\u0000\u027e\u0280\u0001\u0000"+
+ "\u0000\u0000\u027f\u0277\u0001\u0000\u0000\u0000\u027f\u027b\u0001\u0000"+
+ "\u0000\u0000\u0280e\u0001\u0000\u0000\u0000\u0281\u0282\u0005\u0002\u0000"+
+ "\u0000\u0282\u0283\u0003\u0014\n\u0000\u0283\u0285\u0003x<\u0000\u0284"+
+ "\u0286\u0003l6\u0000\u0285\u0284\u0001\u0000\u0000\u0000\u0285\u0286\u0001"+
+ "\u0000\u0000\u0000\u0286g\u0001\u0000\u0000\u0000\u0287\u0288\u0005\b"+
+ "\u0000\u0000\u0288\u0289\u0003\u0014\n\u0000\u0289\u028a\u0003x<\u0000"+
+ "\u028ai\u0001\u0000\u0000\u0000\u028b\u028c\u0005\u000b\u0000\u0000\u028c"+
+ "\u028d\u0003F#\u0000\u028dk\u0001\u0000\u0000\u0000\u028e\u0293\u0003"+
+ "n7\u0000\u028f\u0290\u0005*\u0000\u0000\u0290\u0292\u0003n7\u0000\u0291"+
+ "\u028f\u0001\u0000\u0000\u0000\u0292\u0295\u0001\u0000\u0000\u0000\u0293"+
+ "\u0291\u0001\u0000\u0000\u0000\u0293\u0294\u0001\u0000\u0000\u0000\u0294"+
+ "m\u0001\u0000\u0000\u0000\u0295\u0293\u0001\u0000\u0000\u0000\u0296\u0297"+
+ "\u0003L&\u0000\u0297\u0298\u0005&\u0000\u0000\u0298\u0299\u0003P(\u0000"+
+ "\u0299o\u0001\u0000\u0000\u0000\u029a\u029b\u0007\u0006\u0000\u0000\u029b"+
+ "q\u0001\u0000\u0000\u0000\u029c\u029f\u0003t:\u0000\u029d\u029f\u0003"+
+ "v;\u0000\u029e\u029c\u0001\u0000\u0000\u0000\u029e\u029d\u0001\u0000\u0000"+
+ "\u0000\u029fs\u0001\u0000\u0000\u0000\u02a0\u02a2\u0007\u0000\u0000\u0000"+
+ "\u02a1\u02a0\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000\u0000"+
+ "\u02a2\u02a3\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005#\u0000\u0000\u02a4"+
+ "u\u0001\u0000\u0000\u0000\u02a5\u02a7\u0007\u0000\u0000\u0000\u02a6\u02a5"+
+ "\u0001\u0000\u0000\u0000\u02a6\u02a7\u0001\u0000\u0000\u0000\u02a7\u02a8"+
+ "\u0001\u0000\u0000\u0000\u02a8\u02a9\u0005\"\u0000\u0000\u02a9w\u0001"+
+ "\u0000\u0000\u0000\u02aa\u02ab\u0005!\u0000\u0000\u02aby\u0001\u0000\u0000"+
+ "\u0000\u02ac\u02ad\u0007\u0007\u0000\u0000\u02ad{\u0001\u0000\u0000\u0000"+
+ "\u02ae\u02af\u0005\u0006\u0000\u0000\u02af\u02b0\u0003~?\u0000\u02b0}"+
+ "\u0001\u0000\u0000\u0000\u02b1\u02b2\u0005O\u0000\u0000\u02b2\u02b3\u0003"+
+ "\u0002\u0001\u0000\u02b3\u02b4\u0005P\u0000\u0000\u02b4\u007f\u0001\u0000"+
+ "\u0000\u0000\u02b5\u02b6\u0005\u000f\u0000\u0000\u02b6\u02b7\u0005p\u0000"+
+ "\u0000\u02b7\u0081\u0001\u0000\u0000\u0000\u02b8\u02b9\u0005\u0004\u0000"+
+ "\u0000\u02b9\u02bc\u0003\u0084B\u0000\u02ba\u02bb\u00057\u0000\u0000\u02bb"+
+ "\u02bd\u0003H$\u0000\u02bc\u02ba\u0001\u0000\u0000\u0000\u02bc\u02bd\u0001"+
+ "\u0000\u0000\u0000\u02bd\u02c7\u0001\u0000\u0000\u0000\u02be\u02bf\u0005"+
+ "=\u0000\u0000\u02bf\u02c4\u0003\u0086C\u0000\u02c0\u02c1\u0005*\u0000"+
+ "\u0000\u02c1\u02c3\u0003\u0086C\u0000\u02c2\u02c0\u0001\u0000\u0000\u0000"+
+ "\u02c3\u02c6\u0001\u0000\u0000\u0000\u02c4\u02c2\u0001\u0000\u0000\u0000"+
+ "\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5\u02c8\u0001\u0000\u0000\u0000"+
+ "\u02c6\u02c4\u0001\u0000\u0000\u0000\u02c7\u02be\u0001\u0000\u0000\u0000"+
+ "\u02c7\u02c8\u0001\u0000\u0000\u0000\u02c8\u0083\u0001\u0000\u0000\u0000"+
+ "\u02c9\u02ca\u0007\b\u0000\u0000\u02ca\u0085\u0001\u0000\u0000\u0000\u02cb"+
+ "\u02cc\u0003H$\u0000\u02cc\u02cd\u0005&\u0000\u0000\u02cd\u02cf\u0001"+
+ "\u0000\u0000\u0000\u02ce\u02cb\u0001\u0000\u0000\u0000\u02ce\u02cf\u0001"+
+ "\u0000\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d1\u0003"+
+ "H$\u0000\u02d1\u0087\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005\u0014\u0000"+
+ "\u0000\u02d3\u02d6\u0003F#\u0000\u02d4\u02d5\u00057\u0000\u0000\u02d5"+
+ "\u02d7\u0003F#\u0000\u02d6\u02d4\u0001\u0000\u0000\u0000\u02d6\u02d7\u0001"+
+ "\u0000\u0000\u0000\u02d7\u02dd\u0001\u0000\u0000\u0000\u02d8\u02d9\u0005"+
+ "b\u0000\u0000\u02d9\u02da\u0003F#\u0000\u02da\u02db\u0005*\u0000\u0000"+
+ "\u02db\u02dc\u0003F#\u0000\u02dc\u02de\u0001\u0000\u0000\u0000\u02dd\u02d8"+
+ "\u0001\u0000\u0000\u0000\u02dd\u02de\u0001\u0000\u0000\u0000\u02de\u0089"+
+ "\u0001\u0000\u0000\u0000\u02df\u02e0\u0005\u000e\u0000\u0000\u02e0\u02e1"+
+ "\u0003P(\u0000\u02e1\u008b\u0001\u0000\u0000\u0000\u02e2\u02e3\u0005\u0016"+
+ "\u0000\u0000\u02e3\u02e4\u0003,\u0016\u0000\u02e4\u02e5\u00057\u0000\u0000"+
+ "\u02e5\u02e6\u0003J%\u0000\u02e6\u008d\u0001\u0000\u0000\u0000\u02e7\u02e8"+
+ "\u0005\u0015\u0000\u0000\u02e8\u02eb\u0003B!\u0000\u02e9\u02ea\u0005\'"+
+ "\u0000\u0000\u02ea\u02ec\u0003\"\u0011\u0000\u02eb\u02e9\u0001\u0000\u0000"+
+ "\u0000\u02eb\u02ec\u0001\u0000\u0000\u0000\u02ec\u008f\u0001\u0000\u0000"+
+ "\u0000\u02ed\u02ee\u0007\t\u0000\u0000\u02ee\u02ef\u0005~\u0000\u0000"+
+ "\u02ef\u02f0\u0003\u0092I\u0000\u02f0\u02f1\u0003\u0094J\u0000\u02f1\u0091"+
+ "\u0001\u0000\u0000\u0000\u02f2\u02f3\u0003,\u0016\u0000\u02f3\u0093\u0001"+
+ "\u0000\u0000\u0000\u02f4\u02f5\u00057\u0000\u0000\u02f5\u02fa\u0003\u0096"+
+ "K\u0000\u02f6\u02f7\u0005*\u0000\u0000\u02f7\u02f9\u0003\u0096K\u0000"+
+ "\u02f8\u02f6\u0001\u0000\u0000\u0000\u02f9\u02fc\u0001\u0000\u0000\u0000"+
+ "\u02fa\u02f8\u0001\u0000\u0000\u0000\u02fa\u02fb\u0001\u0000\u0000\u0000"+
+ "\u02fb\u0095\u0001\u0000\u0000\u0000\u02fc\u02fa\u0001\u0000\u0000\u0000"+
+ "\u02fd\u02fe\u0003\u0010\b\u0000\u02fe\u0097\u0001\u0000\u0000\u0000\u02ff"+
+ "\u0304\u0003\u009aM\u0000\u0300\u0301\u0005*\u0000\u0000\u0301\u0303\u0003"+
+ "\u009aM\u0000\u0302\u0300\u0001\u0000\u0000\u0000\u0303\u0306\u0001\u0000"+
+ "\u0000\u0000\u0304\u0302\u0001\u0000\u0000\u0000\u0304\u0305\u0001\u0000"+
+ "\u0000\u0000\u0305\u0099\u0001\u0000\u0000\u0000\u0306\u0304\u0001\u0000"+
+ "\u0000\u0000\u0307\u0308\u0003L&\u0000\u0308\u0309\u0005&\u0000\u0000"+
+ "\u0309\u030a\u0003\u009cN\u0000\u030a\u009b\u0001\u0000\u0000\u0000\u030b"+
+ "\u030e\u0003P(\u0000\u030c\u030e\u0003L&\u0000\u030d\u030b\u0001\u0000"+
+ "\u0000\u0000\u030d\u030c\u0001\u0000\u0000\u0000\u030e\u009d\u0001\u0000"+
+ "\u0000\u0000\u030f\u0310\u0005\u0018\u0000\u0000\u0310\u0311\u0003P(\u0000"+
+ "\u0311\u0312\u00057\u0000\u0000\u0312\u0315\u0003&\u0013\u0000\u0313\u0314"+
+ "\u0005=\u0000\u0000\u0314\u0316\u0003\u0098L\u0000\u0315\u0313\u0001\u0000"+
+ "\u0000\u0000\u0315\u0316\u0001\u0000\u0000\u0000\u0316\u009f\u0001\u0000"+
+ "\u0000\u0000\u0317\u031b\u0005\u0001\u0000\u0000\u0318\u0319\u0003F#\u0000"+
+ "\u0319\u031a\u0005&\u0000\u0000\u031a\u031c\u0001\u0000\u0000\u0000\u031b"+
+ "\u0318\u0001\u0000\u0000\u0000\u031b\u031c\u0001\u0000\u0000\u0000\u031c"+
+ "\u031d\u0001\u0000\u0000\u0000\u031d\u031e\u0003\u0014\n\u0000\u031e\u031f"+
+ "\u0005=\u0000\u0000\u031f\u0320\u0003V+\u0000\u0320\u00a1\u0001\u0000"+
+ "\u0000\u0000L\u00ad\u00b6\u00ce\u00da\u00e3\u00eb\u00f0\u00f8\u00fa\u00ff"+
+ "\u0106\u010d\u0116\u011d\u0126\u012b\u0130\u013a\u0140\u0148\u014a\u0155"+
+ "\u015c\u0167\u016c\u016e\u017a\u018d\u0193\u019c\u01a2\u01aa\u01ae\u01b9"+
+ "\u01c5\u01cd\u01da\u01de\u01e2\u01e9\u01ed\u01f4\u01fa\u0201\u0209\u0211"+
+ "\u0219\u022a\u0235\u0240\u0245\u0249\u024d\u0252\u025d\u0262\u0266\u0274"+
+ "\u027f\u0285\u0293\u029e\u02a1\u02a6\u02bc\u02c4\u02c7\u02ce\u02d6\u02dd"+
+ "\u02eb\u02fa\u0304\u030d\u0315\u031b";
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 3fe4accec1c6b..4cb4d9dca79bc 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
@@ -212,6 +212,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext 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 52aa6358da8fc..5a0b0fb6dc988 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
@@ -132,6 +132,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext 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 3adc147bdfb60..52780d6881abb 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
@@ -199,6 +199,18 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx);
+ /**
+ * Enter a parse tree produced by the {@code rlikeListExpression}
+ * labeled alternative in {@link EsqlBaseParser#regexBooleanExpression}.
+ * @param ctx the parse tree
+ */
+ void enterRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx);
+ /**
+ * Exit a parse tree produced by the {@code rlikeListExpression}
+ * labeled alternative in {@link EsqlBaseParser#regexBooleanExpression}.
+ * @param ctx the parse tree
+ */
+ void exitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext 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 92f17c51ca30d..9cc686e7d88c2 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
@@ -126,6 +126,13 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitLikeListExpression(EsqlBaseParser.LikeListExpressionContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code rlikeListExpression}
+ * labeled alternative in {@link EsqlBaseParser#regexBooleanExpression}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitRlikeListExpression(EsqlBaseParser.RlikeListExpressionContext ctx);
/**
* Visit 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/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java
index 591c0d0ec794b..8c6d382c498da 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
@@ -30,6 +30,7 @@
import org.elasticsearch.xpack.esql.core.expression.UnresolvedStar;
import org.elasticsearch.xpack.esql.core.expression.function.Function;
import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePattern;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
import org.elasticsearch.xpack.esql.core.expression.predicate.regex.WildcardPattern;
import org.elasticsearch.xpack.esql.core.expression.predicate.regex.WildcardPatternList;
import org.elasticsearch.xpack.esql.core.tree.Source;
@@ -44,6 +45,7 @@
import org.elasticsearch.xpack.esql.expression.function.aggregate.FilteredExpression;
import org.elasticsearch.xpack.esql.expression.function.fulltext.MatchOperator;
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.logical.And;
@@ -748,7 +750,7 @@ public Expression visitRlikeExpression(EsqlBaseParser.RlikeExpressionContext ctx
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 LIKE [{}]: [{}]", patternLiteral, e.getMessage());
+ throw new ParsingException(source, "Invalid pattern for RLIKE [{}]: [{}]", patternLiteral, e.getMessage());
}
}
@@ -781,6 +783,21 @@ public Expression visitLikeListExpression(EsqlBaseParser.LikeListExpressionConte
return ctx.NOT() == null ? e : new Not(source, e);
}
+ @Override
+ 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()))))
+ .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.get(0))
+ : new RLikeList(source, left, new RLikePatternList(rLikePatterns));
+ return ctx.NOT() == null ? e : new Not(source, e);
+ }
+
@Override
public Order visitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) {
return new Order(
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListErrorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListErrorTests.java
new file mode 100644
index 0000000000000..0e2fa024bda58
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListErrorTests.java
@@ -0,0 +1,49 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.expression.function.scalar.string;
+
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.core.type.DataType;
+import org.elasticsearch.xpack.esql.expression.function.ErrorsForCasesWithoutExamplesTestCase;
+import org.elasticsearch.xpack.esql.expression.function.TestCaseSupplier;
+import org.hamcrest.Matcher;
+
+import java.util.List;
+import java.util.Set;
+import java.util.stream.Stream;
+
+import static org.hamcrest.Matchers.equalTo;
+
+public class RLikeListErrorTests extends ErrorsForCasesWithoutExamplesTestCase {
+ @Override
+ protected List cases() {
+ return paramsToSuppliers(RLikeListTests.parameters());
+ }
+
+ @Override
+ protected Stream> testCandidates(List cases, Set> valid) {
+ /*
+ * We can't support certain signatures, and it's safe not to test them because
+ * you can't even build them.... The building comes directly from the parser
+ * and can only make certain types.
+ */
+ return super.testCandidates(cases, valid).filter(sig -> sig.get(1) == DataType.KEYWORD)
+ .filter(sig -> sig.size() > 2 && sig.get(2) == DataType.BOOLEAN);
+ }
+
+ @Override
+ protected Expression build(Source source, List args) {
+ return RLikeTests.buildRLike(logger, source, args);
+ }
+
+ @Override
+ protected Matcher expectedTypeErrorMatcher(List> validPerPosition, List signature) {
+ return equalTo(typeErrorMessage(false, validPerPosition, signature, (v, p) -> "string"));
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListSerializationTests.java
new file mode 100644
index 0000000000000..ff2dd31e2c832
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListSerializationTests.java
@@ -0,0 +1,54 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.expression.function.scalar.string;
+
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePattern;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.expression.AbstractExpressionSerializationTests;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.RLikeList;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+public class RLikeListSerializationTests extends AbstractExpressionSerializationTests {
+ @Override
+ protected RLikeList createTestInstance() {
+ Source source = randomSource();
+ Expression child = randomChild();
+ return new RLikeList(source, child, generateRandomPatternList());
+ }
+
+ @Override
+ protected RLikeList mutateInstance(RLikeList instance) throws IOException {
+ Source source = instance.source();
+ Expression child = instance.field();
+ List patterns = new ArrayList<>(instance.pattern().patternList());
+ int childToModify = randomIntBetween(0, patterns.size() - 1);
+ RLikePattern pattern = patterns.get(childToModify);
+ if (randomBoolean()) {
+ child = randomValueOtherThan(child, AbstractExpressionSerializationTests::randomChild);
+ } else {
+ pattern = randomValueOtherThan(pattern, () -> new RLikePattern(randomAlphaOfLength(4)));
+ }
+ patterns.set(childToModify, pattern);
+ return new RLikeList(source, child, new RLikePatternList(patterns));
+ }
+
+ private RLikePatternList generateRandomPatternList() {
+ int numChildren = randomIntBetween(1, 10); // Ensure at least one child
+ List patterns = new ArrayList<>(numChildren);
+ for (int i = 0; i < numChildren; i++) {
+ RLikePattern pattern = new RLikePattern(randomAlphaOfLength(4));
+ patterns.add(pattern);
+ }
+ return new RLikePatternList(patterns);
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListTests.java
new file mode 100644
index 0000000000000..5e1b4dc300a3a
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/scalar/string/RLikeListTests.java
@@ -0,0 +1,198 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.expression.function.scalar.string;
+
+import com.carrotsearch.randomizedtesting.annotations.Name;
+import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
+
+import org.apache.logging.log4j.Logger;
+import org.apache.lucene.util.BytesRef;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.FoldContext;
+import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePattern;
+import org.elasticsearch.xpack.esql.core.expression.predicate.regex.RLikePatternList;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.core.type.DataType;
+import org.elasticsearch.xpack.esql.expression.function.AbstractScalarFunctionTestCase;
+import org.elasticsearch.xpack.esql.expression.function.TestCaseSupplier;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.regex.RLikeList;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Locale;
+import java.util.function.Function;
+import java.util.function.Predicate;
+import java.util.function.Supplier;
+
+import static org.elasticsearch.xpack.esql.core.util.TestUtils.randomCasing;
+import static org.hamcrest.Matchers.equalTo;
+import static org.hamcrest.Matchers.nullValue;
+import static org.hamcrest.Matchers.startsWith;
+
+public class RLikeListTests extends AbstractScalarFunctionTestCase {
+ public RLikeListTests(@Name("TestCase") Supplier testCaseSupplier) {
+ this.testCase = testCaseSupplier.get();
+ }
+
+ @ParametersFactory
+ public static Iterable