From ce6c8ad5b4ac1790fa5e5312269f8cc7393b6f4c Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Wed, 23 Apr 2025 17:48:07 +0200
Subject: [PATCH 01/11] ES|QL random sampling (#125570)
---
docs/changelog/125570.yaml | 5 +
.../org/elasticsearch/TransportVersions.java | 1 +
.../elasticsearch/search/SearchModule.java | 4 +
.../sampler/random/RandomSamplingQuery.java | 30 +-
.../random/RandomSamplingQueryBuilder.java | 149 +
.../search/SearchModuleTests.java | 1 +
.../RandomSamplingQueryBuilderTests.java | 75 +
.../core/expression/MetadataAttribute.java | 4 +
.../org/elasticsearch/compute/data/Page.java | 17 +
.../compute/operator/ChangePointOperator.java | 6 +-
.../compute/operator/FilterOperator.java | 16 +-
.../compute/operator/SampleOperator.java | 228 ++
.../compute/operator/SampleOperatorTests.java | 75 +
.../esql/qa/single_node/RestSampleIT.java | 26 +
.../esql/qa/rest/RestSampleTestCase.java | 148 +
.../src/main/resources/sample.csv-spec | 231 ++
.../esql/src/main/antlr/EsqlBaseLexer.g4 | 2 +
.../esql/src/main/antlr/EsqlBaseLexer.tokens | 327 +--
.../esql/src/main/antlr/EsqlBaseParser.g4 | 5 +
.../esql/src/main/antlr/EsqlBaseParser.tokens | 327 +--
.../xpack/esql/action/EsqlCapabilities.java | 7 +-
...PhysicalOptimizationVerificationAware.java | 22 +
.../expression/function/aggregate/Count.java | 25 +-
.../aggregate/HasSampleCorrection.java | 21 +
.../expression/function/aggregate/Sum.java | 30 +-
.../optimizer/LocalPhysicalPlanOptimizer.java | 9 +-
.../esql/optimizer/LogicalPlanOptimizer.java | 4 +
.../esql/optimizer/PhysicalPlanOptimizer.java | 7 +-
.../esql/optimizer/PhysicalVerifier.java | 21 +-
.../rules/logical/ApplySampleCorrections.java | 55 +
.../logical/PushDownAndCombineSample.java | 101 +
.../physical/local/PushSampleToSource.java | 46 +
.../physical/local/PushTopNToSource.java | 4 +-
.../xpack/esql/parser/EsqlBaseLexer.interp | 5 +-
.../xpack/esql/parser/EsqlBaseLexer.java | 2397 +++++++++--------
.../xpack/esql/parser/EsqlBaseParser.interp | 5 +-
.../xpack/esql/parser/EsqlBaseParser.java | 1971 +++++++-------
.../parser/EsqlBaseParserBaseListener.java | 12 +
.../parser/EsqlBaseParserBaseVisitor.java | 7 +
.../esql/parser/EsqlBaseParserListener.java | 10 +
.../esql/parser/EsqlBaseParserVisitor.java | 6 +
.../xpack/esql/parser/LogicalPlanBuilder.java | 20 +
.../xpack/esql/plan/PlanWritables.java | 4 +
.../xpack/esql/plan/logical/Sample.java | 113 +
.../xpack/esql/plan/physical/EsQueryExec.java | 6 +
.../xpack/esql/plan/physical/SampleExec.java | 114 +
.../esql/planner/LocalExecutionPlanner.java | 13 +
.../esql/planner/mapper/LocalMapper.java | 6 +
.../xpack/esql/planner/mapper/Mapper.java | 8 +
.../esql/planner/mapper/MapperUtils.java | 12 +-
.../xpack/esql/telemetry/FeatureMetric.java | 4 +-
.../esql/analysis/AnalyzerTestUtils.java | 11 +
.../xpack/esql/analysis/AnalyzerTests.java | 13 +
.../optimizer/LogicalPlanOptimizerTests.java | 151 ++
.../optimizer/PhysicalPlanOptimizerTests.java | 85 +-
.../esql/parser/StatementParserTests.java | 8 +
.../logical/SampleSerializationTests.java | 54 +
.../SampleExecSerializationTests.java | 48 +
.../rest-api-spec/test/esql/60_usage.yml | 4 +-
59 files changed, 4591 insertions(+), 2525 deletions(-)
create mode 100644 docs/changelog/125570.yaml
create mode 100644 server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilder.java
create mode 100644 server/src/test/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilderTests.java
create mode 100644 x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java
create mode 100644 x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java
create mode 100644 x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestSampleIT.java
create mode 100644 x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
create mode 100644 x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/capabilities/PostPhysicalOptimizationVerificationAware.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/HasSampleCorrection.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ApplySampleCorrections.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineSample.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushSampleToSource.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java
diff --git a/docs/changelog/125570.yaml b/docs/changelog/125570.yaml
new file mode 100644
index 0000000000000..ede177c666470
--- /dev/null
+++ b/docs/changelog/125570.yaml
@@ -0,0 +1,5 @@
+pr: 125570
+summary: ES|QL random sampling
+area: Machine Learning
+type: feature
+issues: []
diff --git a/server/src/main/java/org/elasticsearch/TransportVersions.java b/server/src/main/java/org/elasticsearch/TransportVersions.java
index baf52f3f67d4e..96ec8c7d1762e 100644
--- a/server/src/main/java/org/elasticsearch/TransportVersions.java
+++ b/server/src/main/java/org/elasticsearch/TransportVersions.java
@@ -244,6 +244,7 @@ static TransportVersion def(int id) {
public static final TransportVersion SETTINGS_IN_DATA_STREAMS_8_19 = def(8_841_0_51);
public static final TransportVersion ML_INFERENCE_CUSTOM_SERVICE_REMOVE_ERROR_PARSING_8_19 = def(8_841_0_52);
public static final TransportVersion ML_INFERENCE_CUSTOM_SERVICE_EMBEDDING_BATCH_SIZE_8_19 = def(8_841_0_53);
+ public static final TransportVersion RANDOM_SAMPLER_QUERY_BUILDER_8_19 = def(8_841_0_54);
/*
* STOP! READ THIS FIRST! No, really,
diff --git a/server/src/main/java/org/elasticsearch/search/SearchModule.java b/server/src/main/java/org/elasticsearch/search/SearchModule.java
index fd8630154bd6d..d72c7e1be1e7a 100644
--- a/server/src/main/java/org/elasticsearch/search/SearchModule.java
+++ b/server/src/main/java/org/elasticsearch/search/SearchModule.java
@@ -137,6 +137,7 @@
import org.elasticsearch.search.aggregations.bucket.sampler.UnmappedSampler;
import org.elasticsearch.search.aggregations.bucket.sampler.random.InternalRandomSampler;
import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplerAggregationBuilder;
+import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQueryBuilder;
import org.elasticsearch.search.aggregations.bucket.terms.DoubleTerms;
import org.elasticsearch.search.aggregations.bucket.terms.LongRareTerms;
import org.elasticsearch.search.aggregations.bucket.terms.LongTerms;
@@ -1209,6 +1210,9 @@ private void registerQueryParsers(List plugins) {
registerQuery(new QuerySpec<>(ExactKnnQueryBuilder.NAME, ExactKnnQueryBuilder::new, parser -> {
throw new IllegalArgumentException("[exact_knn] queries cannot be provided directly");
}));
+ registerQuery(
+ new QuerySpec<>(RandomSamplingQueryBuilder.NAME, RandomSamplingQueryBuilder::new, RandomSamplingQueryBuilder::fromXContent)
+ );
registerFromPlugin(plugins, SearchPlugin::getQueries, this::registerQuery);
diff --git a/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQuery.java b/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQuery.java
index ed39f41d9daed..fb8e992e806ce 100644
--- a/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQuery.java
+++ b/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQuery.java
@@ -43,14 +43,34 @@ public final class RandomSamplingQuery extends Query {
* can be generated
*/
public RandomSamplingQuery(double p, int seed, int hash) {
- if (p <= 0.0 || p >= 1.0) {
- throw new IllegalArgumentException("RandomSampling probability must be between 0.0 and 1.0, was [" + p + "]");
- }
+ checkProbabilityRange(p);
this.p = p;
this.seed = seed;
this.hash = hash;
}
+ /**
+ * Verifies that the probability is within the (0.0, 1.0) range.
+ * @throws IllegalArgumentException in case of an invalid probability.
+ */
+ public static void checkProbabilityRange(double p) throws IllegalArgumentException {
+ if (p <= 0.0 || p >= 1.0) {
+ throw new IllegalArgumentException("RandomSampling probability must be strictly between 0.0 and 1.0, was [" + p + "]");
+ }
+ }
+
+ public double probability() {
+ return p;
+ }
+
+ public int seed() {
+ return seed;
+ }
+
+ public int hash() {
+ return hash;
+ }
+
@Override
public String toString(String field) {
return "RandomSamplingQuery{" + "p=" + p + ", seed=" + seed + ", hash=" + hash + '}';
@@ -97,13 +117,13 @@ public void visit(QueryVisitor visitor) {
/**
* A DocIDSetIter that skips a geometrically random number of documents
*/
- static class RandomSamplingIterator extends DocIdSetIterator {
+ public static class RandomSamplingIterator extends DocIdSetIterator {
private final int maxDoc;
private final double p;
private final FastGeometric distribution;
private int doc = -1;
- RandomSamplingIterator(int maxDoc, double p, IntSupplier rng) {
+ public RandomSamplingIterator(int maxDoc, double p, IntSupplier rng) {
this.maxDoc = maxDoc;
this.p = p;
this.distribution = new FastGeometric(rng, p);
diff --git a/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilder.java b/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilder.java
new file mode 100644
index 0000000000000..b19a4de19160c
--- /dev/null
+++ b/server/src/main/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilder.java
@@ -0,0 +1,149 @@
+/*
+ * 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", the "GNU Affero General Public License v3.0 only", and the "Server Side
+ * Public License v 1"; you may not use this file except in compliance with, at
+ * your election, the "Elastic License 2.0", the "GNU Affero General Public
+ * License v3.0 only", or the "Server Side Public License, v 1".
+ */
+
+package org.elasticsearch.search.aggregations.bucket.sampler.random;
+
+import org.apache.lucene.search.Query;
+import org.elasticsearch.TransportVersion;
+import org.elasticsearch.TransportVersions;
+import org.elasticsearch.common.Randomness;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.index.query.AbstractQueryBuilder;
+import org.elasticsearch.index.query.SearchExecutionContext;
+import org.elasticsearch.xcontent.ConstructingObjectParser;
+import org.elasticsearch.xcontent.ParseField;
+import org.elasticsearch.xcontent.XContentBuilder;
+import org.elasticsearch.xcontent.XContentParser;
+
+import java.io.IOException;
+import java.util.Objects;
+
+import static org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQuery.checkProbabilityRange;
+import static org.elasticsearch.xcontent.ConstructingObjectParser.constructorArg;
+import static org.elasticsearch.xcontent.ConstructingObjectParser.optionalConstructorArg;
+
+public class RandomSamplingQueryBuilder extends AbstractQueryBuilder {
+
+ public static final String NAME = "random_sampling";
+ static final ParseField PROBABILITY = new ParseField("query");
+ static final ParseField SEED = new ParseField("seed");
+ static final ParseField HASH = new ParseField("hash");
+
+ private final double probability;
+ private int seed = Randomness.get().nextInt();
+ private int hash = 0;
+
+ public RandomSamplingQueryBuilder(double probability) {
+ checkProbabilityRange(probability);
+ this.probability = probability;
+ }
+
+ public RandomSamplingQueryBuilder seed(int seed) {
+ checkProbabilityRange(probability);
+ this.seed = seed;
+ return this;
+ }
+
+ public RandomSamplingQueryBuilder(StreamInput in) throws IOException {
+ super(in);
+ this.probability = in.readDouble();
+ this.seed = in.readInt();
+ this.hash = in.readInt();
+ }
+
+ public RandomSamplingQueryBuilder hash(Integer hash) {
+ this.hash = hash;
+ return this;
+ }
+
+ public double probability() {
+ return probability;
+ }
+
+ public int seed() {
+ return seed;
+ }
+
+ public int hash() {
+ return hash;
+ }
+
+ @Override
+ protected void doWriteTo(StreamOutput out) throws IOException {
+ out.writeDouble(probability);
+ out.writeInt(seed);
+ out.writeInt(hash);
+ }
+
+ @Override
+ protected void doXContent(XContentBuilder builder, Params params) throws IOException {
+ builder.startObject(NAME);
+ builder.field(PROBABILITY.getPreferredName(), probability);
+ builder.field(SEED.getPreferredName(), seed);
+ builder.field(HASH.getPreferredName(), hash);
+ builder.endObject();
+ }
+
+ private static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>(
+ NAME,
+ false,
+ args -> {
+ var randomSamplingQueryBuilder = new RandomSamplingQueryBuilder((double) args[0]);
+ if (args[1] != null) {
+ randomSamplingQueryBuilder.seed((int) args[1]);
+ }
+ if (args[2] != null) {
+ randomSamplingQueryBuilder.hash((int) args[2]);
+ }
+ return randomSamplingQueryBuilder;
+ }
+ );
+
+ static {
+ PARSER.declareDouble(constructorArg(), PROBABILITY);
+ PARSER.declareInt(optionalConstructorArg(), SEED);
+ PARSER.declareInt(optionalConstructorArg(), HASH);
+ }
+
+ public static RandomSamplingQueryBuilder fromXContent(XContentParser parser) throws IOException {
+ return PARSER.apply(parser, null);
+ }
+
+ @Override
+ protected Query doToQuery(SearchExecutionContext context) throws IOException {
+ return new RandomSamplingQuery(probability, seed, hash);
+ }
+
+ @Override
+ protected boolean doEquals(RandomSamplingQueryBuilder other) {
+ return probability == other.probability && seed == other.seed && hash == other.hash;
+ }
+
+ @Override
+ protected int doHashCode() {
+ return Objects.hash(probability, seed, hash);
+ }
+
+ /**
+ * Returns the name of the writeable object
+ */
+ @Override
+ public String getWriteableName() {
+ return NAME;
+ }
+
+ /**
+ * The minimal version of the recipient this object can be sent to
+ */
+ @Override
+ public TransportVersion getMinimalSupportedVersion() {
+ return TransportVersions.RANDOM_SAMPLER_QUERY_BUILDER_8_19;
+ }
+}
diff --git a/server/src/test/java/org/elasticsearch/search/SearchModuleTests.java b/server/src/test/java/org/elasticsearch/search/SearchModuleTests.java
index 0a3c2c939b456..d0fbd84379c61 100644
--- a/server/src/test/java/org/elasticsearch/search/SearchModuleTests.java
+++ b/server/src/test/java/org/elasticsearch/search/SearchModuleTests.java
@@ -449,6 +449,7 @@ public CheckedBiConsumer getReque
"range",
"regexp",
"knn_score_doc",
+ "random_sampling",
"script",
"script_score",
"simple_query_string",
diff --git a/server/src/test/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilderTests.java b/server/src/test/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilderTests.java
new file mode 100644
index 0000000000000..d64068042a57c
--- /dev/null
+++ b/server/src/test/java/org/elasticsearch/search/aggregations/bucket/sampler/random/RandomSamplingQueryBuilderTests.java
@@ -0,0 +1,75 @@
+/*
+ * 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", the "GNU Affero General Public License v3.0 only", and the "Server Side
+ * Public License v 1"; you may not use this file except in compliance with, at
+ * your election, the "Elastic License 2.0", the "GNU Affero General Public
+ * License v3.0 only", or the "Server Side Public License, v 1".
+ */
+
+package org.elasticsearch.search.aggregations.bucket.sampler.random;
+
+import org.apache.lucene.search.Query;
+import org.elasticsearch.index.query.SearchExecutionContext;
+import org.elasticsearch.test.AbstractQueryTestCase;
+import org.elasticsearch.xcontent.XContentParseException;
+
+import java.io.IOException;
+
+import static org.hamcrest.Matchers.equalTo;
+
+public class RandomSamplingQueryBuilderTests extends AbstractQueryTestCase {
+
+ @Override
+ protected RandomSamplingQueryBuilder doCreateTestQueryBuilder() {
+ double probability = randomDoubleBetween(0.0, 1.0, false);
+ var builder = new RandomSamplingQueryBuilder(probability);
+ if (randomBoolean()) {
+ builder.seed(randomInt());
+ }
+ if (randomBoolean()) {
+ builder.hash(randomInt());
+ }
+ return builder;
+ }
+
+ @Override
+ protected void doAssertLuceneQuery(RandomSamplingQueryBuilder queryBuilder, Query query, SearchExecutionContext context)
+ throws IOException {
+ var rsQuery = asInstanceOf(RandomSamplingQuery.class, query);
+ assertThat(rsQuery.probability(), equalTo(queryBuilder.probability()));
+ assertThat(rsQuery.seed(), equalTo(queryBuilder.seed()));
+ assertThat(rsQuery.hash(), equalTo(queryBuilder.hash()));
+ }
+
+ @Override
+ protected boolean supportsBoost() {
+ return false;
+ }
+
+ @Override
+ protected boolean supportsQueryName() {
+ return false;
+ }
+
+ @Override
+ public void testUnknownField() {
+ var json = "{ \""
+ + RandomSamplingQueryBuilder.NAME
+ + "\" : {\"bogusField\" : \"someValue\", \""
+ + RandomSamplingQueryBuilder.PROBABILITY.getPreferredName()
+ + "\" : \""
+ + randomBoolean()
+ + "\", \""
+ + RandomSamplingQueryBuilder.SEED.getPreferredName()
+ + "\" : \""
+ + randomInt()
+ + "\", \""
+ + RandomSamplingQueryBuilder.HASH.getPreferredName()
+ + "\" : \""
+ + randomInt()
+ + "\" } }";
+ var e = expectThrows(XContentParseException.class, () -> parseQuery(json));
+ assertTrue(e.getMessage().contains("bogusField"));
+ }
+}
diff --git a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/MetadataAttribute.java b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/MetadataAttribute.java
index c922d0f928640..3260489983abd 100644
--- a/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/MetadataAttribute.java
+++ b/x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/expression/MetadataAttribute.java
@@ -172,6 +172,10 @@ public static boolean isSupported(String name) {
return ATTRIBUTES_MAP.containsKey(name);
}
+ public static boolean isScoreAttribute(Expression a) {
+ return a instanceof MetadataAttribute ma && ma.name().equals(SCORE);
+ }
+
@Override
@SuppressWarnings("checkstyle:EqualsHashCode")// equals is implemented in parent. See innerEquals instead
public int hashCode() {
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/Page.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/Page.java
index 5958bb6a966ee..240e701e5062b 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/Page.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/Page.java
@@ -294,4 +294,21 @@ public Page projectBlocks(int[] blockMapping) {
}
}
}
+
+ public Page filter(int... positions) {
+ Block[] filteredBlocks = new Block[blocks.length];
+ boolean success = false;
+ try {
+ for (int i = 0; i < blocks.length; i++) {
+ filteredBlocks[i] = getBlock(i).filter(positions);
+ }
+ success = true;
+ } finally {
+ releaseBlocks();
+ if (success == false) {
+ Releasables.closeExpectNoException(filteredBlocks);
+ }
+ }
+ return new Page(filteredBlocks);
+ }
}
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java
index 2693c13a5383a..21efa314f1eed 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/ChangePointOperator.java
@@ -19,9 +19,9 @@
import org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointDetector;
import org.elasticsearch.xpack.ml.aggs.changepoint.ChangeType;
+import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
-import java.util.LinkedList;
import java.util.List;
/**
@@ -68,8 +68,8 @@ public ChangePointOperator(DriverContext driverContext, int channel, String sour
this.sourceColumn = sourceColumn;
finished = false;
- inputPages = new LinkedList<>();
- outputPages = new LinkedList<>();
+ inputPages = new ArrayDeque<>();
+ outputPages = new ArrayDeque<>();
warnings = null;
}
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/FilterOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/FilterOperator.java
index 5b8d485c4da3a..d95f60f2191c8 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/FilterOperator.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/FilterOperator.java
@@ -7,7 +7,6 @@
package org.elasticsearch.compute.operator;
-import org.elasticsearch.compute.data.Block;
import org.elasticsearch.compute.data.BooleanBlock;
import org.elasticsearch.compute.data.Page;
import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator;
@@ -69,20 +68,7 @@ protected Page process(Page page) {
}
positions = Arrays.copyOf(positions, rowCount);
- Block[] filteredBlocks = new Block[page.getBlockCount()];
- boolean success = false;
- try {
- for (int i = 0; i < page.getBlockCount(); i++) {
- filteredBlocks[i] = page.getBlock(i).filter(positions);
- }
- success = true;
- } finally {
- page.releaseBlocks();
- if (success == false) {
- Releasables.closeExpectNoException(filteredBlocks);
- }
- }
- return new Page(filteredBlocks);
+ return page.filter(positions);
}
}
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java
new file mode 100644
index 0000000000000..0a2158015c950
--- /dev/null
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java
@@ -0,0 +1,228 @@
+/*
+ * 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.compute.operator;
+
+import org.elasticsearch.TransportVersion;
+import org.elasticsearch.TransportVersions;
+import org.elasticsearch.common.Strings;
+import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.compute.data.Page;
+import org.elasticsearch.core.TimeValue;
+import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQuery;
+import org.elasticsearch.xcontent.XContentBuilder;
+
+import java.io.IOException;
+import java.util.ArrayDeque;
+import java.util.Arrays;
+import java.util.Deque;
+import java.util.Objects;
+import java.util.SplittableRandom;
+
+public class SampleOperator implements Operator {
+
+ public record Factory(double probability, int seed) implements OperatorFactory {
+
+ @Override
+ public SampleOperator get(DriverContext driverContext) {
+ return new SampleOperator(probability, seed);
+ }
+
+ @Override
+ public String describe() {
+ return "SampleOperator[probability = " + probability + ", seed = " + seed + "]";
+ }
+ }
+
+ private final Deque outputPages;
+
+ /**
+ * At any time this iterator will point to be next document that still
+ * needs to be sampled. If this document is on the current page, it's
+ * added to the output and the iterator is advanced. It the document is
+ * not on the current page, the current page is finished and the index
+ * is used for the next page.
+ */
+ private final RandomSamplingQuery.RandomSamplingIterator randomSamplingIterator;
+ private boolean finished;
+
+ private int pagesProcessed = 0;
+ private int rowsReceived = 0;
+ private int rowsEmitted = 0;
+ private long collectNanos;
+ private long emitNanos;
+
+ private SampleOperator(double probability, int seed) {
+ finished = false;
+ outputPages = new ArrayDeque<>();
+ SplittableRandom random = new SplittableRandom(seed);
+ randomSamplingIterator = new RandomSamplingQuery.RandomSamplingIterator(Integer.MAX_VALUE, probability, random::nextInt);
+ // Initialize the iterator to the next document that needs to be sampled.
+ randomSamplingIterator.nextDoc();
+ }
+
+ /**
+ * whether the given operator can accept more input pages
+ */
+ @Override
+ public boolean needsInput() {
+ return finished == false;
+ }
+
+ /**
+ * adds an input page to the operator. only called when needsInput() == true and isFinished() == false
+ *
+ * @param page
+ * @throws UnsupportedOperationException if the operator is a {@link SourceOperator}
+ */
+ @Override
+ public void addInput(Page page) {
+ long startTime = System.nanoTime();
+ createOutputPage(page);
+ rowsReceived += page.getPositionCount();
+ page.releaseBlocks();
+ pagesProcessed++;
+ collectNanos += System.nanoTime() - startTime;
+ }
+
+ private void createOutputPage(Page page) {
+ final int[] sampledPositions = new int[page.getPositionCount()];
+ int sampledIdx = 0;
+ for (int i = randomSamplingIterator.docID(); i - rowsReceived < page.getPositionCount(); i = randomSamplingIterator.nextDoc()) {
+ sampledPositions[sampledIdx++] = i - rowsReceived;
+ }
+ if (sampledIdx > 0) {
+ outputPages.add(page.filter(Arrays.copyOf(sampledPositions, sampledIdx)));
+ }
+ }
+
+ /**
+ * notifies the operator that it won't receive any more input pages
+ */
+ @Override
+ public void finish() {
+ finished = true;
+ }
+
+ /**
+ * whether the operator has finished processing all input pages and made the corresponding output pages available
+ */
+ @Override
+ public boolean isFinished() {
+ return finished && outputPages.isEmpty();
+ }
+
+ @Override
+ public Page getOutput() {
+ final var emitStart = System.nanoTime();
+ Page page;
+ if (outputPages.isEmpty()) {
+ page = null;
+ } else {
+ page = outputPages.removeFirst();
+ rowsEmitted += page.getPositionCount();
+ }
+ emitNanos += System.nanoTime() - emitStart;
+ return page;
+ }
+
+ /**
+ * notifies the operator that it won't be used anymore (i.e. none of the other methods called),
+ * and its resources can be cleaned up
+ */
+ @Override
+ public void close() {
+ for (Page page : outputPages) {
+ page.releaseBlocks();
+ }
+ }
+
+ @Override
+ public String toString() {
+ return "SampleOperator[sampled = " + rowsEmitted + "/" + rowsReceived + "]";
+ }
+
+ @Override
+ public Operator.Status status() {
+ return new Status(collectNanos, emitNanos, pagesProcessed, rowsReceived, rowsEmitted);
+ }
+
+ private record Status(long collectNanos, long emitNanos, int pagesProcessed, int rowsReceived, int rowsEmitted)
+ implements
+ Operator.Status {
+
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
+ Operator.Status.class,
+ "sample",
+ Status::new
+ );
+
+ Status(StreamInput streamInput) throws IOException {
+ this(streamInput.readVLong(), streamInput.readVLong(), streamInput.readVInt(), streamInput.readVInt(), streamInput.readVInt());
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ out.writeVLong(collectNanos);
+ out.writeVLong(emitNanos);
+ out.writeVInt(pagesProcessed);
+ out.writeVInt(rowsReceived);
+ out.writeVInt(rowsEmitted);
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
+ builder.startObject();
+ builder.field("collect_nanos", collectNanos);
+ if (builder.humanReadable()) {
+ builder.field("collect_time", TimeValue.timeValueNanos(collectNanos));
+ }
+ builder.field("emit_nanos", emitNanos);
+ if (builder.humanReadable()) {
+ builder.field("emit_time", TimeValue.timeValueNanos(emitNanos));
+ }
+ builder.field("pages_processed", pagesProcessed);
+ builder.field("rows_received", rowsReceived);
+ builder.field("rows_emitted", rowsEmitted);
+ return builder.endObject();
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ Status other = (Status) o;
+ return collectNanos == other.collectNanos
+ && emitNanos == other.emitNanos
+ && pagesProcessed == other.pagesProcessed
+ && rowsReceived == other.rowsReceived
+ && rowsEmitted == other.rowsEmitted;
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(collectNanos, emitNanos, pagesProcessed, rowsReceived, rowsEmitted);
+ }
+
+ @Override
+ public String toString() {
+ return Strings.toString(this);
+ }
+
+ @Override
+ public TransportVersion getMinimalSupportedVersion() {
+ return TransportVersions.ZERO;
+ }
+ }
+}
diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java
new file mode 100644
index 0000000000000..cf2d73ab4768f
--- /dev/null
+++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java
@@ -0,0 +1,75 @@
+/*
+ * 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.compute.operator;
+
+import org.elasticsearch.compute.data.BlockFactory;
+import org.elasticsearch.compute.data.Page;
+import org.elasticsearch.compute.test.OperatorTestCase;
+import org.elasticsearch.compute.test.SequenceLongBlockSourceOperator;
+import org.hamcrest.Matcher;
+
+import java.util.List;
+import java.util.stream.LongStream;
+
+import static org.hamcrest.Matchers.both;
+import static org.hamcrest.Matchers.closeTo;
+import static org.hamcrest.Matchers.equalTo;
+import static org.hamcrest.Matchers.greaterThan;
+import static org.hamcrest.Matchers.lessThan;
+import static org.hamcrest.Matchers.matchesPattern;
+
+public class SampleOperatorTests extends OperatorTestCase {
+
+ @Override
+ protected SourceOperator simpleInput(BlockFactory blockFactory, int size) {
+ return new SequenceLongBlockSourceOperator(blockFactory, LongStream.range(0, size));
+ }
+
+ @Override
+ protected void assertSimpleOutput(List input, List results) {
+ int inputCount = input.stream().mapToInt(Page::getPositionCount).sum();
+ int outputCount = results.stream().mapToInt(Page::getPositionCount).sum();
+ double meanExpectedOutputCount = 0.5 * inputCount;
+ double stdDevExpectedOutputCount = Math.sqrt(meanExpectedOutputCount);
+ assertThat((double) outputCount, closeTo(meanExpectedOutputCount, 10 * stdDevExpectedOutputCount));
+ }
+
+ @Override
+ protected SampleOperator.Factory simple() {
+ return new SampleOperator.Factory(0.5, randomInt());
+ }
+
+ @Override
+ protected Matcher expectedDescriptionOfSimple() {
+ return matchesPattern("SampleOperator\\[probability = 0.5, seed = -?\\d+]");
+ }
+
+ @Override
+ protected Matcher expectedToStringOfSimple() {
+ return equalTo("SampleOperator[sampled = 0/0]");
+ }
+
+ public void testAccuracy() {
+ BlockFactory blockFactory = driverContext().blockFactory();
+ int totalPositionCount = 0;
+
+ for (int iter = 0; iter < 10000; iter++) {
+ SampleOperator operator = simple().get(driverContext());
+ operator.addInput(new Page(blockFactory.newConstantNullBlock(20000)));
+ Page output = operator.getOutput();
+ // 10000 expected rows, stddev=sqrt(10000)=100, so this is 10 stddevs.
+ assertThat(output.getPositionCount(), both(greaterThan(9000)).and(lessThan(11000)));
+ totalPositionCount += output.getPositionCount();
+ output.releaseBlocks();
+ }
+
+ int averagePositionCount = totalPositionCount / 10000;
+ // Running 10000 times, so the stddev is divided by sqrt(10000)=100, so this 10 stddevs again.
+ assertThat(averagePositionCount, both(greaterThan(9990)).and(lessThan(10010)));
+ }
+}
diff --git a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestSampleIT.java b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestSampleIT.java
new file mode 100644
index 0000000000000..523d9c15ab128
--- /dev/null
+++ b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestSampleIT.java
@@ -0,0 +1,26 @@
+/*
+ * 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.qa.single_node;
+
+import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
+
+import org.elasticsearch.test.TestClustersThreadFilter;
+import org.elasticsearch.test.cluster.ElasticsearchCluster;
+import org.elasticsearch.xpack.esql.qa.rest.RestSampleTestCase;
+import org.junit.ClassRule;
+
+@ThreadLeakFilters(filters = TestClustersThreadFilter.class)
+public class RestSampleIT extends RestSampleTestCase {
+ @ClassRule
+ public static ElasticsearchCluster cluster = Clusters.testCluster();
+
+ @Override
+ protected String getTestRestCluster() {
+ return cluster.getHttpAddresses();
+ }
+}
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
new file mode 100644
index 0000000000000..2362c163d57d8
--- /dev/null
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
@@ -0,0 +1,148 @@
+/*
+ * 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.qa.rest;
+
+import org.elasticsearch.client.Request;
+import org.elasticsearch.client.ResponseException;
+import org.elasticsearch.test.rest.ESRestTestCase;
+import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
+import org.hamcrest.Description;
+import org.hamcrest.TypeSafeMatcher;
+import org.junit.After;
+import org.junit.Before;
+
+import java.io.IOException;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.stream.IntStream;
+
+import static org.hamcrest.Matchers.both;
+import static org.hamcrest.Matchers.greaterThan;
+import static org.hamcrest.Matchers.lessThan;
+
+public class RestSampleTestCase extends ESRestTestCase {
+
+ @Before
+ public void skipWhenSampleDisabled() throws IOException {
+ assumeTrue(
+ "Requires SAMPLE capability",
+ EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.SAMPLE.capabilityName()))
+ );
+ }
+
+ @Before
+ @After
+ public void assertRequestBreakerEmpty() throws Exception {
+ EsqlSpecTestCase.assertRequestBreakerEmpty();
+ }
+
+ /**
+ * Matcher for the results of sampling 50% of the elements 0,1,2,...,998,999.
+ * The results should consist of unique numbers in [0,999]. Furthermore, the
+ * size should on average be 500. Allowing for 10 stddev deviations, the size
+ * should be in [250,750].
+ */
+ private static final TypeSafeMatcher>> RESULT_MATCHER = new TypeSafeMatcher<>() {
+ @Override
+ public void describeTo(Description description) {
+ description.appendText("a list with between 250 and 750 unique elements in [0,999]");
+ }
+
+ @Override
+ protected boolean matchesSafely(List> lists) {
+ if (lists.size() < 250 || lists.size() > 750) {
+ return false;
+ }
+ Set values = new HashSet<>();
+ for (List list : lists) {
+ if (list.size() != 1) {
+ return false;
+ }
+ Integer value = list.get(0);
+ if (value == null || value < 0 || value >= 1000) {
+ return false;
+ }
+ values.add(value);
+ }
+ return values.size() == lists.size();
+ }
+ };
+
+ /**
+ * This tests sampling in the Lucene query.
+ */
+ public void testSample_withFrom() throws IOException {
+ createTestIndex();
+ test("FROM sample-test-index | SAMPLE 0.5 | LIMIT 1000");
+ deleteTestIndex();
+ }
+
+ /**
+ * This tests sampling in the ES|QL operator.
+ */
+ public void testSample_withRow() throws IOException {
+ List numbers = IntStream.range(0, 999).boxed().toList();
+ test("ROW value = " + numbers + " | MV_EXPAND value | SAMPLE 0.5 | LIMIT 1000");
+ }
+
+ private void test(String query) throws IOException {
+ int iterationCount = 1000;
+ int totalResultSize = 0;
+ for (int iteration = 0; iteration < iterationCount; iteration++) {
+ Map result = runEsqlQuery(query);
+ assertResultMap(result, defaultOutputColumns(), RESULT_MATCHER);
+ totalResultSize += ((List>) result.get("values")).size();
+ }
+ // On average there's 500 elements in the results set.
+ // Allowing for 10 stddev deviations, it should be in [490,510].
+ assertThat(totalResultSize / iterationCount, both(greaterThan(490)).and(lessThan(510)));
+ }
+
+ private static List
*/
@Override public T visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { return visitChildren(ctx); }
}
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 8850751c03e0e..cd19190d814d1 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
@@ -1121,4 +1121,14 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
+ * @param ctx the parse tree
+ */
+ void enterSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
+ * @param ctx the parse tree
+ */
+ void exitSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
}
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 ed54804e92a42..1367cab3337da 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
@@ -674,4 +674,10 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
index 4ecb907b1769e..62fcd7b22e738 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
@@ -60,6 +60,7 @@
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
import org.elasticsearch.xpack.esql.plan.logical.Rename;
import org.elasticsearch.xpack.esql.plan.logical.Row;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
@@ -704,4 +705,23 @@ public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) {
ctx.parameter().getText()
);
}
+
+ public PlanFactory visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) {
+ var probability = visitDecimalValue(ctx.probability);
+ Literal seed;
+ if (ctx.seed != null) {
+ seed = visitIntegerValue(ctx.seed);
+ if (seed.dataType() != DataType.INTEGER) {
+ throw new ParsingException(
+ seed.source(),
+ "seed must be an integer, provided [{}] of type [{}]",
+ ctx.seed.getText(),
+ seed.dataType()
+ );
+ }
+ } else {
+ seed = null;
+ }
+ return plan -> new Sample(source(ctx), probability, seed, plan);
+ }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java
index 0662e0870eebc..880fda66d38a7 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java
@@ -21,6 +21,7 @@
import org.elasticsearch.xpack.esql.plan.logical.MvExpand;
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
import org.elasticsearch.xpack.esql.plan.logical.Project;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
@@ -46,6 +47,7 @@
import org.elasticsearch.xpack.esql.plan.physical.LocalSourceExec;
import org.elasticsearch.xpack.esql.plan.physical.MvExpandExec;
import org.elasticsearch.xpack.esql.plan.physical.ProjectExec;
+import org.elasticsearch.xpack.esql.plan.physical.SampleExec;
import org.elasticsearch.xpack.esql.plan.physical.ShowExec;
import org.elasticsearch.xpack.esql.plan.physical.SubqueryExec;
import org.elasticsearch.xpack.esql.plan.physical.TopNExec;
@@ -85,6 +87,7 @@ public static List logical() {
OrderBy.ENTRY,
Project.ENTRY,
Rerank.ENTRY,
+ Sample.ENTRY,
TopN.ENTRY
);
}
@@ -111,6 +114,7 @@ public static List physical() {
MvExpandExec.ENTRY,
ProjectExec.ENTRY,
RerankExec.ENTRY,
+ SampleExec.ENTRY,
ShowExec.ENTRY,
SubqueryExec.ENTRY,
TopNExec.ENTRY
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
new file mode 100644
index 0000000000000..ea4e9396ecca8
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
@@ -0,0 +1,113 @@
+/*
+ * 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.plan.logical;
+
+import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.core.Nullable;
+import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQuery;
+import org.elasticsearch.xpack.esql.capabilities.PostAnalysisVerificationAware;
+import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
+import org.elasticsearch.xpack.esql.common.Failures;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.FoldContext;
+import org.elasticsearch.xpack.esql.core.expression.Foldables;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
+
+import java.io.IOException;
+import java.util.Objects;
+
+import static org.elasticsearch.xpack.esql.common.Failure.fail;
+
+public class Sample extends UnaryPlan implements TelemetryAware, PostAnalysisVerificationAware {
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Sample", Sample::new);
+
+ private final Expression probability;
+ private final Expression seed;
+
+ public Sample(Source source, Expression probability, @Nullable Expression seed, LogicalPlan child) {
+ super(source, child);
+ this.probability = probability;
+ this.seed = seed;
+ }
+
+ private Sample(StreamInput in) throws IOException {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(Expression.class), // probability
+ in.readOptionalNamedWriteable(Expression.class), // seed
+ in.readNamedWriteable(LogicalPlan.class) // child
+ );
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ source().writeTo(out);
+ out.writeNamedWriteable(probability);
+ out.writeOptionalNamedWriteable(seed);
+ out.writeNamedWriteable(child());
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ protected NodeInfo info() {
+ return NodeInfo.create(this, Sample::new, probability, seed, child());
+ }
+
+ @Override
+ public Sample replaceChild(LogicalPlan newChild) {
+ return new Sample(source(), probability, seed, newChild);
+ }
+
+ public Expression probability() {
+ return probability;
+ }
+
+ public Expression seed() {
+ return seed;
+ }
+
+ @Override
+ public boolean expressionsResolved() {
+ return probability.resolved() && (seed == null || seed.resolved());
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(probability, seed, child());
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj) {
+ return true;
+ }
+ if (obj == null || getClass() != obj.getClass()) {
+ return false;
+ }
+
+ var other = (Sample) obj;
+
+ return Objects.equals(probability, other.probability) && Objects.equals(seed, other.seed) && Objects.equals(child(), other.child());
+ }
+
+ @Override
+ public void postAnalysisVerification(Failures failures) {
+ try {
+ RandomSamplingQuery.checkProbabilityRange((double) Foldables.valueOf(FoldContext.small(), probability));
+ } catch (IllegalArgumentException e) {
+ failures.add(fail(probability, e.getMessage()));
+ }
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/EsQueryExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/EsQueryExec.java
index 60e7eb535f444..2e74c7153f77e 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/EsQueryExec.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/EsQueryExec.java
@@ -308,6 +308,12 @@ public EsQueryExec withSorts(List sorts) {
: new EsQueryExec(source(), indexPattern, indexMode, indexNameWithModes, attrs, query, limit, sorts, estimatedRowSize);
}
+ public EsQueryExec withQuery(QueryBuilder query) {
+ return Objects.equals(this.query, query)
+ ? this
+ : new EsQueryExec(source(), indexPattern, indexMode, indexNameWithModes, attrs, query, limit, sorts, estimatedRowSize);
+ }
+
@Override
public int hashCode() {
return Objects.hash(indexPattern, indexMode, indexNameWithModes, attrs, query, limit, sorts);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java
new file mode 100644
index 0000000000000..e110a1b60928a
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java
@@ -0,0 +1,114 @@
+/*
+ * 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.plan.physical;
+
+import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
+import org.elasticsearch.common.io.stream.StreamInput;
+import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.core.Nullable;
+import org.elasticsearch.xpack.esql.capabilities.PostPhysicalOptimizationVerificationAware;
+import org.elasticsearch.xpack.esql.common.Failures;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
+
+import java.io.IOException;
+import java.util.Objects;
+
+import static org.elasticsearch.xpack.esql.common.Failure.fail;
+
+public class SampleExec extends UnaryExec implements PostPhysicalOptimizationVerificationAware {
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
+ PhysicalPlan.class,
+ "SampleExec",
+ SampleExec::new
+ );
+
+ private final Expression probability;
+ private final Expression seed;
+
+ public SampleExec(Source source, PhysicalPlan child, Expression probability, @Nullable Expression seed) {
+ super(source, child);
+ this.probability = probability;
+ this.seed = seed;
+ }
+
+ public SampleExec(StreamInput in) throws IOException {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(PhysicalPlan.class), // child
+ in.readNamedWriteable(Expression.class), // probability
+ in.readOptionalNamedWriteable(Expression.class) // seed
+ );
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ source().writeTo(out);
+ out.writeNamedWriteable(child());
+ out.writeNamedWriteable(probability);
+ out.writeOptionalNamedWriteable(seed);
+ }
+
+ @Override
+ public UnaryExec replaceChild(PhysicalPlan newChild) {
+ return new SampleExec(source(), newChild, probability, seed);
+ }
+
+ @Override
+ protected NodeInfo extends PhysicalPlan> info() {
+ return NodeInfo.create(this, SampleExec::new, child(), probability, seed);
+ }
+
+ /**
+ * Returns the name of the writeable object
+ */
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ public Expression probability() {
+ return probability;
+ }
+
+ public Expression seed() {
+ return seed;
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(child(), probability, seed);
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj) {
+ return true;
+ }
+ if (obj == null || getClass() != obj.getClass()) {
+ return false;
+ }
+
+ var other = (SampleExec) obj;
+
+ return Objects.equals(child(), other.child()) && Objects.equals(probability, other.probability) && Objects.equals(seed, other.seed);
+ }
+
+ @Override
+ public void postPhysicalOptimizationVerification(Failures failures) {
+ // It's currently impossible in ES|QL to handle all data in deterministic order, therefore
+ // a fixed random seed in the sample operator doesn't work as intended and is disallowed.
+ // TODO: fix this.
+ if (seed != null) {
+ // TODO: what should the error message here be? This doesn't seem right.
+ failures.add(fail(seed, "Seed not supported when sampling can't be pushed down to Lucene"));
+ }
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java
index ac0423f839c08..fc770ef02e743 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java
@@ -7,6 +7,7 @@
package org.elasticsearch.xpack.esql.planner;
+import org.elasticsearch.common.Randomness;
import org.elasticsearch.common.lucene.BytesRefs;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.util.BigArrays;
@@ -34,6 +35,7 @@
import org.elasticsearch.compute.operator.Operator.OperatorFactory;
import org.elasticsearch.compute.operator.OutputOperator.OutputOperatorFactory;
import org.elasticsearch.compute.operator.RowInTableLookupOperator;
+import org.elasticsearch.compute.operator.SampleOperator;
import org.elasticsearch.compute.operator.ScoreOperator;
import org.elasticsearch.compute.operator.ShowOperator;
import org.elasticsearch.compute.operator.SinkOperator;
@@ -62,6 +64,7 @@
import org.elasticsearch.xpack.esql.core.expression.Expressions;
import org.elasticsearch.xpack.esql.core.expression.FieldAttribute;
import org.elasticsearch.xpack.esql.core.expression.FoldContext;
+import org.elasticsearch.xpack.esql.core.expression.Foldables;
import org.elasticsearch.xpack.esql.core.expression.Literal;
import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute;
import org.elasticsearch.xpack.esql.core.expression.NameId;
@@ -102,6 +105,7 @@
import org.elasticsearch.xpack.esql.plan.physical.OutputExec;
import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan;
import org.elasticsearch.xpack.esql.plan.physical.ProjectExec;
+import org.elasticsearch.xpack.esql.plan.physical.SampleExec;
import org.elasticsearch.xpack.esql.plan.physical.ShowExec;
import org.elasticsearch.xpack.esql.plan.physical.TopNExec;
import org.elasticsearch.xpack.esql.plan.physical.inference.CompletionExec;
@@ -246,6 +250,8 @@ private PhysicalOperation plan(PhysicalPlan node, LocalExecutionPlannerContext c
return planChangePoint(changePoint, context);
} else if (node instanceof CompletionExec completion) {
return planCompletion(completion, context);
+ } else if (node instanceof SampleExec Sample) {
+ return planSample(Sample, context);
}
// source nodes
else if (node instanceof EsQueryExec esQuery) {
@@ -801,6 +807,13 @@ private PhysicalOperation planChangePoint(ChangePointExec changePoint, LocalExec
);
}
+ private PhysicalOperation planSample(SampleExec rsx, LocalExecutionPlannerContext context) {
+ PhysicalOperation source = plan(rsx.child(), context);
+ var probability = (double) Foldables.valueOf(context.foldCtx(), rsx.probability());
+ var seed = rsx.seed() != null ? (int) Foldables.valueOf(context.foldCtx(), rsx.seed()) : Randomness.get().nextInt();
+ return source.with(new SampleOperator.Factory(probability, seed), source.layout);
+ }
+
/**
* Immutable physical operation.
*/
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java
index 217737de5309b..c1195b6f14ac4 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java
@@ -17,6 +17,7 @@
import org.elasticsearch.xpack.esql.plan.logical.LeafPlan;
import org.elasticsearch.xpack.esql.plan.logical.Limit;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
import org.elasticsearch.xpack.esql.plan.logical.join.Join;
@@ -28,6 +29,7 @@
import org.elasticsearch.xpack.esql.plan.physical.LocalSourceExec;
import org.elasticsearch.xpack.esql.plan.physical.LookupJoinExec;
import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan;
+import org.elasticsearch.xpack.esql.plan.physical.SampleExec;
import org.elasticsearch.xpack.esql.plan.physical.TopNExec;
import java.util.List;
@@ -83,6 +85,10 @@ private PhysicalPlan mapUnary(UnaryPlan unary) {
return new TopNExec(topN.source(), mappedChild, topN.order(), topN.limit(), null);
}
+ if (unary instanceof Sample sample) {
+ return new SampleExec(sample.source(), mappedChild, sample.probability(), sample.seed());
+ }
+
//
// Pipeline operators
//
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
index f301503246cc6..bde0eb843ddc2 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
@@ -20,6 +20,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Limit;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
@@ -34,6 +35,7 @@
import org.elasticsearch.xpack.esql.plan.physical.LocalSourceExec;
import org.elasticsearch.xpack.esql.plan.physical.LookupJoinExec;
import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan;
+import org.elasticsearch.xpack.esql.plan.physical.SampleExec;
import org.elasticsearch.xpack.esql.plan.physical.TopNExec;
import org.elasticsearch.xpack.esql.plan.physical.UnaryExec;
import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec;
@@ -179,6 +181,12 @@ private PhysicalPlan mapUnary(UnaryPlan unary) {
);
}
+ // TODO: share code with local LocalMapper?
+ if (unary instanceof Sample sample) {
+ mappedChild = addExchangeForFragment(sample, mappedChild);
+ return new SampleExec(sample.source(), mappedChild, sample.probability(), sample.seed());
+ }
+
//
// Pipeline operators
//
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java
index 5c7c66e9f1236..66ec93b700620 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java
@@ -12,6 +12,7 @@
import org.elasticsearch.xpack.esql.EsqlIllegalArgumentException;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.FoldContext;
+import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute;
import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
import org.elasticsearch.xpack.esql.plan.logical.ChangePoint;
import org.elasticsearch.xpack.esql.plan.logical.Dissect;
@@ -49,7 +50,7 @@
/**
* Class for sharing code across Mappers.
*/
-class MapperUtils {
+public class MapperUtils {
private MapperUtils() {}
static PhysicalPlan mapLeaf(LeafPlan p) {
@@ -156,4 +157,13 @@ static AggregateExec aggExec(Aggregate aggregate, PhysicalPlan child, Aggregator
static PhysicalPlan unsupported(LogicalPlan p) {
throw new EsqlIllegalArgumentException("unsupported logical plan node [" + p.nodeName() + "]");
}
+
+ public static boolean hasScoreAttribute(List extends Attribute> attributes) {
+ for (Attribute attr : attributes) {
+ if (MetadataAttribute.isScoreAttribute(attr)) {
+ return true;
+ }
+ }
+ return false;
+ }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java
index 7eaea682a0440..273ad46c149fb 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/telemetry/FeatureMetric.java
@@ -27,6 +27,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.Rename;
import org.elasticsearch.xpack.esql.plan.logical.Row;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
@@ -60,7 +61,8 @@ public enum FeatureMetric {
CHANGE_POINT(ChangePoint.class::isInstance),
INLINESTATS(InlineStats.class::isInstance),
COMPLETION(Completion.class::isInstance),
- RERANK(Rerank.class::isInstance);
+ RERANK(Rerank.class::isInstance),
+ SAMPLE(Sample.class::isInstance);
/**
* List here plans we want to exclude from telemetry
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java
index eeebc0d9726c0..f8c26c880d3d8 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java
@@ -30,6 +30,8 @@
import java.util.List;
import java.util.Map;
import java.util.Set;
+import java.util.function.Predicate;
+import java.util.function.Supplier;
import static org.elasticsearch.xpack.core.enrich.EnrichPolicy.GEO_MATCH_TYPE;
import static org.elasticsearch.xpack.core.enrich.EnrichPolicy.MATCH_TYPE;
@@ -234,4 +236,13 @@ public static IndexResolution indexWithDateDateNanosUnionType() {
);
return IndexResolution.valid(index);
}
+
+ public static E randomValueOtherThanTest(Predicate exclude, Supplier supplier) {
+ while (true) {
+ E value = supplier.get();
+ if (exclude.test(value) == false) {
+ return value;
+ }
+ }
+ }
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
index ebee7f5da7e1a..ba038118bbc45 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
@@ -112,6 +112,7 @@
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultInferenceResolution;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.indexWithDateDateNanosUnionType;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.loadMapping;
+import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.randomValueOtherThanTest;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.tsdbIndexResolution;
import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY;
import static org.elasticsearch.xpack.esql.core.type.DataType.DATETIME;
@@ -3165,6 +3166,18 @@ private boolean isMultiTypeEsField(Expression e) {
return e instanceof FieldAttribute fa && fa.field() instanceof MultiTypeEsField;
}
+ public void testRandomSampleProbability() {
+ var e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE 1."));
+ assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [1.0]"));
+
+ e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE .0"));
+ assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [0.0]"));
+
+ double p = randomValueOtherThanTest(d -> 0 < d && d < 1, () -> randomDoubleBetween(0, Double.MAX_VALUE, false));
+ e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE " + p));
+ assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [" + p + "]"));
+ }
+
private void verifyUnsupported(String query, String errorMessage) {
verifyUnsupported(query, errorMessage, "mapping-multi-field-variation.json");
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
index f819b506cace6..b47cc662e82a9 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
@@ -107,6 +107,7 @@
import org.elasticsearch.xpack.esql.parser.ParsingException;
import org.elasticsearch.xpack.esql.plan.GeneratingPlan;
import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
+import org.elasticsearch.xpack.esql.plan.logical.ChangePoint;
import org.elasticsearch.xpack.esql.plan.logical.Dissect;
import org.elasticsearch.xpack.esql.plan.logical.Enrich;
import org.elasticsearch.xpack.esql.plan.logical.EsRelation;
@@ -119,6 +120,7 @@
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.Row;
+import org.elasticsearch.xpack.esql.plan.logical.Sample;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
@@ -7709,4 +7711,153 @@ public void testPruneRedundantOrderBy() {
var mvExpand2 = as(mvExpand.child(), MvExpand.class);
as(mvExpand2.child(), Row.class);
}
+
+ /**
+ * Eval[[1[INTEGER] AS irrelevant1, 2[INTEGER] AS irrelevant2]]
+ * \_Limit[1000[INTEGER],false]
+ * \_Sample[0.015[DOUBLE],15[INTEGER]]
+ * \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ */
+ public void testSampleMerged() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ var query = """
+ FROM TEST
+ | SAMPLE .3 5
+ | EVAL irrelevant1 = 1
+ | SAMPLE .5 10
+ | EVAL irrelevant2 = 2
+ | SAMPLE .1
+ """;
+ var optimized = optimizedPlan(query);
+
+ var eval = as(optimized, Eval.class);
+ var limit = as(eval.child(), Limit.class);
+ var sample = as(limit.child(), Sample.class);
+ var source = as(sample.child(), EsRelation.class);
+
+ assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.015));
+ assertThat(sample.seed().fold(FoldContext.small()), equalTo(5 ^ 10));
+ }
+
+ public void testSamplePushDown() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ for (var command : List.of(
+ "ENRICH languages_idx on first_name",
+ "EVAL x = 1",
+ // "INSIST emp_no", // TODO
+ "KEEP emp_no",
+ "DROP emp_no",
+ "RENAME emp_no AS x",
+ "GROK first_name \"%{WORD:bar}\"",
+ "DISSECT first_name \"%{z}\""
+ )) {
+ var query = "FROM TEST | " + command + " | SAMPLE .5";
+ var optimized = optimizedPlan(query);
+
+ var unary = as(optimized, UnaryPlan.class);
+ var limit = as(unary.child(), Limit.class);
+ var sample = as(limit.child(), Sample.class);
+ var source = as(sample.child(), EsRelation.class);
+
+ assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.5));
+ assertNull(sample.seed());
+ }
+ }
+
+ public void testSamplePushDown_sort() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ var query = "FROM TEST | WHERE emp_no > 0 | SAMPLE 0.5 | LIMIT 100";
+ var optimized = optimizedPlan(query);
+
+ var limit = as(optimized, Limit.class);
+ var filter = as(limit.child(), Filter.class);
+ var sample = as(filter.child(), Sample.class);
+ var source = as(sample.child(), EsRelation.class);
+
+ assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.5));
+ assertNull(sample.seed());
+ }
+
+ public void testSamplePushDown_where() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ var query = "FROM TEST | SORT emp_no | SAMPLE 0.5 | LIMIT 100";
+ var optimized = optimizedPlan(query);
+
+ var topN = as(optimized, TopN.class);
+ var sample = as(topN.child(), Sample.class);
+ var source = as(sample.child(), EsRelation.class);
+
+ assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.5));
+ assertNull(sample.seed());
+ }
+
+ public void testSampleNoPushDown() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ for (var command : List.of("LIMIT 100", "MV_EXPAND languages", "STATS COUNT()")) {
+ var query = "FROM TEST | " + command + " | SAMPLE .5";
+ var optimized = optimizedPlan(query);
+
+ var limit = as(optimized, Limit.class);
+ var sample = as(limit.child(), Sample.class);
+ var unary = as(sample.child(), UnaryPlan.class);
+ var source = as(unary.child(), EsRelation.class);
+ }
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_Sample[0.5[DOUBLE],null]
+ * \_Join[LEFT,[language_code{r}#4],[language_code{r}#4],[language_code{f}#17]]
+ * |_Eval[[emp_no{f}#6 AS language_code]]
+ * | \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ * \_EsRelation[languages_lookup][LOOKUP][language_code{f}#17, language_name{f}#18]
+ */
+ public void testSampleNoPushDownLookupJoin() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ var query = """
+ FROM TEST
+ | EVAL language_code = emp_no
+ | LOOKUP JOIN languages_lookup ON language_code
+ | SAMPLE .5
+ """;
+ var optimized = optimizedPlan(query);
+
+ var limit = as(optimized, Limit.class);
+ var sample = as(limit.child(), Sample.class);
+ var join = as(sample.child(), Join.class);
+ var eval = as(join.left(), Eval.class);
+ var source = as(eval.child(), EsRelation.class);
+ }
+
+ /**
+ * Limit[1000[INTEGER],false]
+ * \_Sample[0.5[DOUBLE],null]
+ * \_Limit[1000[INTEGER],false]
+ * \_ChangePoint[emp_no{f}#6,hire_date{f}#13,type{r}#4,pvalue{r}#5]
+ * \_TopN[[Order[hire_date{f}#13,ASC,ANY]],1001[INTEGER]]
+ * \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
+ */
+ public void testSampleNoPushDownChangePoint() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ var query = """
+ FROM TEST
+ | CHANGE_POINT emp_no ON hire_date
+ | SAMPLE .5 -55
+ """;
+ var optimized = optimizedPlan(query);
+
+ var limit = as(optimized, Limit.class);
+ var sample = as(limit.child(), Sample.class);
+ limit = as(sample.child(), Limit.class);
+ var changePoint = as(limit.child(), ChangePoint.class);
+ var topN = as(changePoint.child(), TopN.class);
+ var source = as(topN.child(), EsRelation.class);
+ }
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
index cc25c9bd02090..4d934a5b490aa 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -35,6 +35,7 @@
import org.elasticsearch.index.query.TermQueryBuilder;
import org.elasticsearch.index.query.TermsQueryBuilder;
import org.elasticsearch.index.query.WildcardQueryBuilder;
+import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQueryBuilder;
import org.elasticsearch.search.sort.FieldSortBuilder;
import org.elasticsearch.search.sort.GeoDistanceSortBuilder;
import org.elasticsearch.test.ESTestCase;
@@ -187,6 +188,7 @@
import static org.elasticsearch.xpack.esql.core.util.TestUtils.stripThrough;
import static org.elasticsearch.xpack.esql.parser.ExpressionBuilder.MAX_EXPRESSION_DEPTH;
import static org.elasticsearch.xpack.esql.parser.LogicalPlanBuilder.MAX_QUERY_DEPTH;
+import static org.elasticsearch.xpack.esql.planner.mapper.MapperUtils.hasScoreAttribute;
import static org.hamcrest.Matchers.closeTo;
import static org.hamcrest.Matchers.contains;
import static org.hamcrest.Matchers.containsInAnyOrder;
@@ -7904,7 +7906,7 @@ public void testScore() {
EsRelation esRelation = as(filter.child(), EsRelation.class);
assertTrue(esRelation.optimized());
assertTrue(esRelation.resolved());
- assertTrue(esRelation.output().stream().anyMatch(a -> a.name().equals(MetadataAttribute.SCORE) && a instanceof MetadataAttribute));
+ assertTrue(hasScoreAttribute(esRelation.output()));
}
public void testScoreTopN() {
@@ -7927,7 +7929,7 @@ public void testScoreTopN() {
Order scoreOrer = order.get(0);
assertEquals(Order.OrderDirection.DESC, scoreOrer.direction());
Expression child = scoreOrer.child();
- assertTrue(child instanceof MetadataAttribute ma && ma.name().equals(MetadataAttribute.SCORE));
+ assertTrue(MetadataAttribute.isScoreAttribute(child));
Filter filter = as(topN.child(), Filter.class);
Match match = as(filter.condition(), Match.class);
@@ -7937,7 +7939,7 @@ public void testScoreTopN() {
EsRelation esRelation = as(filter.child(), EsRelation.class);
assertTrue(esRelation.optimized());
assertTrue(esRelation.resolved());
- assertTrue(esRelation.output().stream().anyMatch(a -> a.name().equals(MetadataAttribute.SCORE) && a instanceof MetadataAttribute));
+ assertTrue(hasScoreAttribute(esRelation.output()));
}
public void testReductionPlanForTopN() {
@@ -7995,10 +7997,14 @@ public void testEqualsPushdownToDelegateTooBig() {
}
public void testNotEqualsPushdownToDelegate() {
- var optimized = optimizedPlan(physicalPlan("""
- FROM test
- | WHERE job != "v"
- """, testDataLimitedRaw), SEARCH_STATS_SHORT_DELEGATES);
+ var optimized = optimizedPlan(
+ physicalPlan(
+ """
+ FROM test
+ | WHERE job != "v"
+ """, testDataLimitedRaw
+ ), SEARCH_STATS_SHORT_DELEGATES
+ );
var limit = as(optimized, LimitExec.class);
var exchange = as(limit.child(), ExchangeExec.class);
var project = as(exchange.child(), ProjectExec.class);
@@ -8008,17 +8014,60 @@ public void testNotEqualsPushdownToDelegate() {
var extract2 = as(filter.child(), FieldExtractExec.class);
var query = as(extract2.child(), EsQueryExec.class);
assertThat(
- query.query(),
- equalTo(
- new BoolQueryBuilder().filter(
- new SingleValueQuery(
- new NotQuery(Source.EMPTY, new EqualsSyntheticSourceDelegate(Source.EMPTY, "job", "v")),
- "job",
- SingleValueQuery.UseSyntheticSourceDelegate.YES_NEGATED
- ).toQueryBuilder()
- )
- )
+ query.query(), equalTo(new BoolQueryBuilder().filter(new SingleValueQuery(
+ new NotQuery(Source.EMPTY, new EqualsSyntheticSourceDelegate(Source.EMPTY, "job", "v")),
+ "job",
+ SingleValueQuery.UseSyntheticSourceDelegate.YES_NEGATED
+ ).toQueryBuilder()))
+ );
+ }
+
+ /*
+ * LimitExec[1000[INTEGER]]
+ * \_ExchangeExec[[_meta_field{f}#8, emp_no{f}#2, first_name{f}#3, gender{f}#4, hire_date{f}#9, job{f}#10, job.raw{f}#11, langua
+ * ges{f}#5, last_name{f}#6, long_noidx{f}#12, salary{f}#7],false]
+ * \_ProjectExec[[_meta_field{f}#8, emp_no{f}#2, first_name{f}#3, gender{f}#4, hire_date{f}#9, job{f}#10, job.raw{f}#11, langua
+ * ges{f}#5, last_name{f}#6, long_noidx{f}#12, salary{f}#7]]
+ * \_FieldExtractExec[_meta_field{f}#8, emp_no{f}#2, first_name{f}#3, gen..]<[],[]>
+ * \_EsQueryExec[test], indexMode[standard],
+ * query[{"bool":{"filter":[{"sampling":{"probability":0.1,"seed":234,"hash":0}}],"boost":1.0}}]
+ * [_doc{f}#24], limit[1000], sort[] estimatedRowSize[332]
+ */
+ public void testSamplePushDown() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ var plan = physicalPlan("""
+ FROM test
+ | SAMPLE +0.1 -234
+ """);
+ var optimized = optimizedPlan(plan);
+
+ var limit = as(optimized, LimitExec.class);
+ var exchange = as(limit.child(), ExchangeExec.class);
+ var project = as(exchange.child(), ProjectExec.class);
+ var fieldExtract = as(project.child(), FieldExtractExec.class);
+ var esQuery = as(fieldExtract.child(), EsQueryExec.class);
+
+ var boolQuery = as(esQuery.query(), BoolQueryBuilder.class);
+ var filter = boolQuery.filter();
+ var randomSampling = as(filter.get(0), RandomSamplingQueryBuilder.class);
+ assertThat(randomSampling.probability(), equalTo(0.1));
+ assertThat(randomSampling.seed(), equalTo(-234));
+ assertThat(randomSampling.hash(), equalTo(0));
+ }
+
+ public void testSample_seedNotSupportedInOperator() {
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
+ optimizedPlan(physicalPlan("FROM test | SAMPLE 0.1"));
+ optimizedPlan(physicalPlan("FROM test | SAMPLE 0.1 42"));
+ optimizedPlan(physicalPlan("FROM test | MV_EXPAND first_name | SAMPLE 0.1"));
+
+ VerificationException e = expectThrows(
+ VerificationException.class,
+ () -> optimizedPlan(physicalPlan("FROM test | MV_EXPAND first_name | SAMPLE 0.1 42"))
);
+ assertThat(e.getMessage(), equalTo("Found 1 problem\nline 1:47: Seed not supported when sampling can't be pushed down to Lucene"));
}
@SuppressWarnings("SameParameterValue")
@@ -8204,7 +8253,7 @@ private PhysicalPlan physicalPlan(String query, TestDataSource dataSource, boole
var logical = logicalOptimizer.optimize(dataSource.analyzer.analyze(parser.createStatement(query)));
// System.out.println("Logical\n" + logical);
var physical = mapper.map(logical);
- // System.out.println(physical);
+ // System.out.println("Physical\n" + physical);
if (assertSerialization) {
assertSerialization(physical, config);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index e16461b659b14..d2fd6361aee2b 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -3453,6 +3453,14 @@ public void testInvalidCompletion() {
expectError("FROM foo* | COMPLETION completion=prompt", "line 1:41: mismatched input '' expecting {");
}
+ public void testSample() {
+ expectError("FROM test | SAMPLE .1 2 3", "line 1:25: extraneous input '3' expecting ");
+ expectError("FROM test | SAMPLE .1 \"2\"", "line 1:23: extraneous input '\"2\"' expecting ");
+ expectError("FROM test | SAMPLE 1", "line 1:20: mismatched input '1' expecting {DECIMAL_LITERAL, '+', '-'}");
+ expectError("FROM test | SAMPLE", "line 1:19: mismatched input '' expecting {DECIMAL_LITERAL, '+', '-'}");
+ expectError("FROM test | SAMPLE +.1 2147483648", "line 1:24: seed must be an integer, provided [2147483648] of type [LONG]");
+ }
+
static Alias alias(String name, Expression value) {
return new Alias(EMPTY, name, value);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java
new file mode 100644
index 0000000000000..f24d738789b3e
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.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.plan.logical;
+
+import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.core.type.DataType;
+
+import java.io.IOException;
+
+public class SampleSerializationTests extends AbstractLogicalPlanSerializationTests {
+ /**
+ * Creates a random test instance to use in the tests. This method will be
+ * called multiple times during test execution and should return a different
+ * random instance each time it is called.
+ */
+ @Override
+ protected Sample createTestInstance() {
+ return new Sample(randomSource(), randomProbability(), randomSeed(), randomChild(0));
+ }
+
+ public static Literal randomProbability() {
+ return new Literal(randomSource(), randomDoubleBetween(0, 1, false), DataType.DOUBLE);
+ }
+
+ public static Literal randomSeed() {
+ return randomBoolean() ? new Literal(randomSource(), randomInt(), DataType.INTEGER) : null;
+ }
+
+ /**
+ * Returns an instance which is mutated slightly so it should not be equal
+ * to the given instance.
+ *
+ * @param instance
+ */
+ @Override
+ protected Sample mutateInstance(Sample instance) throws IOException {
+ var probability = instance.probability();
+ var seed = instance.seed();
+ var child = instance.child();
+ int updateSelector = randomIntBetween(0, 2);
+ switch (updateSelector) {
+ case 0 -> probability = randomValueOtherThan(probability, SampleSerializationTests::randomProbability);
+ case 1 -> seed = randomValueOtherThan(seed, SampleSerializationTests::randomSeed);
+ case 2 -> child = randomValueOtherThan(child, () -> randomChild(0));
+ default -> throw new IllegalArgumentException("Invalid selector: " + updateSelector);
+ }
+ return new Sample(instance.source(), probability, seed, child);
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java
new file mode 100644
index 0000000000000..12159d8afae7c
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java
@@ -0,0 +1,48 @@
+/*
+ * 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.plan.physical;
+
+import org.elasticsearch.xpack.esql.plan.logical.SampleSerializationTests;
+
+import java.io.IOException;
+
+import static org.elasticsearch.xpack.esql.plan.logical.SampleSerializationTests.randomProbability;
+import static org.elasticsearch.xpack.esql.plan.logical.SampleSerializationTests.randomSeed;
+
+public class SampleExecSerializationTests extends AbstractPhysicalPlanSerializationTests {
+ /**
+ * Creates a random test instance to use in the tests. This method will be
+ * called multiple times during test execution and should return a different
+ * random instance each time it is called.
+ */
+ @Override
+ protected SampleExec createTestInstance() {
+ return new SampleExec(randomSource(), randomChild(0), randomProbability(), randomSeed());
+ }
+
+ /**
+ * Returns an instance which is mutated slightly so it should not be equal
+ * to the given instance.
+ *
+ * @param instance
+ */
+ @Override
+ protected SampleExec mutateInstance(SampleExec instance) throws IOException {
+ var probability = instance.probability();
+ var seed = instance.seed();
+ var child = instance.child();
+ int updateSelector = randomIntBetween(0, 2);
+ switch (updateSelector) {
+ case 0 -> probability = randomValueOtherThan(probability, SampleSerializationTests::randomProbability);
+ case 1 -> seed = randomValueOtherThan(seed, SampleSerializationTests::randomSeed);
+ case 2 -> child = randomValueOtherThan(child, () -> randomChild(0));
+ default -> throw new IllegalArgumentException("Invalid selector: " + updateSelector);
+ }
+ return new SampleExec(instance.source(), child, probability, seed);
+ }
+}
diff --git a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml
index 058c3f0e2cde7..31ddce45b1cce 100644
--- a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml
+++ b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml
@@ -37,7 +37,7 @@ setup:
- do: {xpack.usage: {}}
- match: { esql.available: true }
- match: { esql.enabled: true }
- - length: { esql.features: 21 }
+ - length: { esql.features: 22 }
- set: {esql.features.dissect: dissect_counter}
- set: {esql.features.drop: drop_counter}
- set: {esql.features.eval: eval_counter}
@@ -59,6 +59,7 @@ setup:
- set: {esql.features.inlinestats: inlinestats_counter}
- set: {esql.features.rerank: rerank_counter}
- set: {esql.features.completion: completion_counter}
+ - set: {esql.features.sample: sample_counter}
- length: { esql.queries: 3 }
- set: {esql.queries.rest.total: rest_total_counter}
- set: {esql.queries.rest.failed: rest_failed_counter}
@@ -93,6 +94,7 @@ setup:
- match: {esql.features.inlinestats: $inlinestats_counter}
- match: {esql.features.rerank: $rerank_counter}
- match: {esql.features.completion: $completion_counter}
+ - match: {esql.features.sample: $sample_counter}
- gt: {esql.queries.rest.total: $rest_total_counter}
- match: {esql.queries.rest.failed: $rest_failed_counter}
- match: {esql.queries.kibana.total: $kibana_total_counter}
From a670b1b79bb08475a4ccb723c38ce26c486f1bcf Mon Sep 17 00:00:00 2001
From: Jan Kuipers
Date: Wed, 18 Jun 2025 10:19:56 +0200
Subject: [PATCH 02/11] test: check ES|QL SAMPLE capability before running
analyzer/parser tests (#127382)
This commit resolves release test failures by checking the ES|QL SAMPLE capability before running the tests.
---
.../org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java | 2 ++
.../elasticsearch/xpack/esql/parser/StatementParserTests.java | 1 +
.../resources/rest-api-spec/test/esql/60_usage.yml | 3 ++-
3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
index ba038118bbc45..43a67d69d831c 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
@@ -3167,6 +3167,8 @@ private boolean isMultiTypeEsField(Expression e) {
}
public void testRandomSampleProbability() {
+ assumeTrue("requires SAMPLE capability", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+
var e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE 1."));
assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [1.0]"));
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index d2fd6361aee2b..c363ed4c18bfa 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -3454,6 +3454,7 @@ public void testInvalidCompletion() {
}
public void testSample() {
+ assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE.isEnabled());
expectError("FROM test | SAMPLE .1 2 3", "line 1:25: extraneous input '3' expecting ");
expectError("FROM test | SAMPLE .1 \"2\"", "line 1:23: extraneous input '\"2\"' expecting ");
expectError("FROM test | SAMPLE 1", "line 1:20: mismatched input '1' expecting {DECIMAL_LITERAL, '+', '-'}");
diff --git a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml
index 31ddce45b1cce..1585aec4d3028 100644
--- a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml
+++ b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/60_usage.yml
@@ -123,7 +123,7 @@ setup:
- do: {xpack.usage: {}}
- match: { esql.available: true }
- match: { esql.enabled: true }
- - length: { esql.features: 21 }
+ - length: { esql.features: 22 }
- set: {esql.features.dissect: dissect_counter}
- set: {esql.features.drop: drop_counter}
- set: {esql.features.eval: eval_counter}
@@ -143,6 +143,7 @@ setup:
- set: {esql.features.lookup: lookup_counter}
- set: {esql.features.change_point: change_point_counter}
- set: {esql.features.inlinestats: inlinestats_counter}
+ - set: {esql.features.sample: sample_counter}
- length: { esql.queries: 3 }
- set: {esql.queries.rest.total: rest_total_counter}
- set: {esql.queries.rest.failed: rest_failed_counter}
From dd31620da667cd772edd7f611f4f11e91a10179c Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Wed, 7 May 2025 18:35:25 +0200
Subject: [PATCH 03/11] Fix ES|QL sample csv tests (#127838)
---
.../src/main/resources/sample.csv-spec | 32 +++++++++----------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
index 9505001415f12..237eee40e60b7 100644
--- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
@@ -4,7 +4,7 @@
// range. These stats should be correctly adjusted for the sampling. Furthermore,
// they also assert the value of MV_COUNT(VALUES(...)), which is not adjusted for
// the sampling and therefore gives the size of the sample.
-// All ranges are very loose, so that the tests should fail less than 1 in a billion.
+// All ranges are very loose, so that the tests should practically never fail.
// The range checks are done in ES|QL, resulting in one boolean value (is_expected),
// because the CSV tests don't support such assertions.
@@ -40,10 +40,10 @@ required_capability: sample
FROM employees
| SAMPLE 0.5
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no), sum_emp_no = SUM(emp_no)
- | EVAL is_expected = count >= 40 AND count <= 160 AND
- values_count >= 20 AND values_count <= 80 AND
+ | EVAL is_expected = count >= 20 AND count <= 180 AND
+ values_count >= 10 AND values_count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090 AND
- sum_emp_no > 40*10010 AND sum_emp_no < 160*10090
+ sum_emp_no > 20*10010 AND sum_emp_no < 180*10090
| KEEP is_expected
;
@@ -59,8 +59,8 @@ FROM employees
| SAMPLE 0.5
| WHERE emp_no > 10050
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 10 AND count <= 90 AND
- values_count >= 5 AND values_count <= 45 AND
+ | EVAL is_expected = count >= 5 AND count <= 95 AND
+ values_count >= 2 AND values_count <= 48 AND
avg_emp_no > 10055 AND avg_emp_no < 10095
| KEEP is_expected
;
@@ -77,8 +77,8 @@ FROM employees
| WHERE emp_no <= 10050
| SAMPLE 0.5
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 10 AND count <= 90 AND
- values_count >= 5 AND values_count <= 45 AND
+ | EVAL is_expected = count >= 5 AND count <= 95 AND
+ values_count >= 2 AND values_count <= 48 AND
avg_emp_no > 10005 AND avg_emp_no < 10045
| KEEP is_expected
;
@@ -95,8 +95,8 @@ FROM employees
| SAMPLE 0.5
| SORT emp_no
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 40 AND count <= 160 AND
- values_count >= 20 AND values_count <= 80 AND
+ | EVAL is_expected = count >= 20 AND count <= 180 AND
+ values_count >= 10 AND values_count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090
| KEEP is_expected
;
@@ -113,8 +113,8 @@ FROM employees
| SORT emp_no
| SAMPLE 0.5
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 40 AND count <= 160 AND
- values_count >= 20 AND values_count <= 80 AND
+ | EVAL is_expected = count >= 20 AND count <= 180 AND
+ values_count >= 10 AND values_count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090
| KEEP is_expected
;
@@ -147,8 +147,8 @@ FROM employees
| LIMIT 50
| SAMPLE 0.5
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no))
- | EVAL is_expected = count >= 10 AND count <= 90 AND
- values_count >= 5 AND values_count <= 45
+ | EVAL is_expected = count >= 5 AND count <= 95 AND
+ values_count >= 2 AND values_count <= 48
| KEEP is_expected
;
@@ -201,8 +201,8 @@ FROM employees
| SAMPLE 0.8
| SAMPLE 0.9
| STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 40 AND count <= 160 AND
- values_count >= 20 AND values_count <= 80 AND
+ | EVAL is_expected = count >= 20 AND count <= 180 AND
+ values_count >= 10 AND values_count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090
| KEEP is_expected
;
From 74602261592fc56192a8357e3a5275e222186862 Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Tue, 10 Jun 2025 11:19:44 +0200
Subject: [PATCH 04/11] Remove optional seed from ES|QL SAMPLE (#128887)
* Remove optional seed from ES|QL SAMPLE
* make it clear that seed is for testing
---
.../compute/operator/SampleOperator.java | 20 +-
.../compute/operator/SampleOperatorTests.java | 3 +-
.../esql/src/main/antlr/EsqlBaseParser.g4 | 2 +-
.../logical/PushDownAndCombineSample.java | 21 +-
.../physical/local/PushSampleToSource.java | 3 -
.../xpack/esql/parser/EsqlBaseParser.interp | 2 +-
.../xpack/esql/parser/EsqlBaseParser.java | 775 +++++++++---------
.../xpack/esql/parser/LogicalPlanBuilder.java | 16 +-
.../xpack/esql/plan/logical/Sample.java | 21 +-
.../xpack/esql/plan/physical/SampleExec.java | 38 +-
.../esql/planner/LocalExecutionPlanner.java | 4 +-
.../esql/planner/mapper/LocalMapper.java | 2 +-
.../xpack/esql/planner/mapper/Mapper.java | 2 +-
.../optimizer/LogicalPlanOptimizerTests.java | 10 +-
.../optimizer/PhysicalPlanOptimizerTests.java | 17 +-
.../esql/parser/StatementParserTests.java | 3 +-
.../logical/SampleSerializationTests.java | 10 +-
.../SampleExecSerializationTests.java | 11 +-
18 files changed, 430 insertions(+), 530 deletions(-)
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java
index 0a2158015c950..56ba95f66f5fa 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java
@@ -9,6 +9,7 @@
import org.elasticsearch.TransportVersion;
import org.elasticsearch.TransportVersions;
+import org.elasticsearch.common.Randomness;
import org.elasticsearch.common.Strings;
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.io.stream.StreamInput;
@@ -27,16 +28,29 @@
public class SampleOperator implements Operator {
- public record Factory(double probability, int seed) implements OperatorFactory {
+ public static class Factory implements OperatorFactory {
+
+ private final double probability;
+ private final Integer seed;
+
+ public Factory(double probability) {
+ this(probability, null);
+ }
+
+ // visible for testing
+ Factory(double probability, Integer seed) {
+ this.probability = probability;
+ this.seed = seed;
+ }
@Override
public SampleOperator get(DriverContext driverContext) {
- return new SampleOperator(probability, seed);
+ return new SampleOperator(probability, seed == null ? Randomness.get().nextInt() : seed);
}
@Override
public String describe() {
- return "SampleOperator[probability = " + probability + ", seed = " + seed + "]";
+ return "SampleOperator[probability = " + probability + "]";
}
}
diff --git a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java
index cf2d73ab4768f..11d22b7630031 100644
--- a/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java
+++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java
@@ -21,7 +21,6 @@
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.lessThan;
-import static org.hamcrest.Matchers.matchesPattern;
public class SampleOperatorTests extends OperatorTestCase {
@@ -46,7 +45,7 @@ protected SampleOperator.Factory simple() {
@Override
protected Matcher expectedDescriptionOfSimple() {
- return matchesPattern("SampleOperator\\[probability = 0.5, seed = -?\\d+]");
+ return equalTo("SampleOperator[probability = 0.5]");
}
@Override
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index d5db56af2b480..dc8af7bfa9e2c 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -392,5 +392,5 @@ completionCommand
;
sampleCommand
- : DEV_SAMPLE probability=decimalValue seed=integerValue?
+ : DEV_SAMPLE probability=decimalValue
;
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineSample.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineSample.java
index d3535a42ada86..439c7b785e8b4 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineSample.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineSample.java
@@ -61,8 +61,7 @@ protected LogicalPlan rule(Sample sample, LogicalOptimizerContext context) {
var child = sample.child();
if (child instanceof Sample sampleChild) {
var probability = combinedProbability(context, sample, sampleChild);
- var seed = combinedSeed(context, sample, sampleChild);
- plan = new Sample(sample.source(), probability, seed, sampleChild.child());
+ plan = new Sample(sample.source(), probability, sampleChild.child());
} else if (child instanceof Enrich
|| child instanceof Eval
|| child instanceof Filter
@@ -80,22 +79,4 @@ private static Expression combinedProbability(LogicalOptimizerContext context, S
var childProbability = (double) Foldables.valueOf(context.foldCtx(), child.probability());
return Literal.of(parent.probability(), parentProbability * childProbability);
}
-
- private static Expression combinedSeed(LogicalOptimizerContext context, Sample parent, Sample child) {
- var parentSeed = parent.seed();
- var childSeed = child.seed();
- Expression seed;
- if (parentSeed != null) {
- if (childSeed != null) {
- var seedValue = (int) Foldables.valueOf(context.foldCtx(), parentSeed);
- seedValue ^= (int) Foldables.valueOf(context.foldCtx(), childSeed);
- seed = Literal.of(parentSeed, seedValue);
- } else {
- seed = parentSeed;
- }
- } else {
- seed = childSeed;
- }
- return seed;
- }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushSampleToSource.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushSampleToSource.java
index ef663d06999c2..4e41b748ece08 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushSampleToSource.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushSampleToSource.java
@@ -33,9 +33,6 @@ protected PhysicalPlan rule(SampleExec sample, LocalPhysicalOptimizerContext ctx
}
var sampleQuery = new RandomSamplingQueryBuilder((double) Foldables.valueOf(ctx.foldCtx(), sample.probability()));
- if (sample.seed() != null) {
- sampleQuery.seed((int) Foldables.valueOf(ctx.foldCtx(), sample.seed()));
- }
fullQuery.filter(sampleQuery);
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 d8168c44dd89c..da970bde87b97 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
@@ -363,4 +363,4 @@ sampleCommand
atn:
-[4, 1, 139, 763, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 212, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 219, 8, 5, 10, 5, 12, 5, 222, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 229, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 234, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 242, 8, 5, 10, 5, 12, 5, 245, 9, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 6, 1, 6, 1, 6, 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, 5, 6, 270, 8, 6, 10, 6, 12, 6, 273, 9, 6, 1, 6, 1, 6, 3, 6, 277, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 282, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 292, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 298, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 306, 8, 9, 10, 9, 12, 9, 309, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 319, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 324, 8, 10, 10, 10, 12, 10, 327, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 335, 8, 11, 10, 11, 12, 11, 338, 9, 11, 1, 11, 1, 11, 3, 11, 342, 8, 11, 3, 11, 344, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 354, 8, 13, 10, 13, 12, 13, 357, 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, 373, 8, 17, 10, 17, 12, 17, 376, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 381, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 388, 8, 19, 10, 19, 12, 19, 391, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 396, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 402, 8, 21, 10, 21, 12, 21, 405, 9, 21, 1, 21, 3, 21, 408, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 419, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 431, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 437, 8, 28, 10, 28, 12, 28, 440, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 450, 8, 30, 10, 30, 12, 30, 453, 9, 30, 1, 30, 3, 30, 456, 8, 30, 1, 30, 1, 30, 3, 30, 460, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 32, 1, 32, 3, 32, 471, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 476, 8, 33, 10, 33, 12, 33, 479, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 484, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 489, 8, 35, 10, 35, 12, 35, 492, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 497, 8, 36, 10, 36, 12, 36, 500, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 505, 8, 37, 10, 37, 12, 37, 508, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 515, 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, 530, 8, 40, 10, 40, 12, 40, 533, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 541, 8, 40, 10, 40, 12, 40, 544, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 552, 8, 40, 10, 40, 12, 40, 555, 9, 40, 1, 40, 1, 40, 3, 40, 559, 8, 40, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 42, 1, 42, 3, 42, 567, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 572, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 581, 8, 45, 10, 45, 12, 45, 584, 9, 45, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 46, 1, 46, 3, 46, 592, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 604, 8, 49, 10, 49, 12, 49, 607, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 617, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 623, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 635, 8, 54, 10, 54, 12, 54, 638, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 648, 8, 57, 1, 58, 3, 58, 651, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 656, 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, 678, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 684, 8, 65, 10, 65, 12, 65, 687, 9, 65, 3, 65, 689, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 694, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 702, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 709, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 720, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 733, 8, 72, 10, 72, 12, 72, 736, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 746, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 752, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 761, 8, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 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, 18, 18, 26, 27, 797, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 199, 1, 0, 0, 0, 8, 201, 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 276, 1, 0, 0, 0, 14, 278, 1, 0, 0, 0, 16, 291, 1, 0, 0, 0, 18, 297, 1, 0, 0, 0, 20, 318, 1, 0, 0, 0, 22, 328, 1, 0, 0, 0, 24, 347, 1, 0, 0, 0, 26, 349, 1, 0, 0, 0, 28, 360, 1, 0, 0, 0, 30, 364, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 369, 1, 0, 0, 0, 36, 380, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 392, 1, 0, 0, 0, 42, 397, 1, 0, 0, 0, 44, 418, 1, 0, 0, 0, 46, 420, 1, 0, 0, 0, 48, 422, 1, 0, 0, 0, 50, 424, 1, 0, 0, 0, 52, 426, 1, 0, 0, 0, 54, 430, 1, 0, 0, 0, 56, 432, 1, 0, 0, 0, 58, 441, 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 464, 1, 0, 0, 0, 66, 472, 1, 0, 0, 0, 68, 480, 1, 0, 0, 0, 70, 485, 1, 0, 0, 0, 72, 493, 1, 0, 0, 0, 74, 501, 1, 0, 0, 0, 76, 509, 1, 0, 0, 0, 78, 514, 1, 0, 0, 0, 80, 558, 1, 0, 0, 0, 82, 562, 1, 0, 0, 0, 84, 566, 1, 0, 0, 0, 86, 571, 1, 0, 0, 0, 88, 573, 1, 0, 0, 0, 90, 576, 1, 0, 0, 0, 92, 585, 1, 0, 0, 0, 94, 593, 1, 0, 0, 0, 96, 596, 1, 0, 0, 0, 98, 599, 1, 0, 0, 0, 100, 616, 1, 0, 0, 0, 102, 618, 1, 0, 0, 0, 104, 624, 1, 0, 0, 0, 106, 628, 1, 0, 0, 0, 108, 631, 1, 0, 0, 0, 110, 639, 1, 0, 0, 0, 112, 643, 1, 0, 0, 0, 114, 647, 1, 0, 0, 0, 116, 650, 1, 0, 0, 0, 118, 655, 1, 0, 0, 0, 120, 659, 1, 0, 0, 0, 122, 661, 1, 0, 0, 0, 124, 663, 1, 0, 0, 0, 126, 666, 1, 0, 0, 0, 128, 670, 1, 0, 0, 0, 130, 673, 1, 0, 0, 0, 132, 693, 1, 0, 0, 0, 134, 697, 1, 0, 0, 0, 136, 710, 1, 0, 0, 0, 138, 715, 1, 0, 0, 0, 140, 721, 1, 0, 0, 0, 142, 726, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 737, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 747, 1, 0, 0, 0, 152, 757, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 200, 3, 62, 31, 0, 177, 200, 3, 8, 4, 0, 178, 200, 3, 94, 47, 0, 179, 200, 3, 88, 44, 0, 180, 200, 3, 64, 32, 0, 181, 200, 3, 90, 45, 0, 182, 200, 3, 96, 48, 0, 183, 200, 3, 98, 49, 0, 184, 200, 3, 102, 51, 0, 185, 200, 3, 104, 52, 0, 186, 200, 3, 130, 65, 0, 187, 200, 3, 106, 53, 0, 188, 200, 3, 140, 70, 0, 189, 200, 3, 134, 67, 0, 190, 200, 3, 150, 75, 0, 191, 192, 4, 3, 2, 0, 192, 200, 3, 138, 69, 0, 193, 194, 4, 3, 3, 0, 194, 200, 3, 136, 68, 0, 195, 196, 4, 3, 4, 0, 196, 200, 3, 148, 74, 0, 197, 198, 4, 3, 5, 0, 198, 200, 3, 152, 76, 0, 199, 176, 1, 0, 0, 0, 199, 177, 1, 0, 0, 0, 199, 178, 1, 0, 0, 0, 199, 179, 1, 0, 0, 0, 199, 180, 1, 0, 0, 0, 199, 181, 1, 0, 0, 0, 199, 182, 1, 0, 0, 0, 199, 183, 1, 0, 0, 0, 199, 184, 1, 0, 0, 0, 199, 185, 1, 0, 0, 0, 199, 186, 1, 0, 0, 0, 199, 187, 1, 0, 0, 0, 199, 188, 1, 0, 0, 0, 199, 189, 1, 0, 0, 0, 199, 190, 1, 0, 0, 0, 199, 191, 1, 0, 0, 0, 199, 193, 1, 0, 0, 0, 199, 195, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 17, 0, 0, 202, 203, 3, 10, 5, 0, 203, 9, 1, 0, 0, 0, 204, 205, 6, 5, -1, 0, 205, 206, 5, 52, 0, 0, 206, 234, 3, 10, 5, 8, 207, 234, 3, 16, 8, 0, 208, 234, 3, 12, 6, 0, 209, 211, 3, 16, 8, 0, 210, 212, 5, 52, 0, 0, 211, 210, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 214, 5, 47, 0, 0, 214, 215, 5, 51, 0, 0, 215, 220, 3, 16, 8, 0, 216, 217, 5, 42, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 5, 59, 0, 0, 224, 234, 1, 0, 0, 0, 225, 226, 3, 16, 8, 0, 226, 228, 5, 48, 0, 0, 227, 229, 5, 52, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 53, 0, 0, 231, 234, 1, 0, 0, 0, 232, 234, 3, 14, 7, 0, 233, 204, 1, 0, 0, 0, 233, 207, 1, 0, 0, 0, 233, 208, 1, 0, 0, 0, 233, 209, 1, 0, 0, 0, 233, 225, 1, 0, 0, 0, 233, 232, 1, 0, 0, 0, 234, 243, 1, 0, 0, 0, 235, 236, 10, 5, 0, 0, 236, 237, 5, 36, 0, 0, 237, 242, 3, 10, 5, 6, 238, 239, 10, 4, 0, 0, 239, 240, 5, 56, 0, 0, 240, 242, 3, 10, 5, 5, 241, 235, 1, 0, 0, 0, 241, 238, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 11, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 16, 8, 0, 247, 249, 5, 52, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 5, 50, 0, 0, 251, 252, 3, 120, 60, 0, 252, 277, 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, 58, 0, 0, 258, 259, 3, 120, 60, 0, 259, 277, 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, 50, 0, 0, 265, 266, 5, 51, 0, 0, 266, 271, 3, 120, 60, 0, 267, 268, 5, 42, 0, 0, 268, 270, 3, 120, 60, 0, 269, 267, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 274, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 5, 59, 0, 0, 275, 277, 1, 0, 0, 0, 276, 246, 1, 0, 0, 0, 276, 253, 1, 0, 0, 0, 276, 260, 1, 0, 0, 0, 277, 13, 1, 0, 0, 0, 278, 281, 3, 70, 35, 0, 279, 280, 5, 40, 0, 0, 280, 282, 3, 30, 15, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 284, 5, 41, 0, 0, 284, 285, 3, 80, 40, 0, 285, 15, 1, 0, 0, 0, 286, 292, 3, 18, 9, 0, 287, 288, 3, 18, 9, 0, 288, 289, 3, 122, 61, 0, 289, 290, 3, 18, 9, 0, 290, 292, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 292, 17, 1, 0, 0, 0, 293, 294, 6, 9, -1, 0, 294, 298, 3, 20, 10, 0, 295, 296, 7, 0, 0, 0, 296, 298, 3, 18, 9, 3, 297, 293, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 307, 1, 0, 0, 0, 299, 300, 10, 2, 0, 0, 300, 301, 7, 1, 0, 0, 301, 306, 3, 18, 9, 3, 302, 303, 10, 1, 0, 0, 303, 304, 7, 0, 0, 0, 304, 306, 3, 18, 9, 2, 305, 299, 1, 0, 0, 0, 305, 302, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 19, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 6, 10, -1, 0, 311, 319, 3, 80, 40, 0, 312, 319, 3, 70, 35, 0, 313, 319, 3, 22, 11, 0, 314, 315, 5, 51, 0, 0, 315, 316, 3, 10, 5, 0, 316, 317, 5, 59, 0, 0, 317, 319, 1, 0, 0, 0, 318, 310, 1, 0, 0, 0, 318, 312, 1, 0, 0, 0, 318, 313, 1, 0, 0, 0, 318, 314, 1, 0, 0, 0, 319, 325, 1, 0, 0, 0, 320, 321, 10, 1, 0, 0, 321, 322, 5, 40, 0, 0, 322, 324, 3, 30, 15, 0, 323, 320, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 21, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 3, 24, 12, 0, 329, 343, 5, 51, 0, 0, 330, 344, 5, 71, 0, 0, 331, 336, 3, 10, 5, 0, 332, 333, 5, 42, 0, 0, 333, 335, 3, 10, 5, 0, 334, 332, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 341, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 340, 5, 42, 0, 0, 340, 342, 3, 26, 13, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343, 330, 1, 0, 0, 0, 343, 331, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 5, 59, 0, 0, 346, 23, 1, 0, 0, 0, 347, 348, 3, 86, 43, 0, 348, 25, 1, 0, 0, 0, 349, 350, 5, 74, 0, 0, 350, 355, 3, 28, 14, 0, 351, 352, 5, 42, 0, 0, 352, 354, 3, 28, 14, 0, 353, 351, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 359, 5, 75, 0, 0, 359, 27, 1, 0, 0, 0, 360, 361, 3, 120, 60, 0, 361, 362, 5, 41, 0, 0, 362, 363, 3, 80, 40, 0, 363, 29, 1, 0, 0, 0, 364, 365, 3, 76, 38, 0, 365, 31, 1, 0, 0, 0, 366, 367, 5, 13, 0, 0, 367, 368, 3, 34, 17, 0, 368, 33, 1, 0, 0, 0, 369, 374, 3, 36, 18, 0, 370, 371, 5, 42, 0, 0, 371, 373, 3, 36, 18, 0, 372, 370, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 35, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 3, 70, 35, 0, 378, 379, 5, 38, 0, 0, 379, 381, 1, 0, 0, 0, 380, 377, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 3, 10, 5, 0, 383, 37, 1, 0, 0, 0, 384, 389, 3, 40, 20, 0, 385, 386, 5, 42, 0, 0, 386, 388, 3, 40, 20, 0, 387, 385, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 39, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 395, 3, 70, 35, 0, 393, 394, 5, 38, 0, 0, 394, 396, 3, 10, 5, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 41, 1, 0, 0, 0, 397, 398, 5, 7, 0, 0, 398, 403, 3, 44, 22, 0, 399, 400, 5, 42, 0, 0, 400, 402, 3, 44, 22, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 408, 3, 54, 27, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 43, 1, 0, 0, 0, 409, 410, 3, 46, 23, 0, 410, 411, 5, 41, 0, 0, 411, 412, 3, 50, 25, 0, 412, 419, 1, 0, 0, 0, 413, 414, 3, 50, 25, 0, 414, 415, 5, 40, 0, 0, 415, 416, 3, 48, 24, 0, 416, 419, 1, 0, 0, 0, 417, 419, 3, 52, 26, 0, 418, 409, 1, 0, 0, 0, 418, 413, 1, 0, 0, 0, 418, 417, 1, 0, 0, 0, 419, 45, 1, 0, 0, 0, 420, 421, 5, 90, 0, 0, 421, 47, 1, 0, 0, 0, 422, 423, 5, 90, 0, 0, 423, 49, 1, 0, 0, 0, 424, 425, 5, 90, 0, 0, 425, 51, 1, 0, 0, 0, 426, 427, 7, 2, 0, 0, 427, 53, 1, 0, 0, 0, 428, 431, 3, 56, 28, 0, 429, 431, 3, 58, 29, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 55, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 438, 5, 90, 0, 0, 434, 435, 5, 42, 0, 0, 435, 437, 5, 90, 0, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 57, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 79, 0, 0, 442, 443, 3, 56, 28, 0, 443, 444, 5, 80, 0, 0, 444, 59, 1, 0, 0, 0, 445, 446, 5, 22, 0, 0, 446, 451, 3, 44, 22, 0, 447, 448, 5, 42, 0, 0, 448, 450, 3, 44, 22, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 456, 3, 66, 33, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 458, 5, 39, 0, 0, 458, 460, 3, 34, 17, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 61, 1, 0, 0, 0, 461, 462, 5, 5, 0, 0, 462, 463, 3, 34, 17, 0, 463, 63, 1, 0, 0, 0, 464, 466, 5, 16, 0, 0, 465, 467, 3, 66, 33, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 469, 5, 39, 0, 0, 469, 471, 3, 34, 17, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 65, 1, 0, 0, 0, 472, 477, 3, 68, 34, 0, 473, 474, 5, 42, 0, 0, 474, 476, 3, 68, 34, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 67, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 483, 3, 36, 18, 0, 481, 482, 5, 17, 0, 0, 482, 484, 3, 10, 5, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 69, 1, 0, 0, 0, 485, 490, 3, 86, 43, 0, 486, 487, 5, 44, 0, 0, 487, 489, 3, 86, 43, 0, 488, 486, 1, 0, 0, 0, 489, 492, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 71, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 493, 498, 3, 78, 39, 0, 494, 495, 5, 44, 0, 0, 495, 497, 3, 78, 39, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 73, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 506, 3, 72, 36, 0, 502, 503, 5, 42, 0, 0, 503, 505, 3, 72, 36, 0, 504, 502, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 75, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 7, 3, 0, 0, 510, 77, 1, 0, 0, 0, 511, 515, 5, 94, 0, 0, 512, 515, 3, 82, 41, 0, 513, 515, 3, 84, 42, 0, 514, 511, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 79, 1, 0, 0, 0, 516, 559, 5, 53, 0, 0, 517, 518, 3, 118, 59, 0, 518, 519, 5, 81, 0, 0, 519, 559, 1, 0, 0, 0, 520, 559, 3, 116, 58, 0, 521, 559, 3, 118, 59, 0, 522, 559, 3, 112, 56, 0, 523, 559, 3, 82, 41, 0, 524, 559, 3, 120, 60, 0, 525, 526, 5, 79, 0, 0, 526, 531, 3, 114, 57, 0, 527, 528, 5, 42, 0, 0, 528, 530, 3, 114, 57, 0, 529, 527, 1, 0, 0, 0, 530, 533, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 534, 535, 5, 80, 0, 0, 535, 559, 1, 0, 0, 0, 536, 537, 5, 79, 0, 0, 537, 542, 3, 112, 56, 0, 538, 539, 5, 42, 0, 0, 539, 541, 3, 112, 56, 0, 540, 538, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 545, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 546, 5, 80, 0, 0, 546, 559, 1, 0, 0, 0, 547, 548, 5, 79, 0, 0, 548, 553, 3, 120, 60, 0, 549, 550, 5, 42, 0, 0, 550, 552, 3, 120, 60, 0, 551, 549, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 556, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 557, 5, 80, 0, 0, 557, 559, 1, 0, 0, 0, 558, 516, 1, 0, 0, 0, 558, 517, 1, 0, 0, 0, 558, 520, 1, 0, 0, 0, 558, 521, 1, 0, 0, 0, 558, 522, 1, 0, 0, 0, 558, 523, 1, 0, 0, 0, 558, 524, 1, 0, 0, 0, 558, 525, 1, 0, 0, 0, 558, 536, 1, 0, 0, 0, 558, 547, 1, 0, 0, 0, 559, 81, 1, 0, 0, 0, 560, 563, 5, 57, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 83, 1, 0, 0, 0, 564, 567, 5, 76, 0, 0, 565, 567, 5, 78, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 85, 1, 0, 0, 0, 568, 572, 3, 76, 38, 0, 569, 572, 3, 82, 41, 0, 570, 572, 3, 84, 42, 0, 571, 568, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 570, 1, 0, 0, 0, 572, 87, 1, 0, 0, 0, 573, 574, 5, 10, 0, 0, 574, 575, 3, 80, 40, 0, 575, 89, 1, 0, 0, 0, 576, 577, 5, 15, 0, 0, 577, 582, 3, 92, 46, 0, 578, 579, 5, 42, 0, 0, 579, 581, 3, 92, 46, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 91, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 587, 3, 10, 5, 0, 586, 588, 7, 4, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 590, 5, 54, 0, 0, 590, 592, 7, 5, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 93, 1, 0, 0, 0, 593, 594, 5, 9, 0, 0, 594, 595, 3, 74, 37, 0, 595, 95, 1, 0, 0, 0, 596, 597, 5, 3, 0, 0, 597, 598, 3, 74, 37, 0, 598, 97, 1, 0, 0, 0, 599, 600, 5, 12, 0, 0, 600, 605, 3, 100, 50, 0, 601, 602, 5, 42, 0, 0, 602, 604, 3, 100, 50, 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, 99, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 98, 0, 0, 610, 611, 3, 72, 36, 0, 611, 617, 1, 0, 0, 0, 612, 613, 3, 72, 36, 0, 613, 614, 5, 38, 0, 0, 614, 615, 3, 72, 36, 0, 615, 617, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 612, 1, 0, 0, 0, 617, 101, 1, 0, 0, 0, 618, 619, 5, 2, 0, 0, 619, 620, 3, 20, 10, 0, 620, 622, 3, 120, 60, 0, 621, 623, 3, 108, 54, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 103, 1, 0, 0, 0, 624, 625, 5, 8, 0, 0, 625, 626, 3, 20, 10, 0, 626, 627, 3, 120, 60, 0, 627, 105, 1, 0, 0, 0, 628, 629, 5, 11, 0, 0, 629, 630, 3, 70, 35, 0, 630, 107, 1, 0, 0, 0, 631, 636, 3, 110, 55, 0, 632, 633, 5, 42, 0, 0, 633, 635, 3, 110, 55, 0, 634, 632, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 109, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 3, 76, 38, 0, 640, 641, 5, 38, 0, 0, 641, 642, 3, 80, 40, 0, 642, 111, 1, 0, 0, 0, 643, 644, 7, 6, 0, 0, 644, 113, 1, 0, 0, 0, 645, 648, 3, 116, 58, 0, 646, 648, 3, 118, 59, 0, 647, 645, 1, 0, 0, 0, 647, 646, 1, 0, 0, 0, 648, 115, 1, 0, 0, 0, 649, 651, 7, 0, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 5, 35, 0, 0, 653, 117, 1, 0, 0, 0, 654, 656, 7, 0, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 5, 34, 0, 0, 658, 119, 1, 0, 0, 0, 659, 660, 5, 33, 0, 0, 660, 121, 1, 0, 0, 0, 661, 662, 7, 7, 0, 0, 662, 123, 1, 0, 0, 0, 663, 664, 5, 6, 0, 0, 664, 665, 3, 126, 63, 0, 665, 125, 1, 0, 0, 0, 666, 667, 5, 79, 0, 0, 667, 668, 3, 2, 1, 0, 668, 669, 5, 80, 0, 0, 669, 127, 1, 0, 0, 0, 670, 671, 5, 14, 0, 0, 671, 672, 5, 112, 0, 0, 672, 129, 1, 0, 0, 0, 673, 674, 5, 4, 0, 0, 674, 677, 5, 102, 0, 0, 675, 676, 5, 55, 0, 0, 676, 678, 3, 72, 36, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 688, 1, 0, 0, 0, 679, 680, 5, 61, 0, 0, 680, 685, 3, 132, 66, 0, 681, 682, 5, 42, 0, 0, 682, 684, 3, 132, 66, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 131, 1, 0, 0, 0, 690, 691, 3, 72, 36, 0, 691, 692, 5, 38, 0, 0, 692, 694, 1, 0, 0, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 3, 72, 36, 0, 696, 133, 1, 0, 0, 0, 697, 698, 5, 19, 0, 0, 698, 701, 3, 70, 35, 0, 699, 700, 5, 55, 0, 0, 700, 702, 3, 70, 35, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 708, 1, 0, 0, 0, 703, 704, 5, 98, 0, 0, 704, 705, 3, 70, 35, 0, 705, 706, 5, 42, 0, 0, 706, 707, 3, 70, 35, 0, 707, 709, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 135, 1, 0, 0, 0, 710, 711, 5, 21, 0, 0, 711, 712, 3, 44, 22, 0, 712, 713, 5, 55, 0, 0, 713, 714, 3, 74, 37, 0, 714, 137, 1, 0, 0, 0, 715, 716, 5, 20, 0, 0, 716, 719, 3, 66, 33, 0, 717, 718, 5, 39, 0, 0, 718, 720, 3, 34, 17, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 139, 1, 0, 0, 0, 721, 722, 7, 8, 0, 0, 722, 723, 5, 126, 0, 0, 723, 724, 3, 142, 71, 0, 724, 725, 3, 144, 72, 0, 725, 141, 1, 0, 0, 0, 726, 727, 3, 44, 22, 0, 727, 143, 1, 0, 0, 0, 728, 729, 5, 55, 0, 0, 729, 734, 3, 146, 73, 0, 730, 731, 5, 42, 0, 0, 731, 733, 3, 146, 73, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 3, 16, 8, 0, 738, 147, 1, 0, 0, 0, 739, 740, 5, 23, 0, 0, 740, 741, 3, 80, 40, 0, 741, 742, 5, 55, 0, 0, 742, 745, 3, 38, 19, 0, 743, 744, 5, 61, 0, 0, 744, 746, 3, 86, 43, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 149, 1, 0, 0, 0, 747, 751, 5, 1, 0, 0, 748, 749, 3, 70, 35, 0, 749, 750, 5, 38, 0, 0, 750, 752, 1, 0, 0, 0, 751, 748, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 3, 20, 10, 0, 754, 755, 5, 61, 0, 0, 755, 756, 3, 86, 43, 0, 756, 151, 1, 0, 0, 0, 757, 758, 5, 24, 0, 0, 758, 760, 3, 116, 58, 0, 759, 761, 3, 118, 59, 0, 760, 759, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 153, 1, 0, 0, 0, 73, 165, 174, 199, 211, 220, 228, 233, 241, 243, 248, 255, 262, 271, 276, 281, 291, 297, 305, 307, 318, 325, 336, 341, 343, 355, 374, 380, 389, 395, 403, 407, 418, 430, 438, 451, 455, 459, 466, 470, 477, 483, 490, 498, 506, 514, 531, 542, 553, 558, 562, 566, 571, 582, 587, 591, 605, 616, 622, 636, 647, 650, 655, 677, 685, 688, 693, 701, 708, 719, 734, 745, 751, 760]
\ No newline at end of file
+[4, 1, 139, 761, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 212, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 219, 8, 5, 10, 5, 12, 5, 222, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 229, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 234, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 242, 8, 5, 10, 5, 12, 5, 245, 9, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 6, 1, 6, 1, 6, 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, 5, 6, 270, 8, 6, 10, 6, 12, 6, 273, 9, 6, 1, 6, 1, 6, 3, 6, 277, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 282, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 292, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 298, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 306, 8, 9, 10, 9, 12, 9, 309, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 319, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 324, 8, 10, 10, 10, 12, 10, 327, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 335, 8, 11, 10, 11, 12, 11, 338, 9, 11, 1, 11, 1, 11, 3, 11, 342, 8, 11, 3, 11, 344, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 354, 8, 13, 10, 13, 12, 13, 357, 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, 373, 8, 17, 10, 17, 12, 17, 376, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 381, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 388, 8, 19, 10, 19, 12, 19, 391, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 396, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 402, 8, 21, 10, 21, 12, 21, 405, 9, 21, 1, 21, 3, 21, 408, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 419, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 431, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 437, 8, 28, 10, 28, 12, 28, 440, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 450, 8, 30, 10, 30, 12, 30, 453, 9, 30, 1, 30, 3, 30, 456, 8, 30, 1, 30, 1, 30, 3, 30, 460, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 32, 1, 32, 3, 32, 471, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 476, 8, 33, 10, 33, 12, 33, 479, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 484, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 489, 8, 35, 10, 35, 12, 35, 492, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 497, 8, 36, 10, 36, 12, 36, 500, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 505, 8, 37, 10, 37, 12, 37, 508, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 515, 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, 530, 8, 40, 10, 40, 12, 40, 533, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 541, 8, 40, 10, 40, 12, 40, 544, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 552, 8, 40, 10, 40, 12, 40, 555, 9, 40, 1, 40, 1, 40, 3, 40, 559, 8, 40, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 42, 1, 42, 3, 42, 567, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 572, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 581, 8, 45, 10, 45, 12, 45, 584, 9, 45, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 46, 1, 46, 3, 46, 592, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 604, 8, 49, 10, 49, 12, 49, 607, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 617, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 623, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 635, 8, 54, 10, 54, 12, 54, 638, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 648, 8, 57, 1, 58, 3, 58, 651, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 656, 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, 678, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 684, 8, 65, 10, 65, 12, 65, 687, 9, 65, 3, 65, 689, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 694, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 702, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 709, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 720, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 733, 8, 72, 10, 72, 12, 72, 736, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 746, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 752, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 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, 18, 18, 26, 27, 794, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 199, 1, 0, 0, 0, 8, 201, 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 276, 1, 0, 0, 0, 14, 278, 1, 0, 0, 0, 16, 291, 1, 0, 0, 0, 18, 297, 1, 0, 0, 0, 20, 318, 1, 0, 0, 0, 22, 328, 1, 0, 0, 0, 24, 347, 1, 0, 0, 0, 26, 349, 1, 0, 0, 0, 28, 360, 1, 0, 0, 0, 30, 364, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 369, 1, 0, 0, 0, 36, 380, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 392, 1, 0, 0, 0, 42, 397, 1, 0, 0, 0, 44, 418, 1, 0, 0, 0, 46, 420, 1, 0, 0, 0, 48, 422, 1, 0, 0, 0, 50, 424, 1, 0, 0, 0, 52, 426, 1, 0, 0, 0, 54, 430, 1, 0, 0, 0, 56, 432, 1, 0, 0, 0, 58, 441, 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 464, 1, 0, 0, 0, 66, 472, 1, 0, 0, 0, 68, 480, 1, 0, 0, 0, 70, 485, 1, 0, 0, 0, 72, 493, 1, 0, 0, 0, 74, 501, 1, 0, 0, 0, 76, 509, 1, 0, 0, 0, 78, 514, 1, 0, 0, 0, 80, 558, 1, 0, 0, 0, 82, 562, 1, 0, 0, 0, 84, 566, 1, 0, 0, 0, 86, 571, 1, 0, 0, 0, 88, 573, 1, 0, 0, 0, 90, 576, 1, 0, 0, 0, 92, 585, 1, 0, 0, 0, 94, 593, 1, 0, 0, 0, 96, 596, 1, 0, 0, 0, 98, 599, 1, 0, 0, 0, 100, 616, 1, 0, 0, 0, 102, 618, 1, 0, 0, 0, 104, 624, 1, 0, 0, 0, 106, 628, 1, 0, 0, 0, 108, 631, 1, 0, 0, 0, 110, 639, 1, 0, 0, 0, 112, 643, 1, 0, 0, 0, 114, 647, 1, 0, 0, 0, 116, 650, 1, 0, 0, 0, 118, 655, 1, 0, 0, 0, 120, 659, 1, 0, 0, 0, 122, 661, 1, 0, 0, 0, 124, 663, 1, 0, 0, 0, 126, 666, 1, 0, 0, 0, 128, 670, 1, 0, 0, 0, 130, 673, 1, 0, 0, 0, 132, 693, 1, 0, 0, 0, 134, 697, 1, 0, 0, 0, 136, 710, 1, 0, 0, 0, 138, 715, 1, 0, 0, 0, 140, 721, 1, 0, 0, 0, 142, 726, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 737, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 747, 1, 0, 0, 0, 152, 757, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 200, 3, 62, 31, 0, 177, 200, 3, 8, 4, 0, 178, 200, 3, 94, 47, 0, 179, 200, 3, 88, 44, 0, 180, 200, 3, 64, 32, 0, 181, 200, 3, 90, 45, 0, 182, 200, 3, 96, 48, 0, 183, 200, 3, 98, 49, 0, 184, 200, 3, 102, 51, 0, 185, 200, 3, 104, 52, 0, 186, 200, 3, 130, 65, 0, 187, 200, 3, 106, 53, 0, 188, 200, 3, 140, 70, 0, 189, 200, 3, 134, 67, 0, 190, 200, 3, 150, 75, 0, 191, 192, 4, 3, 2, 0, 192, 200, 3, 138, 69, 0, 193, 194, 4, 3, 3, 0, 194, 200, 3, 136, 68, 0, 195, 196, 4, 3, 4, 0, 196, 200, 3, 148, 74, 0, 197, 198, 4, 3, 5, 0, 198, 200, 3, 152, 76, 0, 199, 176, 1, 0, 0, 0, 199, 177, 1, 0, 0, 0, 199, 178, 1, 0, 0, 0, 199, 179, 1, 0, 0, 0, 199, 180, 1, 0, 0, 0, 199, 181, 1, 0, 0, 0, 199, 182, 1, 0, 0, 0, 199, 183, 1, 0, 0, 0, 199, 184, 1, 0, 0, 0, 199, 185, 1, 0, 0, 0, 199, 186, 1, 0, 0, 0, 199, 187, 1, 0, 0, 0, 199, 188, 1, 0, 0, 0, 199, 189, 1, 0, 0, 0, 199, 190, 1, 0, 0, 0, 199, 191, 1, 0, 0, 0, 199, 193, 1, 0, 0, 0, 199, 195, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 17, 0, 0, 202, 203, 3, 10, 5, 0, 203, 9, 1, 0, 0, 0, 204, 205, 6, 5, -1, 0, 205, 206, 5, 52, 0, 0, 206, 234, 3, 10, 5, 8, 207, 234, 3, 16, 8, 0, 208, 234, 3, 12, 6, 0, 209, 211, 3, 16, 8, 0, 210, 212, 5, 52, 0, 0, 211, 210, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 214, 5, 47, 0, 0, 214, 215, 5, 51, 0, 0, 215, 220, 3, 16, 8, 0, 216, 217, 5, 42, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 5, 59, 0, 0, 224, 234, 1, 0, 0, 0, 225, 226, 3, 16, 8, 0, 226, 228, 5, 48, 0, 0, 227, 229, 5, 52, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 53, 0, 0, 231, 234, 1, 0, 0, 0, 232, 234, 3, 14, 7, 0, 233, 204, 1, 0, 0, 0, 233, 207, 1, 0, 0, 0, 233, 208, 1, 0, 0, 0, 233, 209, 1, 0, 0, 0, 233, 225, 1, 0, 0, 0, 233, 232, 1, 0, 0, 0, 234, 243, 1, 0, 0, 0, 235, 236, 10, 5, 0, 0, 236, 237, 5, 36, 0, 0, 237, 242, 3, 10, 5, 6, 238, 239, 10, 4, 0, 0, 239, 240, 5, 56, 0, 0, 240, 242, 3, 10, 5, 5, 241, 235, 1, 0, 0, 0, 241, 238, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 11, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 16, 8, 0, 247, 249, 5, 52, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 5, 50, 0, 0, 251, 252, 3, 120, 60, 0, 252, 277, 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, 58, 0, 0, 258, 259, 3, 120, 60, 0, 259, 277, 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, 50, 0, 0, 265, 266, 5, 51, 0, 0, 266, 271, 3, 120, 60, 0, 267, 268, 5, 42, 0, 0, 268, 270, 3, 120, 60, 0, 269, 267, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 274, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 5, 59, 0, 0, 275, 277, 1, 0, 0, 0, 276, 246, 1, 0, 0, 0, 276, 253, 1, 0, 0, 0, 276, 260, 1, 0, 0, 0, 277, 13, 1, 0, 0, 0, 278, 281, 3, 70, 35, 0, 279, 280, 5, 40, 0, 0, 280, 282, 3, 30, 15, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 284, 5, 41, 0, 0, 284, 285, 3, 80, 40, 0, 285, 15, 1, 0, 0, 0, 286, 292, 3, 18, 9, 0, 287, 288, 3, 18, 9, 0, 288, 289, 3, 122, 61, 0, 289, 290, 3, 18, 9, 0, 290, 292, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 292, 17, 1, 0, 0, 0, 293, 294, 6, 9, -1, 0, 294, 298, 3, 20, 10, 0, 295, 296, 7, 0, 0, 0, 296, 298, 3, 18, 9, 3, 297, 293, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 307, 1, 0, 0, 0, 299, 300, 10, 2, 0, 0, 300, 301, 7, 1, 0, 0, 301, 306, 3, 18, 9, 3, 302, 303, 10, 1, 0, 0, 303, 304, 7, 0, 0, 0, 304, 306, 3, 18, 9, 2, 305, 299, 1, 0, 0, 0, 305, 302, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 19, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 6, 10, -1, 0, 311, 319, 3, 80, 40, 0, 312, 319, 3, 70, 35, 0, 313, 319, 3, 22, 11, 0, 314, 315, 5, 51, 0, 0, 315, 316, 3, 10, 5, 0, 316, 317, 5, 59, 0, 0, 317, 319, 1, 0, 0, 0, 318, 310, 1, 0, 0, 0, 318, 312, 1, 0, 0, 0, 318, 313, 1, 0, 0, 0, 318, 314, 1, 0, 0, 0, 319, 325, 1, 0, 0, 0, 320, 321, 10, 1, 0, 0, 321, 322, 5, 40, 0, 0, 322, 324, 3, 30, 15, 0, 323, 320, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 21, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 3, 24, 12, 0, 329, 343, 5, 51, 0, 0, 330, 344, 5, 71, 0, 0, 331, 336, 3, 10, 5, 0, 332, 333, 5, 42, 0, 0, 333, 335, 3, 10, 5, 0, 334, 332, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 341, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 340, 5, 42, 0, 0, 340, 342, 3, 26, 13, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343, 330, 1, 0, 0, 0, 343, 331, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 5, 59, 0, 0, 346, 23, 1, 0, 0, 0, 347, 348, 3, 86, 43, 0, 348, 25, 1, 0, 0, 0, 349, 350, 5, 74, 0, 0, 350, 355, 3, 28, 14, 0, 351, 352, 5, 42, 0, 0, 352, 354, 3, 28, 14, 0, 353, 351, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 359, 5, 75, 0, 0, 359, 27, 1, 0, 0, 0, 360, 361, 3, 120, 60, 0, 361, 362, 5, 41, 0, 0, 362, 363, 3, 80, 40, 0, 363, 29, 1, 0, 0, 0, 364, 365, 3, 76, 38, 0, 365, 31, 1, 0, 0, 0, 366, 367, 5, 13, 0, 0, 367, 368, 3, 34, 17, 0, 368, 33, 1, 0, 0, 0, 369, 374, 3, 36, 18, 0, 370, 371, 5, 42, 0, 0, 371, 373, 3, 36, 18, 0, 372, 370, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 35, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 3, 70, 35, 0, 378, 379, 5, 38, 0, 0, 379, 381, 1, 0, 0, 0, 380, 377, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 3, 10, 5, 0, 383, 37, 1, 0, 0, 0, 384, 389, 3, 40, 20, 0, 385, 386, 5, 42, 0, 0, 386, 388, 3, 40, 20, 0, 387, 385, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 39, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 395, 3, 70, 35, 0, 393, 394, 5, 38, 0, 0, 394, 396, 3, 10, 5, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 41, 1, 0, 0, 0, 397, 398, 5, 7, 0, 0, 398, 403, 3, 44, 22, 0, 399, 400, 5, 42, 0, 0, 400, 402, 3, 44, 22, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 408, 3, 54, 27, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 43, 1, 0, 0, 0, 409, 410, 3, 46, 23, 0, 410, 411, 5, 41, 0, 0, 411, 412, 3, 50, 25, 0, 412, 419, 1, 0, 0, 0, 413, 414, 3, 50, 25, 0, 414, 415, 5, 40, 0, 0, 415, 416, 3, 48, 24, 0, 416, 419, 1, 0, 0, 0, 417, 419, 3, 52, 26, 0, 418, 409, 1, 0, 0, 0, 418, 413, 1, 0, 0, 0, 418, 417, 1, 0, 0, 0, 419, 45, 1, 0, 0, 0, 420, 421, 5, 90, 0, 0, 421, 47, 1, 0, 0, 0, 422, 423, 5, 90, 0, 0, 423, 49, 1, 0, 0, 0, 424, 425, 5, 90, 0, 0, 425, 51, 1, 0, 0, 0, 426, 427, 7, 2, 0, 0, 427, 53, 1, 0, 0, 0, 428, 431, 3, 56, 28, 0, 429, 431, 3, 58, 29, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 55, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 438, 5, 90, 0, 0, 434, 435, 5, 42, 0, 0, 435, 437, 5, 90, 0, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 57, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 79, 0, 0, 442, 443, 3, 56, 28, 0, 443, 444, 5, 80, 0, 0, 444, 59, 1, 0, 0, 0, 445, 446, 5, 22, 0, 0, 446, 451, 3, 44, 22, 0, 447, 448, 5, 42, 0, 0, 448, 450, 3, 44, 22, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 456, 3, 66, 33, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 458, 5, 39, 0, 0, 458, 460, 3, 34, 17, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 61, 1, 0, 0, 0, 461, 462, 5, 5, 0, 0, 462, 463, 3, 34, 17, 0, 463, 63, 1, 0, 0, 0, 464, 466, 5, 16, 0, 0, 465, 467, 3, 66, 33, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 469, 5, 39, 0, 0, 469, 471, 3, 34, 17, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 65, 1, 0, 0, 0, 472, 477, 3, 68, 34, 0, 473, 474, 5, 42, 0, 0, 474, 476, 3, 68, 34, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 67, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 483, 3, 36, 18, 0, 481, 482, 5, 17, 0, 0, 482, 484, 3, 10, 5, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 69, 1, 0, 0, 0, 485, 490, 3, 86, 43, 0, 486, 487, 5, 44, 0, 0, 487, 489, 3, 86, 43, 0, 488, 486, 1, 0, 0, 0, 489, 492, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 71, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 493, 498, 3, 78, 39, 0, 494, 495, 5, 44, 0, 0, 495, 497, 3, 78, 39, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 73, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 506, 3, 72, 36, 0, 502, 503, 5, 42, 0, 0, 503, 505, 3, 72, 36, 0, 504, 502, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 75, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 7, 3, 0, 0, 510, 77, 1, 0, 0, 0, 511, 515, 5, 94, 0, 0, 512, 515, 3, 82, 41, 0, 513, 515, 3, 84, 42, 0, 514, 511, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 79, 1, 0, 0, 0, 516, 559, 5, 53, 0, 0, 517, 518, 3, 118, 59, 0, 518, 519, 5, 81, 0, 0, 519, 559, 1, 0, 0, 0, 520, 559, 3, 116, 58, 0, 521, 559, 3, 118, 59, 0, 522, 559, 3, 112, 56, 0, 523, 559, 3, 82, 41, 0, 524, 559, 3, 120, 60, 0, 525, 526, 5, 79, 0, 0, 526, 531, 3, 114, 57, 0, 527, 528, 5, 42, 0, 0, 528, 530, 3, 114, 57, 0, 529, 527, 1, 0, 0, 0, 530, 533, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 534, 535, 5, 80, 0, 0, 535, 559, 1, 0, 0, 0, 536, 537, 5, 79, 0, 0, 537, 542, 3, 112, 56, 0, 538, 539, 5, 42, 0, 0, 539, 541, 3, 112, 56, 0, 540, 538, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 545, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 546, 5, 80, 0, 0, 546, 559, 1, 0, 0, 0, 547, 548, 5, 79, 0, 0, 548, 553, 3, 120, 60, 0, 549, 550, 5, 42, 0, 0, 550, 552, 3, 120, 60, 0, 551, 549, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 556, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 557, 5, 80, 0, 0, 557, 559, 1, 0, 0, 0, 558, 516, 1, 0, 0, 0, 558, 517, 1, 0, 0, 0, 558, 520, 1, 0, 0, 0, 558, 521, 1, 0, 0, 0, 558, 522, 1, 0, 0, 0, 558, 523, 1, 0, 0, 0, 558, 524, 1, 0, 0, 0, 558, 525, 1, 0, 0, 0, 558, 536, 1, 0, 0, 0, 558, 547, 1, 0, 0, 0, 559, 81, 1, 0, 0, 0, 560, 563, 5, 57, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 83, 1, 0, 0, 0, 564, 567, 5, 76, 0, 0, 565, 567, 5, 78, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 85, 1, 0, 0, 0, 568, 572, 3, 76, 38, 0, 569, 572, 3, 82, 41, 0, 570, 572, 3, 84, 42, 0, 571, 568, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 570, 1, 0, 0, 0, 572, 87, 1, 0, 0, 0, 573, 574, 5, 10, 0, 0, 574, 575, 3, 80, 40, 0, 575, 89, 1, 0, 0, 0, 576, 577, 5, 15, 0, 0, 577, 582, 3, 92, 46, 0, 578, 579, 5, 42, 0, 0, 579, 581, 3, 92, 46, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 91, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 587, 3, 10, 5, 0, 586, 588, 7, 4, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 590, 5, 54, 0, 0, 590, 592, 7, 5, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 93, 1, 0, 0, 0, 593, 594, 5, 9, 0, 0, 594, 595, 3, 74, 37, 0, 595, 95, 1, 0, 0, 0, 596, 597, 5, 3, 0, 0, 597, 598, 3, 74, 37, 0, 598, 97, 1, 0, 0, 0, 599, 600, 5, 12, 0, 0, 600, 605, 3, 100, 50, 0, 601, 602, 5, 42, 0, 0, 602, 604, 3, 100, 50, 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, 99, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 98, 0, 0, 610, 611, 3, 72, 36, 0, 611, 617, 1, 0, 0, 0, 612, 613, 3, 72, 36, 0, 613, 614, 5, 38, 0, 0, 614, 615, 3, 72, 36, 0, 615, 617, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 612, 1, 0, 0, 0, 617, 101, 1, 0, 0, 0, 618, 619, 5, 2, 0, 0, 619, 620, 3, 20, 10, 0, 620, 622, 3, 120, 60, 0, 621, 623, 3, 108, 54, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 103, 1, 0, 0, 0, 624, 625, 5, 8, 0, 0, 625, 626, 3, 20, 10, 0, 626, 627, 3, 120, 60, 0, 627, 105, 1, 0, 0, 0, 628, 629, 5, 11, 0, 0, 629, 630, 3, 70, 35, 0, 630, 107, 1, 0, 0, 0, 631, 636, 3, 110, 55, 0, 632, 633, 5, 42, 0, 0, 633, 635, 3, 110, 55, 0, 634, 632, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 109, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 3, 76, 38, 0, 640, 641, 5, 38, 0, 0, 641, 642, 3, 80, 40, 0, 642, 111, 1, 0, 0, 0, 643, 644, 7, 6, 0, 0, 644, 113, 1, 0, 0, 0, 645, 648, 3, 116, 58, 0, 646, 648, 3, 118, 59, 0, 647, 645, 1, 0, 0, 0, 647, 646, 1, 0, 0, 0, 648, 115, 1, 0, 0, 0, 649, 651, 7, 0, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 5, 35, 0, 0, 653, 117, 1, 0, 0, 0, 654, 656, 7, 0, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 5, 34, 0, 0, 658, 119, 1, 0, 0, 0, 659, 660, 5, 33, 0, 0, 660, 121, 1, 0, 0, 0, 661, 662, 7, 7, 0, 0, 662, 123, 1, 0, 0, 0, 663, 664, 5, 6, 0, 0, 664, 665, 3, 126, 63, 0, 665, 125, 1, 0, 0, 0, 666, 667, 5, 79, 0, 0, 667, 668, 3, 2, 1, 0, 668, 669, 5, 80, 0, 0, 669, 127, 1, 0, 0, 0, 670, 671, 5, 14, 0, 0, 671, 672, 5, 112, 0, 0, 672, 129, 1, 0, 0, 0, 673, 674, 5, 4, 0, 0, 674, 677, 5, 102, 0, 0, 675, 676, 5, 55, 0, 0, 676, 678, 3, 72, 36, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 688, 1, 0, 0, 0, 679, 680, 5, 61, 0, 0, 680, 685, 3, 132, 66, 0, 681, 682, 5, 42, 0, 0, 682, 684, 3, 132, 66, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 131, 1, 0, 0, 0, 690, 691, 3, 72, 36, 0, 691, 692, 5, 38, 0, 0, 692, 694, 1, 0, 0, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 3, 72, 36, 0, 696, 133, 1, 0, 0, 0, 697, 698, 5, 19, 0, 0, 698, 701, 3, 70, 35, 0, 699, 700, 5, 55, 0, 0, 700, 702, 3, 70, 35, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 708, 1, 0, 0, 0, 703, 704, 5, 98, 0, 0, 704, 705, 3, 70, 35, 0, 705, 706, 5, 42, 0, 0, 706, 707, 3, 70, 35, 0, 707, 709, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 135, 1, 0, 0, 0, 710, 711, 5, 21, 0, 0, 711, 712, 3, 44, 22, 0, 712, 713, 5, 55, 0, 0, 713, 714, 3, 74, 37, 0, 714, 137, 1, 0, 0, 0, 715, 716, 5, 20, 0, 0, 716, 719, 3, 66, 33, 0, 717, 718, 5, 39, 0, 0, 718, 720, 3, 34, 17, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 139, 1, 0, 0, 0, 721, 722, 7, 8, 0, 0, 722, 723, 5, 126, 0, 0, 723, 724, 3, 142, 71, 0, 724, 725, 3, 144, 72, 0, 725, 141, 1, 0, 0, 0, 726, 727, 3, 44, 22, 0, 727, 143, 1, 0, 0, 0, 728, 729, 5, 55, 0, 0, 729, 734, 3, 146, 73, 0, 730, 731, 5, 42, 0, 0, 731, 733, 3, 146, 73, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 3, 16, 8, 0, 738, 147, 1, 0, 0, 0, 739, 740, 5, 23, 0, 0, 740, 741, 3, 80, 40, 0, 741, 742, 5, 55, 0, 0, 742, 745, 3, 38, 19, 0, 743, 744, 5, 61, 0, 0, 744, 746, 3, 86, 43, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 149, 1, 0, 0, 0, 747, 751, 5, 1, 0, 0, 748, 749, 3, 70, 35, 0, 749, 750, 5, 38, 0, 0, 750, 752, 1, 0, 0, 0, 751, 748, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 3, 20, 10, 0, 754, 755, 5, 61, 0, 0, 755, 756, 3, 86, 43, 0, 756, 151, 1, 0, 0, 0, 757, 758, 5, 24, 0, 0, 758, 759, 3, 116, 58, 0, 759, 153, 1, 0, 0, 0, 72, 165, 174, 199, 211, 220, 228, 233, 241, 243, 248, 255, 262, 271, 276, 281, 291, 297, 305, 307, 318, 325, 336, 341, 343, 355, 374, 380, 389, 395, 403, 407, 418, 430, 438, 451, 455, 459, 466, 470, 477, 483, 490, 498, 506, 514, 531, 542, 553, 558, 562, 566, 571, 582, 587, 591, 605, 616, 622, 636, 647, 650, 655, 677, 685, 688, 693, 701, 708, 719, 734, 745, 751]
\ 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 c08c7e6f4e7be..7042651a4000f 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
@@ -6620,14 +6620,10 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce
@SuppressWarnings("CheckReturnValue")
public static class SampleCommandContext extends ParserRuleContext {
public DecimalValueContext probability;
- public IntegerValueContext seed;
public TerminalNode DEV_SAMPLE() { return getToken(EsqlBaseParser.DEV_SAMPLE, 0); }
public DecimalValueContext decimalValue() {
return getRuleContext(DecimalValueContext.class,0);
}
- public IntegerValueContext integerValue() {
- return getRuleContext(IntegerValueContext.class,0);
- }
@SuppressWarnings("this-escape")
public SampleCommandContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -6658,16 +6654,6 @@ public final SampleCommandContext sampleCommand() throws RecognitionException {
match(DEV_SAMPLE);
setState(758);
((SampleCommandContext)_localctx).probability = decimalValue();
- setState(760);
- _errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) {
- case 1:
- {
- setState(759);
- ((SampleCommandContext)_localctx).seed = integerValue();
- }
- break;
- }
}
}
catch (RecognitionException re) {
@@ -6752,7 +6738,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
}
public static final String _serializedATN =
- "\u0004\u0001\u008b\u02fb\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008b\u02f9\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"+
@@ -6848,387 +6834,384 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"F\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001H\u0001"+
"H\u0005H\u02dd\bH\nH\fH\u02e0\tH\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+
"J\u0001J\u0001J\u0003J\u02ea\bJ\u0001K\u0001K\u0001K\u0001K\u0003K\u02f0"+
- "\bK\u0001K\u0001K\u0001K\u0001K\u0001L\u0001L\u0001L\u0003L\u02f9\bL\u0001"+
- "L\u0000\u0004\u0002\n\u0012\u0014M\u0000\u0002\u0004\u0006\b\n\f\u000e"+
- "\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDF"+
- "HJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c"+
- "\u008e\u0090\u0092\u0094\u0096\u0098\u0000\t\u0001\u0000EF\u0001\u0000"+
- "GI\u0002\u0000!!ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000..11\u0002"+
- "\u0000--<<\u0002\u0000>>@D\u0002\u0000\u0012\u0012\u001a\u001b\u031d\u0000"+
- "\u009a\u0001\u0000\u0000\u0000\u0002\u009d\u0001\u0000\u0000\u0000\u0004"+
- "\u00ae\u0001\u0000\u0000\u0000\u0006\u00c7\u0001\u0000\u0000\u0000\b\u00c9"+
- "\u0001\u0000\u0000\u0000\n\u00e9\u0001\u0000\u0000\u0000\f\u0114\u0001"+
- "\u0000\u0000\u0000\u000e\u0116\u0001\u0000\u0000\u0000\u0010\u0123\u0001"+
- "\u0000\u0000\u0000\u0012\u0129\u0001\u0000\u0000\u0000\u0014\u013e\u0001"+
- "\u0000\u0000\u0000\u0016\u0148\u0001\u0000\u0000\u0000\u0018\u015b\u0001"+
- "\u0000\u0000\u0000\u001a\u015d\u0001\u0000\u0000\u0000\u001c\u0168\u0001"+
- "\u0000\u0000\u0000\u001e\u016c\u0001\u0000\u0000\u0000 \u016e\u0001\u0000"+
- "\u0000\u0000\"\u0171\u0001\u0000\u0000\u0000$\u017c\u0001\u0000\u0000"+
- "\u0000&\u0180\u0001\u0000\u0000\u0000(\u0188\u0001\u0000\u0000\u0000*"+
- "\u018d\u0001\u0000\u0000\u0000,\u01a2\u0001\u0000\u0000\u0000.\u01a4\u0001"+
- "\u0000\u0000\u00000\u01a6\u0001\u0000\u0000\u00002\u01a8\u0001\u0000\u0000"+
- "\u00004\u01aa\u0001\u0000\u0000\u00006\u01ae\u0001\u0000\u0000\u00008"+
- "\u01b0\u0001\u0000\u0000\u0000:\u01b9\u0001\u0000\u0000\u0000<\u01bd\u0001"+
- "\u0000\u0000\u0000>\u01cd\u0001\u0000\u0000\u0000@\u01d0\u0001\u0000\u0000"+
- "\u0000B\u01d8\u0001\u0000\u0000\u0000D\u01e0\u0001\u0000\u0000\u0000F"+
- "\u01e5\u0001\u0000\u0000\u0000H\u01ed\u0001\u0000\u0000\u0000J\u01f5\u0001"+
- "\u0000\u0000\u0000L\u01fd\u0001\u0000\u0000\u0000N\u0202\u0001\u0000\u0000"+
- "\u0000P\u022e\u0001\u0000\u0000\u0000R\u0232\u0001\u0000\u0000\u0000T"+
- "\u0236\u0001\u0000\u0000\u0000V\u023b\u0001\u0000\u0000\u0000X\u023d\u0001"+
- "\u0000\u0000\u0000Z\u0240\u0001\u0000\u0000\u0000\\\u0249\u0001\u0000"+
- "\u0000\u0000^\u0251\u0001\u0000\u0000\u0000`\u0254\u0001\u0000\u0000\u0000"+
- "b\u0257\u0001\u0000\u0000\u0000d\u0268\u0001\u0000\u0000\u0000f\u026a"+
- "\u0001\u0000\u0000\u0000h\u0270\u0001\u0000\u0000\u0000j\u0274\u0001\u0000"+
- "\u0000\u0000l\u0277\u0001\u0000\u0000\u0000n\u027f\u0001\u0000\u0000\u0000"+
- "p\u0283\u0001\u0000\u0000\u0000r\u0287\u0001\u0000\u0000\u0000t\u028a"+
- "\u0001\u0000\u0000\u0000v\u028f\u0001\u0000\u0000\u0000x\u0293\u0001\u0000"+
- "\u0000\u0000z\u0295\u0001\u0000\u0000\u0000|\u0297\u0001\u0000\u0000\u0000"+
- "~\u029a\u0001\u0000\u0000\u0000\u0080\u029e\u0001\u0000\u0000\u0000\u0082"+
- "\u02a1\u0001\u0000\u0000\u0000\u0084\u02b5\u0001\u0000\u0000\u0000\u0086"+
- "\u02b9\u0001\u0000\u0000\u0000\u0088\u02c6\u0001\u0000\u0000\u0000\u008a"+
- "\u02cb\u0001\u0000\u0000\u0000\u008c\u02d1\u0001\u0000\u0000\u0000\u008e"+
- "\u02d6\u0001\u0000\u0000\u0000\u0090\u02d8\u0001\u0000\u0000\u0000\u0092"+
- "\u02e1\u0001\u0000\u0000\u0000\u0094\u02e3\u0001\u0000\u0000\u0000\u0096"+
- "\u02eb\u0001\u0000\u0000\u0000\u0098\u02f5\u0001\u0000\u0000\u0000\u009a"+
- "\u009b\u0003\u0002\u0001\u0000\u009b\u009c\u0005\u0000\u0000\u0001\u009c"+
- "\u0001\u0001\u0000\u0000\u0000\u009d\u009e\u0006\u0001\uffff\uffff\u0000"+
- "\u009e\u009f\u0003\u0004\u0002\u0000\u009f\u00a5\u0001\u0000\u0000\u0000"+
- "\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2\u0005 \u0000\u0000\u00a2"+
- "\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001\u0000\u0000\u0000\u00a4"+
- "\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000\u0000\u00a5"+
- "\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001\u0000\u0000\u0000\u00a7"+
- "\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003|>\u0000\u00a9\u00af\u0003"+
- "*\u0015\u0000\u00aa\u00af\u0003 \u0010\u0000\u00ab\u00af\u0003\u0080@"+
- "\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad\u00af\u0003<\u001e\u0000"+
- "\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000"+
- "\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000\u0000"+
- "\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005\u0001\u0000\u0000\u0000"+
- "\u00b0\u00c8\u0003>\u001f\u0000\u00b1\u00c8\u0003\b\u0004\u0000\u00b2"+
- "\u00c8\u0003^/\u0000\u00b3\u00c8\u0003X,\u0000\u00b4\u00c8\u0003@ \u0000"+
- "\u00b5\u00c8\u0003Z-\u0000\u00b6\u00c8\u0003`0\u0000\u00b7\u00c8\u0003"+
- "b1\u0000\u00b8\u00c8\u0003f3\u0000\u00b9\u00c8\u0003h4\u0000\u00ba\u00c8"+
- "\u0003\u0082A\u0000\u00bb\u00c8\u0003j5\u0000\u00bc\u00c8\u0003\u008c"+
- "F\u0000\u00bd\u00c8\u0003\u0086C\u0000\u00be\u00c8\u0003\u0096K\u0000"+
- "\u00bf\u00c0\u0004\u0003\u0002\u0000\u00c0\u00c8\u0003\u008aE\u0000\u00c1"+
- "\u00c2\u0004\u0003\u0003\u0000\u00c2\u00c8\u0003\u0088D\u0000\u00c3\u00c4"+
- "\u0004\u0003\u0004\u0000\u00c4\u00c8\u0003\u0094J\u0000\u00c5\u00c6\u0004"+
- "\u0003\u0005\u0000\u00c6\u00c8\u0003\u0098L\u0000\u00c7\u00b0\u0001\u0000"+
- "\u0000\u0000\u00c7\u00b1\u0001\u0000\u0000\u0000\u00c7\u00b2\u0001\u0000"+
- "\u0000\u0000\u00c7\u00b3\u0001\u0000\u0000\u0000\u00c7\u00b4\u0001\u0000"+
- "\u0000\u0000\u00c7\u00b5\u0001\u0000\u0000\u0000\u00c7\u00b6\u0001\u0000"+
- "\u0000\u0000\u00c7\u00b7\u0001\u0000\u0000\u0000\u00c7\u00b8\u0001\u0000"+
- "\u0000\u0000\u00c7\u00b9\u0001\u0000\u0000\u0000\u00c7\u00ba\u0001\u0000"+
- "\u0000\u0000\u00c7\u00bb\u0001\u0000\u0000\u0000\u00c7\u00bc\u0001\u0000"+
- "\u0000\u0000\u00c7\u00bd\u0001\u0000\u0000\u0000\u00c7\u00be\u0001\u0000"+
- "\u0000\u0000\u00c7\u00bf\u0001\u0000\u0000\u0000\u00c7\u00c1\u0001\u0000"+
- "\u0000\u0000\u00c7\u00c3\u0001\u0000\u0000\u0000\u00c7\u00c5\u0001\u0000"+
- "\u0000\u0000\u00c8\u0007\u0001\u0000\u0000\u0000\u00c9\u00ca\u0005\u0011"+
- "\u0000\u0000\u00ca\u00cb\u0003\n\u0005\u0000\u00cb\t\u0001\u0000\u0000"+
- "\u0000\u00cc\u00cd\u0006\u0005\uffff\uffff\u0000\u00cd\u00ce\u00054\u0000"+
- "\u0000\u00ce\u00ea\u0003\n\u0005\b\u00cf\u00ea\u0003\u0010\b\u0000\u00d0"+
- "\u00ea\u0003\f\u0006\u0000\u00d1\u00d3\u0003\u0010\b\u0000\u00d2\u00d4"+
- "\u00054\u0000\u0000\u00d3\u00d2\u0001\u0000\u0000\u0000\u00d3\u00d4\u0001"+
- "\u0000\u0000\u0000\u00d4\u00d5\u0001\u0000\u0000\u0000\u00d5\u00d6\u0005"+
- "/\u0000\u0000\u00d6\u00d7\u00053\u0000\u0000\u00d7\u00dc\u0003\u0010\b"+
- "\u0000\u00d8\u00d9\u0005*\u0000\u0000\u00d9\u00db\u0003\u0010\b\u0000"+
- "\u00da\u00d8\u0001\u0000\u0000\u0000\u00db\u00de\u0001\u0000\u0000\u0000"+
- "\u00dc\u00da\u0001\u0000\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000\u0000"+
- "\u00dd\u00df\u0001\u0000\u0000\u0000\u00de\u00dc\u0001\u0000\u0000\u0000"+
- "\u00df\u00e0\u0005;\u0000\u0000\u00e0\u00ea\u0001\u0000\u0000\u0000\u00e1"+
- "\u00e2\u0003\u0010\b\u0000\u00e2\u00e4\u00050\u0000\u0000\u00e3\u00e5"+
- "\u00054\u0000\u0000\u00e4\u00e3\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001"+
- "\u0000\u0000\u0000\u00e5\u00e6\u0001\u0000\u0000\u0000\u00e6\u00e7\u0005"+
- "5\u0000\u0000\u00e7\u00ea\u0001\u0000\u0000\u0000\u00e8\u00ea\u0003\u000e"+
- "\u0007\u0000\u00e9\u00cc\u0001\u0000\u0000\u0000\u00e9\u00cf\u0001\u0000"+
- "\u0000\u0000\u00e9\u00d0\u0001\u0000\u0000\u0000\u00e9\u00d1\u0001\u0000"+
- "\u0000\u0000\u00e9\u00e1\u0001\u0000\u0000\u0000\u00e9\u00e8\u0001\u0000"+
- "\u0000\u0000\u00ea\u00f3\u0001\u0000\u0000\u0000\u00eb\u00ec\n\u0005\u0000"+
- "\u0000\u00ec\u00ed\u0005$\u0000\u0000\u00ed\u00f2\u0003\n\u0005\u0006"+
- "\u00ee\u00ef\n\u0004\u0000\u0000\u00ef\u00f0\u00058\u0000\u0000\u00f0"+
- "\u00f2\u0003\n\u0005\u0005\u00f1\u00eb\u0001\u0000\u0000\u0000\u00f1\u00ee"+
- "\u0001\u0000\u0000\u0000\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3\u00f1"+
- "\u0001\u0000\u0000\u0000\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4\u000b"+
- "\u0001\u0000\u0000\u0000\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6\u00f8"+
- "\u0003\u0010\b\u0000\u00f7\u00f9\u00054\u0000\u0000\u00f8\u00f7\u0001"+
- "\u0000\u0000\u0000\u00f8\u00f9\u0001\u0000\u0000\u0000\u00f9\u00fa\u0001"+
- "\u0000\u0000\u0000\u00fa\u00fb\u00052\u0000\u0000\u00fb\u00fc\u0003x<"+
- "\u0000\u00fc\u0115\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\u0005:\u0000\u0000\u0102\u0103\u0003x<\u0000\u0103\u0115\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\u00052\u0000"+
- "\u0000\u0109\u010a\u00053\u0000\u0000\u010a\u010f\u0003x<\u0000\u010b"+
- "\u010c\u0005*\u0000\u0000\u010c\u010e\u0003x<\u0000\u010d\u010b\u0001"+
- "\u0000\u0000\u0000\u010e\u0111\u0001\u0000\u0000\u0000\u010f\u010d\u0001"+
- "\u0000\u0000\u0000\u010f\u0110\u0001\u0000\u0000\u0000\u0110\u0112\u0001"+
- "\u0000\u0000\u0000\u0111\u010f\u0001\u0000\u0000\u0000\u0112\u0113\u0005"+
- ";\u0000\u0000\u0113\u0115\u0001\u0000\u0000\u0000\u0114\u00f6\u0001\u0000"+
- "\u0000\u0000\u0114\u00fd\u0001\u0000\u0000\u0000\u0114\u0104\u0001\u0000"+
- "\u0000\u0000\u0115\r\u0001\u0000\u0000\u0000\u0116\u0119\u0003F#\u0000"+
- "\u0117\u0118\u0005(\u0000\u0000\u0118\u011a\u0003\u001e\u000f\u0000\u0119"+
- "\u0117\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a"+
- "\u011b\u0001\u0000\u0000\u0000\u011b\u011c\u0005)\u0000\u0000\u011c\u011d"+
- "\u0003P(\u0000\u011d\u000f\u0001\u0000\u0000\u0000\u011e\u0124\u0003\u0012"+
- "\t\u0000\u011f\u0120\u0003\u0012\t\u0000\u0120\u0121\u0003z=\u0000\u0121"+
- "\u0122\u0003\u0012\t\u0000\u0122\u0124\u0001\u0000\u0000\u0000\u0123\u011e"+
- "\u0001\u0000\u0000\u0000\u0123\u011f\u0001\u0000\u0000\u0000\u0124\u0011"+
- "\u0001\u0000\u0000\u0000\u0125\u0126\u0006\t\uffff\uffff\u0000\u0126\u012a"+
- "\u0003\u0014\n\u0000\u0127\u0128\u0007\u0000\u0000\u0000\u0128\u012a\u0003"+
- "\u0012\t\u0003\u0129\u0125\u0001\u0000\u0000\u0000\u0129\u0127\u0001\u0000"+
- "\u0000\u0000\u012a\u0133\u0001\u0000\u0000\u0000\u012b\u012c\n\u0002\u0000"+
- "\u0000\u012c\u012d\u0007\u0001\u0000\u0000\u012d\u0132\u0003\u0012\t\u0003"+
- "\u012e\u012f\n\u0001\u0000\u0000\u012f\u0130\u0007\u0000\u0000\u0000\u0130"+
- "\u0132\u0003\u0012\t\u0002\u0131\u012b\u0001\u0000\u0000\u0000\u0131\u012e"+
- "\u0001\u0000\u0000\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133\u0131"+
- "\u0001\u0000\u0000\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134\u0013"+
- "\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u0137"+
- "\u0006\n\uffff\uffff\u0000\u0137\u013f\u0003P(\u0000\u0138\u013f\u0003"+
- "F#\u0000\u0139\u013f\u0003\u0016\u000b\u0000\u013a\u013b\u00053\u0000"+
- "\u0000\u013b\u013c\u0003\n\u0005\u0000\u013c\u013d\u0005;\u0000\u0000"+
- "\u013d\u013f\u0001\u0000\u0000\u0000\u013e\u0136\u0001\u0000\u0000\u0000"+
- "\u013e\u0138\u0001\u0000\u0000\u0000\u013e\u0139\u0001\u0000\u0000\u0000"+
- "\u013e\u013a\u0001\u0000\u0000\u0000\u013f\u0145\u0001\u0000\u0000\u0000"+
- "\u0140\u0141\n\u0001\u0000\u0000\u0141\u0142\u0005(\u0000\u0000\u0142"+
- "\u0144\u0003\u001e\u000f\u0000\u0143\u0140\u0001\u0000\u0000\u0000\u0144"+
- "\u0147\u0001\u0000\u0000\u0000\u0145\u0143\u0001\u0000\u0000\u0000\u0145"+
- "\u0146\u0001\u0000\u0000\u0000\u0146\u0015\u0001\u0000\u0000\u0000\u0147"+
- "\u0145\u0001\u0000\u0000\u0000\u0148\u0149\u0003\u0018\f\u0000\u0149\u0157"+
- "\u00053\u0000\u0000\u014a\u0158\u0005G\u0000\u0000\u014b\u0150\u0003\n"+
- "\u0005\u0000\u014c\u014d\u0005*\u0000\u0000\u014d\u014f\u0003\n\u0005"+
- "\u0000\u014e\u014c\u0001\u0000\u0000\u0000\u014f\u0152\u0001\u0000\u0000"+
- "\u0000\u0150\u014e\u0001\u0000\u0000\u0000\u0150\u0151\u0001\u0000\u0000"+
- "\u0000\u0151\u0155\u0001\u0000\u0000\u0000\u0152\u0150\u0001\u0000\u0000"+
- "\u0000\u0153\u0154\u0005*\u0000\u0000\u0154\u0156\u0003\u001a\r\u0000"+
- "\u0155\u0153\u0001\u0000\u0000\u0000\u0155\u0156\u0001\u0000\u0000\u0000"+
- "\u0156\u0158\u0001\u0000\u0000\u0000\u0157\u014a\u0001\u0000\u0000\u0000"+
- "\u0157\u014b\u0001\u0000\u0000\u0000\u0157\u0158\u0001\u0000\u0000\u0000"+
- "\u0158\u0159\u0001\u0000\u0000\u0000\u0159\u015a\u0005;\u0000\u0000\u015a"+
- "\u0017\u0001\u0000\u0000\u0000\u015b\u015c\u0003V+\u0000\u015c\u0019\u0001"+
- "\u0000\u0000\u0000\u015d\u015e\u0005J\u0000\u0000\u015e\u0163\u0003\u001c"+
- "\u000e\u0000\u015f\u0160\u0005*\u0000\u0000\u0160\u0162\u0003\u001c\u000e"+
- "\u0000\u0161\u015f\u0001\u0000\u0000\u0000\u0162\u0165\u0001\u0000\u0000"+
- "\u0000\u0163\u0161\u0001\u0000\u0000\u0000\u0163\u0164\u0001\u0000\u0000"+
- "\u0000\u0164\u0166\u0001\u0000\u0000\u0000\u0165\u0163\u0001\u0000\u0000"+
- "\u0000\u0166\u0167\u0005K\u0000\u0000\u0167\u001b\u0001\u0000\u0000\u0000"+
- "\u0168\u0169\u0003x<\u0000\u0169\u016a\u0005)\u0000\u0000\u016a\u016b"+
- "\u0003P(\u0000\u016b\u001d\u0001\u0000\u0000\u0000\u016c\u016d\u0003L"+
- "&\u0000\u016d\u001f\u0001\u0000\u0000\u0000\u016e\u016f\u0005\r\u0000"+
- "\u0000\u016f\u0170\u0003\"\u0011\u0000\u0170!\u0001\u0000\u0000\u0000"+
- "\u0171\u0176\u0003$\u0012\u0000\u0172\u0173\u0005*\u0000\u0000\u0173\u0175"+
- "\u0003$\u0012\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0175\u0178\u0001"+
- "\u0000\u0000\u0000\u0176\u0174\u0001\u0000\u0000\u0000\u0176\u0177\u0001"+
- "\u0000\u0000\u0000\u0177#\u0001\u0000\u0000\u0000\u0178\u0176\u0001\u0000"+
- "\u0000\u0000\u0179\u017a\u0003F#\u0000\u017a\u017b\u0005&\u0000\u0000"+
- "\u017b\u017d\u0001\u0000\u0000\u0000\u017c\u0179\u0001\u0000\u0000\u0000"+
- "\u017c\u017d\u0001\u0000\u0000\u0000\u017d\u017e\u0001\u0000\u0000\u0000"+
- "\u017e\u017f\u0003\n\u0005\u0000\u017f%\u0001\u0000\u0000\u0000\u0180"+
- "\u0185\u0003(\u0014\u0000\u0181\u0182\u0005*\u0000\u0000\u0182\u0184\u0003"+
- "(\u0014\u0000\u0183\u0181\u0001\u0000\u0000\u0000\u0184\u0187\u0001\u0000"+
- "\u0000\u0000\u0185\u0183\u0001\u0000\u0000\u0000\u0185\u0186\u0001\u0000"+
- "\u0000\u0000\u0186\'\u0001\u0000\u0000\u0000\u0187\u0185\u0001\u0000\u0000"+
- "\u0000\u0188\u018b\u0003F#\u0000\u0189\u018a\u0005&\u0000\u0000\u018a"+
- "\u018c\u0003\n\u0005\u0000\u018b\u0189\u0001\u0000\u0000\u0000\u018b\u018c"+
- "\u0001\u0000\u0000\u0000\u018c)\u0001\u0000\u0000\u0000\u018d\u018e\u0005"+
- "\u0007\u0000\u0000\u018e\u0193\u0003,\u0016\u0000\u018f\u0190\u0005*\u0000"+
- "\u0000\u0190\u0192\u0003,\u0016\u0000\u0191\u018f\u0001\u0000\u0000\u0000"+
- "\u0192\u0195\u0001\u0000\u0000\u0000\u0193\u0191\u0001\u0000\u0000\u0000"+
- "\u0193\u0194\u0001\u0000\u0000\u0000\u0194\u0197\u0001\u0000\u0000\u0000"+
- "\u0195\u0193\u0001\u0000\u0000\u0000\u0196\u0198\u00036\u001b\u0000\u0197"+
- "\u0196\u0001\u0000\u0000\u0000\u0197\u0198\u0001\u0000\u0000\u0000\u0198"+
- "+\u0001\u0000\u0000\u0000\u0199\u019a\u0003.\u0017\u0000\u019a\u019b\u0005"+
- ")\u0000\u0000\u019b\u019c\u00032\u0019\u0000\u019c\u01a3\u0001\u0000\u0000"+
- "\u0000\u019d\u019e\u00032\u0019\u0000\u019e\u019f\u0005(\u0000\u0000\u019f"+
- "\u01a0\u00030\u0018\u0000\u01a0\u01a3\u0001\u0000\u0000\u0000\u01a1\u01a3"+
- "\u00034\u001a\u0000\u01a2\u0199\u0001\u0000\u0000\u0000\u01a2\u019d\u0001"+
- "\u0000\u0000\u0000\u01a2\u01a1\u0001\u0000\u0000\u0000\u01a3-\u0001\u0000"+
- "\u0000\u0000\u01a4\u01a5\u0005Z\u0000\u0000\u01a5/\u0001\u0000\u0000\u0000"+
- "\u01a6\u01a7\u0005Z\u0000\u0000\u01a71\u0001\u0000\u0000\u0000\u01a8\u01a9"+
- "\u0005Z\u0000\u0000\u01a93\u0001\u0000\u0000\u0000\u01aa\u01ab\u0007\u0002"+
- "\u0000\u0000\u01ab5\u0001\u0000\u0000\u0000\u01ac\u01af\u00038\u001c\u0000"+
- "\u01ad\u01af\u0003:\u001d\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01ae"+
- "\u01ad\u0001\u0000\u0000\u0000\u01af7\u0001\u0000\u0000\u0000\u01b0\u01b1"+
- "\u0005Y\u0000\u0000\u01b1\u01b6\u0005Z\u0000\u0000\u01b2\u01b3\u0005*"+
- "\u0000\u0000\u01b3\u01b5\u0005Z\u0000\u0000\u01b4\u01b2\u0001\u0000\u0000"+
- "\u0000\u01b5\u01b8\u0001\u0000\u0000\u0000\u01b6\u01b4\u0001\u0000\u0000"+
- "\u0000\u01b6\u01b7\u0001\u0000\u0000\u0000\u01b79\u0001\u0000\u0000\u0000"+
- "\u01b8\u01b6\u0001\u0000\u0000\u0000\u01b9\u01ba\u0005O\u0000\u0000\u01ba"+
- "\u01bb\u00038\u001c\u0000\u01bb\u01bc\u0005P\u0000\u0000\u01bc;\u0001"+
- "\u0000\u0000\u0000\u01bd\u01be\u0005\u0016\u0000\u0000\u01be\u01c3\u0003"+
- ",\u0016\u0000\u01bf\u01c0\u0005*\u0000\u0000\u01c0\u01c2\u0003,\u0016"+
- "\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000\u01c2\u01c5\u0001\u0000\u0000"+
- "\u0000\u01c3\u01c1\u0001\u0000\u0000\u0000\u01c3\u01c4\u0001\u0000\u0000"+
- "\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5\u01c3\u0001\u0000\u0000"+
- "\u0000\u01c6\u01c8\u0003B!\u0000\u01c7\u01c6\u0001\u0000\u0000\u0000\u01c7"+
- "\u01c8\u0001\u0000\u0000\u0000\u01c8\u01cb\u0001\u0000\u0000\u0000\u01c9"+
- "\u01ca\u0005\'\u0000\u0000\u01ca\u01cc\u0003\"\u0011\u0000\u01cb\u01c9"+
- "\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000\u0000\u0000\u01cc=\u0001"+
- "\u0000\u0000\u0000\u01cd\u01ce\u0005\u0005\u0000\u0000\u01ce\u01cf\u0003"+
- "\"\u0011\u0000\u01cf?\u0001\u0000\u0000\u0000\u01d0\u01d2\u0005\u0010"+
- "\u0000\u0000\u01d1\u01d3\u0003B!\u0000\u01d2\u01d1\u0001\u0000\u0000\u0000"+
- "\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3\u01d6\u0001\u0000\u0000\u0000"+
- "\u01d4\u01d5\u0005\'\u0000\u0000\u01d5\u01d7\u0003\"\u0011\u0000\u01d6"+
- "\u01d4\u0001\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7"+
- "A\u0001\u0000\u0000\u0000\u01d8\u01dd\u0003D\"\u0000\u01d9\u01da\u0005"+
- "*\u0000\u0000\u01da\u01dc\u0003D\"\u0000\u01db\u01d9\u0001\u0000\u0000"+
- "\u0000\u01dc\u01df\u0001\u0000\u0000\u0000\u01dd\u01db\u0001\u0000\u0000"+
- "\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01deC\u0001\u0000\u0000\u0000"+
- "\u01df\u01dd\u0001\u0000\u0000\u0000\u01e0\u01e3\u0003$\u0012\u0000\u01e1"+
- "\u01e2\u0005\u0011\u0000\u0000\u01e2\u01e4\u0003\n\u0005\u0000\u01e3\u01e1"+
- "\u0001\u0000\u0000\u0000\u01e3\u01e4\u0001\u0000\u0000\u0000\u01e4E\u0001"+
- "\u0000\u0000\u0000\u01e5\u01ea\u0003V+\u0000\u01e6\u01e7\u0005,\u0000"+
- "\u0000\u01e7\u01e9\u0003V+\u0000\u01e8\u01e6\u0001\u0000\u0000\u0000\u01e9"+
- "\u01ec\u0001\u0000\u0000\u0000\u01ea\u01e8\u0001\u0000\u0000\u0000\u01ea"+
- "\u01eb\u0001\u0000\u0000\u0000\u01ebG\u0001\u0000\u0000\u0000\u01ec\u01ea"+
- "\u0001\u0000\u0000\u0000\u01ed\u01f2\u0003N\'\u0000\u01ee\u01ef\u0005"+
- ",\u0000\u0000\u01ef\u01f1\u0003N\'\u0000\u01f0\u01ee\u0001\u0000\u0000"+
- "\u0000\u01f1\u01f4\u0001\u0000\u0000\u0000\u01f2\u01f0\u0001\u0000\u0000"+
- "\u0000\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3I\u0001\u0000\u0000\u0000"+
- "\u01f4\u01f2\u0001\u0000\u0000\u0000\u01f5\u01fa\u0003H$\u0000\u01f6\u01f7"+
- "\u0005*\u0000\u0000\u01f7\u01f9\u0003H$\u0000\u01f8\u01f6\u0001\u0000"+
- "\u0000\u0000\u01f9\u01fc\u0001\u0000\u0000\u0000\u01fa\u01f8\u0001\u0000"+
- "\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000\u01fbK\u0001\u0000\u0000"+
- "\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fd\u01fe\u0007\u0003\u0000"+
- "\u0000\u01feM\u0001\u0000\u0000\u0000\u01ff\u0203\u0005^\u0000\u0000\u0200"+
- "\u0203\u0003R)\u0000\u0201\u0203\u0003T*\u0000\u0202\u01ff\u0001\u0000"+
- "\u0000\u0000\u0202\u0200\u0001\u0000\u0000\u0000\u0202\u0201\u0001\u0000"+
- "\u0000\u0000\u0203O\u0001\u0000\u0000\u0000\u0204\u022f\u00055\u0000\u0000"+
- "\u0205\u0206\u0003v;\u0000\u0206\u0207\u0005Q\u0000\u0000\u0207\u022f"+
- "\u0001\u0000\u0000\u0000\u0208\u022f\u0003t:\u0000\u0209\u022f\u0003v"+
- ";\u0000\u020a\u022f\u0003p8\u0000\u020b\u022f\u0003R)\u0000\u020c\u022f"+
- "\u0003x<\u0000\u020d\u020e\u0005O\u0000\u0000\u020e\u0213\u0003r9\u0000"+
- "\u020f\u0210\u0005*\u0000\u0000\u0210\u0212\u0003r9\u0000\u0211\u020f"+
- "\u0001\u0000\u0000\u0000\u0212\u0215\u0001\u0000\u0000\u0000\u0213\u0211"+
- "\u0001\u0000\u0000\u0000\u0213\u0214\u0001\u0000\u0000\u0000\u0214\u0216"+
- "\u0001\u0000\u0000\u0000\u0215\u0213\u0001\u0000\u0000\u0000\u0216\u0217"+
- "\u0005P\u0000\u0000\u0217\u022f\u0001\u0000\u0000\u0000\u0218\u0219\u0005"+
- "O\u0000\u0000\u0219\u021e\u0003p8\u0000\u021a\u021b\u0005*\u0000\u0000"+
- "\u021b\u021d\u0003p8\u0000\u021c\u021a\u0001\u0000\u0000\u0000\u021d\u0220"+
- "\u0001\u0000\u0000\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021e\u021f"+
- "\u0001\u0000\u0000\u0000\u021f\u0221\u0001\u0000\u0000\u0000\u0220\u021e"+
- "\u0001\u0000\u0000\u0000\u0221\u0222\u0005P\u0000\u0000\u0222\u022f\u0001"+
- "\u0000\u0000\u0000\u0223\u0224\u0005O\u0000\u0000\u0224\u0229\u0003x<"+
- "\u0000\u0225\u0226\u0005*\u0000\u0000\u0226\u0228\u0003x<\u0000\u0227"+
- "\u0225\u0001\u0000\u0000\u0000\u0228\u022b\u0001\u0000\u0000\u0000\u0229"+
- "\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001\u0000\u0000\u0000\u022a"+
- "\u022c\u0001\u0000\u0000\u0000\u022b\u0229\u0001\u0000\u0000\u0000\u022c"+
- "\u022d\u0005P\u0000\u0000\u022d\u022f\u0001\u0000\u0000\u0000\u022e\u0204"+
- "\u0001\u0000\u0000\u0000\u022e\u0205\u0001\u0000\u0000\u0000\u022e\u0208"+
- "\u0001\u0000\u0000\u0000\u022e\u0209\u0001\u0000\u0000\u0000\u022e\u020a"+
- "\u0001\u0000\u0000\u0000\u022e\u020b\u0001\u0000\u0000\u0000\u022e\u020c"+
- "\u0001\u0000\u0000\u0000\u022e\u020d\u0001\u0000\u0000\u0000\u022e\u0218"+
- "\u0001\u0000\u0000\u0000\u022e\u0223\u0001\u0000\u0000\u0000\u022fQ\u0001"+
- "\u0000\u0000\u0000\u0230\u0233\u00059\u0000\u0000\u0231\u0233\u0005M\u0000"+
- "\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0232\u0231\u0001\u0000\u0000"+
- "\u0000\u0233S\u0001\u0000\u0000\u0000\u0234\u0237\u0005L\u0000\u0000\u0235"+
- "\u0237\u0005N\u0000\u0000\u0236\u0234\u0001\u0000\u0000\u0000\u0236\u0235"+
- "\u0001\u0000\u0000\u0000\u0237U\u0001\u0000\u0000\u0000\u0238\u023c\u0003"+
- "L&\u0000\u0239\u023c\u0003R)\u0000\u023a\u023c\u0003T*\u0000\u023b\u0238"+
- "\u0001\u0000\u0000\u0000\u023b\u0239\u0001\u0000\u0000\u0000\u023b\u023a"+
- "\u0001\u0000\u0000\u0000\u023cW\u0001\u0000\u0000\u0000\u023d\u023e\u0005"+
- "\n\u0000\u0000\u023e\u023f\u0003P(\u0000\u023fY\u0001\u0000\u0000\u0000"+
- "\u0240\u0241\u0005\u000f\u0000\u0000\u0241\u0246\u0003\\.\u0000\u0242"+
- "\u0243\u0005*\u0000\u0000\u0243\u0245\u0003\\.\u0000\u0244\u0242\u0001"+
- "\u0000\u0000\u0000\u0245\u0248\u0001\u0000\u0000\u0000\u0246\u0244\u0001"+
- "\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000\u0000\u0247[\u0001\u0000"+
- "\u0000\u0000\u0248\u0246\u0001\u0000\u0000\u0000\u0249\u024b\u0003\n\u0005"+
- "\u0000\u024a\u024c\u0007\u0004\u0000\u0000\u024b\u024a\u0001\u0000\u0000"+
- "\u0000\u024b\u024c\u0001\u0000\u0000\u0000\u024c\u024f\u0001\u0000\u0000"+
- "\u0000\u024d\u024e\u00056\u0000\u0000\u024e\u0250\u0007\u0005\u0000\u0000"+
- "\u024f\u024d\u0001\u0000\u0000\u0000\u024f\u0250\u0001\u0000\u0000\u0000"+
- "\u0250]\u0001\u0000\u0000\u0000\u0251\u0252\u0005\t\u0000\u0000\u0252"+
- "\u0253\u0003J%\u0000\u0253_\u0001\u0000\u0000\u0000\u0254\u0255\u0005"+
- "\u0003\u0000\u0000\u0255\u0256\u0003J%\u0000\u0256a\u0001\u0000\u0000"+
- "\u0000\u0257\u0258\u0005\f\u0000\u0000\u0258\u025d\u0003d2\u0000\u0259"+
- "\u025a\u0005*\u0000\u0000\u025a\u025c\u0003d2\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\u025ec\u0001\u0000"+
- "\u0000\u0000\u025f\u025d\u0001\u0000\u0000\u0000\u0260\u0261\u0003H$\u0000"+
- "\u0261\u0262\u0005b\u0000\u0000\u0262\u0263\u0003H$\u0000\u0263\u0269"+
- "\u0001\u0000\u0000\u0000\u0264\u0265\u0003H$\u0000\u0265\u0266\u0005&"+
- "\u0000\u0000\u0266\u0267\u0003H$\u0000\u0267\u0269\u0001\u0000\u0000\u0000"+
- "\u0268\u0260\u0001\u0000\u0000\u0000\u0268\u0264\u0001\u0000\u0000\u0000"+
- "\u0269e\u0001\u0000\u0000\u0000\u026a\u026b\u0005\u0002\u0000\u0000\u026b"+
- "\u026c\u0003\u0014\n\u0000\u026c\u026e\u0003x<\u0000\u026d\u026f\u0003"+
- "l6\u0000\u026e\u026d\u0001\u0000\u0000\u0000\u026e\u026f\u0001\u0000\u0000"+
- "\u0000\u026fg\u0001\u0000\u0000\u0000\u0270\u0271\u0005\b\u0000\u0000"+
- "\u0271\u0272\u0003\u0014\n\u0000\u0272\u0273\u0003x<\u0000\u0273i\u0001"+
- "\u0000\u0000\u0000\u0274\u0275\u0005\u000b\u0000\u0000\u0275\u0276\u0003"+
- "F#\u0000\u0276k\u0001\u0000\u0000\u0000\u0277\u027c\u0003n7\u0000\u0278"+
- "\u0279\u0005*\u0000\u0000\u0279\u027b\u0003n7\u0000\u027a\u0278\u0001"+
- "\u0000\u0000\u0000\u027b\u027e\u0001\u0000\u0000\u0000\u027c\u027a\u0001"+
- "\u0000\u0000\u0000\u027c\u027d\u0001\u0000\u0000\u0000\u027dm\u0001\u0000"+
- "\u0000\u0000\u027e\u027c\u0001\u0000\u0000\u0000\u027f\u0280\u0003L&\u0000"+
- "\u0280\u0281\u0005&\u0000\u0000\u0281\u0282\u0003P(\u0000\u0282o\u0001"+
- "\u0000\u0000\u0000\u0283\u0284\u0007\u0006\u0000\u0000\u0284q\u0001\u0000"+
- "\u0000\u0000\u0285\u0288\u0003t:\u0000\u0286\u0288\u0003v;\u0000\u0287"+
- "\u0285\u0001\u0000\u0000\u0000\u0287\u0286\u0001\u0000\u0000\u0000\u0288"+
- "s\u0001\u0000\u0000\u0000\u0289\u028b\u0007\u0000\u0000\u0000\u028a\u0289"+
- "\u0001\u0000\u0000\u0000\u028a\u028b\u0001\u0000\u0000\u0000\u028b\u028c"+
- "\u0001\u0000\u0000\u0000\u028c\u028d\u0005#\u0000\u0000\u028du\u0001\u0000"+
- "\u0000\u0000\u028e\u0290\u0007\u0000\u0000\u0000\u028f\u028e\u0001\u0000"+
- "\u0000\u0000\u028f\u0290\u0001\u0000\u0000\u0000\u0290\u0291\u0001\u0000"+
- "\u0000\u0000\u0291\u0292\u0005\"\u0000\u0000\u0292w\u0001\u0000\u0000"+
- "\u0000\u0293\u0294\u0005!\u0000\u0000\u0294y\u0001\u0000\u0000\u0000\u0295"+
- "\u0296\u0007\u0007\u0000\u0000\u0296{\u0001\u0000\u0000\u0000\u0297\u0298"+
- "\u0005\u0006\u0000\u0000\u0298\u0299\u0003~?\u0000\u0299}\u0001\u0000"+
- "\u0000\u0000\u029a\u029b\u0005O\u0000\u0000\u029b\u029c\u0003\u0002\u0001"+
- "\u0000\u029c\u029d\u0005P\u0000\u0000\u029d\u007f\u0001\u0000\u0000\u0000"+
- "\u029e\u029f\u0005\u000e\u0000\u0000\u029f\u02a0\u0005p\u0000\u0000\u02a0"+
- "\u0081\u0001\u0000\u0000\u0000\u02a1\u02a2\u0005\u0004\u0000\u0000\u02a2"+
- "\u02a5\u0005f\u0000\u0000\u02a3\u02a4\u00057\u0000\u0000\u02a4\u02a6\u0003"+
- "H$\u0000\u02a5\u02a3\u0001\u0000\u0000\u0000\u02a5\u02a6\u0001\u0000\u0000"+
- "\u0000\u02a6\u02b0\u0001\u0000\u0000\u0000\u02a7\u02a8\u0005=\u0000\u0000"+
- "\u02a8\u02ad\u0003\u0084B\u0000\u02a9\u02aa\u0005*\u0000\u0000\u02aa\u02ac"+
- "\u0003\u0084B\u0000\u02ab\u02a9\u0001\u0000\u0000\u0000\u02ac\u02af\u0001"+
- "\u0000\u0000\u0000\u02ad\u02ab\u0001\u0000\u0000\u0000\u02ad\u02ae\u0001"+
- "\u0000\u0000\u0000\u02ae\u02b1\u0001\u0000\u0000\u0000\u02af\u02ad\u0001"+
- "\u0000\u0000\u0000\u02b0\u02a7\u0001\u0000\u0000\u0000\u02b0\u02b1\u0001"+
- "\u0000\u0000\u0000\u02b1\u0083\u0001\u0000\u0000\u0000\u02b2\u02b3\u0003"+
- "H$\u0000\u02b3\u02b4\u0005&\u0000\u0000\u02b4\u02b6\u0001\u0000\u0000"+
- "\u0000\u02b5\u02b2\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000\u0000"+
- "\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000\u02b7\u02b8\u0003H$\u0000\u02b8"+
- "\u0085\u0001\u0000\u0000\u0000\u02b9\u02ba\u0005\u0013\u0000\u0000\u02ba"+
- "\u02bd\u0003F#\u0000\u02bb\u02bc\u00057\u0000\u0000\u02bc\u02be\u0003"+
- "F#\u0000\u02bd\u02bb\u0001\u0000\u0000\u0000\u02bd\u02be\u0001\u0000\u0000"+
- "\u0000\u02be\u02c4\u0001\u0000\u0000\u0000\u02bf\u02c0\u0005b\u0000\u0000"+
- "\u02c0\u02c1\u0003F#\u0000\u02c1\u02c2\u0005*\u0000\u0000\u02c2\u02c3"+
- "\u0003F#\u0000\u02c3\u02c5\u0001\u0000\u0000\u0000\u02c4\u02bf\u0001\u0000"+
- "\u0000\u0000\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5\u0087\u0001\u0000"+
- "\u0000\u0000\u02c6\u02c7\u0005\u0015\u0000\u0000\u02c7\u02c8\u0003,\u0016"+
- "\u0000\u02c8\u02c9\u00057\u0000\u0000\u02c9\u02ca\u0003J%\u0000\u02ca"+
- "\u0089\u0001\u0000\u0000\u0000\u02cb\u02cc\u0005\u0014\u0000\u0000\u02cc"+
- "\u02cf\u0003B!\u0000\u02cd\u02ce\u0005\'\u0000\u0000\u02ce\u02d0\u0003"+
- "\"\u0011\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000\u02cf\u02d0\u0001\u0000"+
- "\u0000\u0000\u02d0\u008b\u0001\u0000\u0000\u0000\u02d1\u02d2\u0007\b\u0000"+
- "\u0000\u02d2\u02d3\u0005~\u0000\u0000\u02d3\u02d4\u0003\u008eG\u0000\u02d4"+
- "\u02d5\u0003\u0090H\u0000\u02d5\u008d\u0001\u0000\u0000\u0000\u02d6\u02d7"+
- "\u0003,\u0016\u0000\u02d7\u008f\u0001\u0000\u0000\u0000\u02d8\u02d9\u0005"+
- "7\u0000\u0000\u02d9\u02de\u0003\u0092I\u0000\u02da\u02db\u0005*\u0000"+
- "\u0000\u02db\u02dd\u0003\u0092I\u0000\u02dc\u02da\u0001\u0000\u0000\u0000"+
- "\u02dd\u02e0\u0001\u0000\u0000\u0000\u02de\u02dc\u0001\u0000\u0000\u0000"+
- "\u02de\u02df\u0001\u0000\u0000\u0000\u02df\u0091\u0001\u0000\u0000\u0000"+
- "\u02e0\u02de\u0001\u0000\u0000\u0000\u02e1\u02e2\u0003\u0010\b\u0000\u02e2"+
- "\u0093\u0001\u0000\u0000\u0000\u02e3\u02e4\u0005\u0017\u0000\u0000\u02e4"+
- "\u02e5\u0003P(\u0000\u02e5\u02e6\u00057\u0000\u0000\u02e6\u02e9\u0003"+
- "&\u0013\u0000\u02e7\u02e8\u0005=\u0000\u0000\u02e8\u02ea\u0003V+\u0000"+
- "\u02e9\u02e7\u0001\u0000\u0000\u0000\u02e9\u02ea\u0001\u0000\u0000\u0000"+
- "\u02ea\u0095\u0001\u0000\u0000\u0000\u02eb\u02ef\u0005\u0001\u0000\u0000"+
- "\u02ec\u02ed\u0003F#\u0000\u02ed\u02ee\u0005&\u0000\u0000\u02ee\u02f0"+
- "\u0001\u0000\u0000\u0000\u02ef\u02ec\u0001\u0000\u0000\u0000\u02ef\u02f0"+
- "\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f2"+
- "\u0003\u0014\n\u0000\u02f2\u02f3\u0005=\u0000\u0000\u02f3\u02f4\u0003"+
- "V+\u0000\u02f4\u0097\u0001\u0000\u0000\u0000\u02f5\u02f6\u0005\u0018\u0000"+
- "\u0000\u02f6\u02f8\u0003t:\u0000\u02f7\u02f9\u0003v;\u0000\u02f8\u02f7"+
- "\u0001\u0000\u0000\u0000\u02f8\u02f9\u0001\u0000\u0000\u0000\u02f9\u0099"+
- "\u0001\u0000\u0000\u0000I\u00a5\u00ae\u00c7\u00d3\u00dc\u00e4\u00e9\u00f1"+
- "\u00f3\u00f8\u00ff\u0106\u010f\u0114\u0119\u0123\u0129\u0131\u0133\u013e"+
- "\u0145\u0150\u0155\u0157\u0163\u0176\u017c\u0185\u018b\u0193\u0197\u01a2"+
- "\u01ae\u01b6\u01c3\u01c7\u01cb\u01d2\u01d6\u01dd\u01e3\u01ea\u01f2\u01fa"+
- "\u0202\u0213\u021e\u0229\u022e\u0232\u0236\u023b\u0246\u024b\u024f\u025d"+
- "\u0268\u026e\u027c\u0287\u028a\u028f\u02a5\u02ad\u02b0\u02b5\u02bd\u02c4"+
- "\u02cf\u02de\u02e9\u02ef\u02f8";
+ "\bK\u0001K\u0001K\u0001K\u0001K\u0001L\u0001L\u0001L\u0001L\u0000\u0004"+
+ "\u0002\n\u0012\u0014M\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012"+
+ "\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\"+
+ "^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090"+
+ "\u0092\u0094\u0096\u0098\u0000\t\u0001\u0000EF\u0001\u0000GI\u0002\u0000"+
+ "!!ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000..11\u0002\u0000--<<\u0002"+
+ "\u0000>>@D\u0002\u0000\u0012\u0012\u001a\u001b\u031a\u0000\u009a\u0001"+
+ "\u0000\u0000\u0000\u0002\u009d\u0001\u0000\u0000\u0000\u0004\u00ae\u0001"+
+ "\u0000\u0000\u0000\u0006\u00c7\u0001\u0000\u0000\u0000\b\u00c9\u0001\u0000"+
+ "\u0000\u0000\n\u00e9\u0001\u0000\u0000\u0000\f\u0114\u0001\u0000\u0000"+
+ "\u0000\u000e\u0116\u0001\u0000\u0000\u0000\u0010\u0123\u0001\u0000\u0000"+
+ "\u0000\u0012\u0129\u0001\u0000\u0000\u0000\u0014\u013e\u0001\u0000\u0000"+
+ "\u0000\u0016\u0148\u0001\u0000\u0000\u0000\u0018\u015b\u0001\u0000\u0000"+
+ "\u0000\u001a\u015d\u0001\u0000\u0000\u0000\u001c\u0168\u0001\u0000\u0000"+
+ "\u0000\u001e\u016c\u0001\u0000\u0000\u0000 \u016e\u0001\u0000\u0000\u0000"+
+ "\"\u0171\u0001\u0000\u0000\u0000$\u017c\u0001\u0000\u0000\u0000&\u0180"+
+ "\u0001\u0000\u0000\u0000(\u0188\u0001\u0000\u0000\u0000*\u018d\u0001\u0000"+
+ "\u0000\u0000,\u01a2\u0001\u0000\u0000\u0000.\u01a4\u0001\u0000\u0000\u0000"+
+ "0\u01a6\u0001\u0000\u0000\u00002\u01a8\u0001\u0000\u0000\u00004\u01aa"+
+ "\u0001\u0000\u0000\u00006\u01ae\u0001\u0000\u0000\u00008\u01b0\u0001\u0000"+
+ "\u0000\u0000:\u01b9\u0001\u0000\u0000\u0000<\u01bd\u0001\u0000\u0000\u0000"+
+ ">\u01cd\u0001\u0000\u0000\u0000@\u01d0\u0001\u0000\u0000\u0000B\u01d8"+
+ "\u0001\u0000\u0000\u0000D\u01e0\u0001\u0000\u0000\u0000F\u01e5\u0001\u0000"+
+ "\u0000\u0000H\u01ed\u0001\u0000\u0000\u0000J\u01f5\u0001\u0000\u0000\u0000"+
+ "L\u01fd\u0001\u0000\u0000\u0000N\u0202\u0001\u0000\u0000\u0000P\u022e"+
+ "\u0001\u0000\u0000\u0000R\u0232\u0001\u0000\u0000\u0000T\u0236\u0001\u0000"+
+ "\u0000\u0000V\u023b\u0001\u0000\u0000\u0000X\u023d\u0001\u0000\u0000\u0000"+
+ "Z\u0240\u0001\u0000\u0000\u0000\\\u0249\u0001\u0000\u0000\u0000^\u0251"+
+ "\u0001\u0000\u0000\u0000`\u0254\u0001\u0000\u0000\u0000b\u0257\u0001\u0000"+
+ "\u0000\u0000d\u0268\u0001\u0000\u0000\u0000f\u026a\u0001\u0000\u0000\u0000"+
+ "h\u0270\u0001\u0000\u0000\u0000j\u0274\u0001\u0000\u0000\u0000l\u0277"+
+ "\u0001\u0000\u0000\u0000n\u027f\u0001\u0000\u0000\u0000p\u0283\u0001\u0000"+
+ "\u0000\u0000r\u0287\u0001\u0000\u0000\u0000t\u028a\u0001\u0000\u0000\u0000"+
+ "v\u028f\u0001\u0000\u0000\u0000x\u0293\u0001\u0000\u0000\u0000z\u0295"+
+ "\u0001\u0000\u0000\u0000|\u0297\u0001\u0000\u0000\u0000~\u029a\u0001\u0000"+
+ "\u0000\u0000\u0080\u029e\u0001\u0000\u0000\u0000\u0082\u02a1\u0001\u0000"+
+ "\u0000\u0000\u0084\u02b5\u0001\u0000\u0000\u0000\u0086\u02b9\u0001\u0000"+
+ "\u0000\u0000\u0088\u02c6\u0001\u0000\u0000\u0000\u008a\u02cb\u0001\u0000"+
+ "\u0000\u0000\u008c\u02d1\u0001\u0000\u0000\u0000\u008e\u02d6\u0001\u0000"+
+ "\u0000\u0000\u0090\u02d8\u0001\u0000\u0000\u0000\u0092\u02e1\u0001\u0000"+
+ "\u0000\u0000\u0094\u02e3\u0001\u0000\u0000\u0000\u0096\u02eb\u0001\u0000"+
+ "\u0000\u0000\u0098\u02f5\u0001\u0000\u0000\u0000\u009a\u009b\u0003\u0002"+
+ "\u0001\u0000\u009b\u009c\u0005\u0000\u0000\u0001\u009c\u0001\u0001\u0000"+
+ "\u0000\u0000\u009d\u009e\u0006\u0001\uffff\uffff\u0000\u009e\u009f\u0003"+
+ "\u0004\u0002\u0000\u009f\u00a5\u0001\u0000\u0000\u0000\u00a0\u00a1\n\u0001"+
+ "\u0000\u0000\u00a1\u00a2\u0005 \u0000\u0000\u00a2\u00a4\u0003\u0006\u0003"+
+ "\u0000\u00a3\u00a0\u0001\u0000\u0000\u0000\u00a4\u00a7\u0001\u0000\u0000"+
+ "\u0000\u00a5\u00a3\u0001\u0000\u0000\u0000\u00a5\u00a6\u0001\u0000\u0000"+
+ "\u0000\u00a6\u0003\u0001\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000"+
+ "\u0000\u00a8\u00af\u0003|>\u0000\u00a9\u00af\u0003*\u0015\u0000\u00aa"+
+ "\u00af\u0003 \u0010\u0000\u00ab\u00af\u0003\u0080@\u0000\u00ac\u00ad\u0004"+
+ "\u0002\u0001\u0000\u00ad\u00af\u0003<\u001e\u0000\u00ae\u00a8\u0001\u0000"+
+ "\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000\u00ae\u00aa\u0001\u0000"+
+ "\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000"+
+ "\u0000\u0000\u00af\u0005\u0001\u0000\u0000\u0000\u00b0\u00c8\u0003>\u001f"+
+ "\u0000\u00b1\u00c8\u0003\b\u0004\u0000\u00b2\u00c8\u0003^/\u0000\u00b3"+
+ "\u00c8\u0003X,\u0000\u00b4\u00c8\u0003@ \u0000\u00b5\u00c8\u0003Z-\u0000"+
+ "\u00b6\u00c8\u0003`0\u0000\u00b7\u00c8\u0003b1\u0000\u00b8\u00c8\u0003"+
+ "f3\u0000\u00b9\u00c8\u0003h4\u0000\u00ba\u00c8\u0003\u0082A\u0000\u00bb"+
+ "\u00c8\u0003j5\u0000\u00bc\u00c8\u0003\u008cF\u0000\u00bd\u00c8\u0003"+
+ "\u0086C\u0000\u00be\u00c8\u0003\u0096K\u0000\u00bf\u00c0\u0004\u0003\u0002"+
+ "\u0000\u00c0\u00c8\u0003\u008aE\u0000\u00c1\u00c2\u0004\u0003\u0003\u0000"+
+ "\u00c2\u00c8\u0003\u0088D\u0000\u00c3\u00c4\u0004\u0003\u0004\u0000\u00c4"+
+ "\u00c8\u0003\u0094J\u0000\u00c5\u00c6\u0004\u0003\u0005\u0000\u00c6\u00c8"+
+ "\u0003\u0098L\u0000\u00c7\u00b0\u0001\u0000\u0000\u0000\u00c7\u00b1\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00b2\u0001\u0000\u0000\u0000\u00c7\u00b3\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00b4\u0001\u0000\u0000\u0000\u00c7\u00b5\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00b6\u0001\u0000\u0000\u0000\u00c7\u00b7\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00b8\u0001\u0000\u0000\u0000\u00c7\u00b9\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00ba\u0001\u0000\u0000\u0000\u00c7\u00bb\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00bc\u0001\u0000\u0000\u0000\u00c7\u00bd\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00be\u0001\u0000\u0000\u0000\u00c7\u00bf\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00c1\u0001\u0000\u0000\u0000\u00c7\u00c3\u0001"+
+ "\u0000\u0000\u0000\u00c7\u00c5\u0001\u0000\u0000\u0000\u00c8\u0007\u0001"+
+ "\u0000\u0000\u0000\u00c9\u00ca\u0005\u0011\u0000\u0000\u00ca\u00cb\u0003"+
+ "\n\u0005\u0000\u00cb\t\u0001\u0000\u0000\u0000\u00cc\u00cd\u0006\u0005"+
+ "\uffff\uffff\u0000\u00cd\u00ce\u00054\u0000\u0000\u00ce\u00ea\u0003\n"+
+ "\u0005\b\u00cf\u00ea\u0003\u0010\b\u0000\u00d0\u00ea\u0003\f\u0006\u0000"+
+ "\u00d1\u00d3\u0003\u0010\b\u0000\u00d2\u00d4\u00054\u0000\u0000\u00d3"+
+ "\u00d2\u0001\u0000\u0000\u0000\u00d3\u00d4\u0001\u0000\u0000\u0000\u00d4"+
+ "\u00d5\u0001\u0000\u0000\u0000\u00d5\u00d6\u0005/\u0000\u0000\u00d6\u00d7"+
+ "\u00053\u0000\u0000\u00d7\u00dc\u0003\u0010\b\u0000\u00d8\u00d9\u0005"+
+ "*\u0000\u0000\u00d9\u00db\u0003\u0010\b\u0000\u00da\u00d8\u0001\u0000"+
+ "\u0000\u0000\u00db\u00de\u0001\u0000\u0000\u0000\u00dc\u00da\u0001\u0000"+
+ "\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000\u0000\u00dd\u00df\u0001\u0000"+
+ "\u0000\u0000\u00de\u00dc\u0001\u0000\u0000\u0000\u00df\u00e0\u0005;\u0000"+
+ "\u0000\u00e0\u00ea\u0001\u0000\u0000\u0000\u00e1\u00e2\u0003\u0010\b\u0000"+
+ "\u00e2\u00e4\u00050\u0000\u0000\u00e3\u00e5\u00054\u0000\u0000\u00e4\u00e3"+
+ "\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001\u0000\u0000\u0000\u00e5\u00e6"+
+ "\u0001\u0000\u0000\u0000\u00e6\u00e7\u00055\u0000\u0000\u00e7\u00ea\u0001"+
+ "\u0000\u0000\u0000\u00e8\u00ea\u0003\u000e\u0007\u0000\u00e9\u00cc\u0001"+
+ "\u0000\u0000\u0000\u00e9\u00cf\u0001\u0000\u0000\u0000\u00e9\u00d0\u0001"+
+ "\u0000\u0000\u0000\u00e9\u00d1\u0001\u0000\u0000\u0000\u00e9\u00e1\u0001"+
+ "\u0000\u0000\u0000\u00e9\u00e8\u0001\u0000\u0000\u0000\u00ea\u00f3\u0001"+
+ "\u0000\u0000\u0000\u00eb\u00ec\n\u0005\u0000\u0000\u00ec\u00ed\u0005$"+
+ "\u0000\u0000\u00ed\u00f2\u0003\n\u0005\u0006\u00ee\u00ef\n\u0004\u0000"+
+ "\u0000\u00ef\u00f0\u00058\u0000\u0000\u00f0\u00f2\u0003\n\u0005\u0005"+
+ "\u00f1\u00eb\u0001\u0000\u0000\u0000\u00f1\u00ee\u0001\u0000\u0000\u0000"+
+ "\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3\u00f1\u0001\u0000\u0000\u0000"+
+ "\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4\u000b\u0001\u0000\u0000\u0000"+
+ "\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6\u00f8\u0003\u0010\b\u0000\u00f7"+
+ "\u00f9\u00054\u0000\u0000\u00f8\u00f7\u0001\u0000\u0000\u0000\u00f8\u00f9"+
+ "\u0001\u0000\u0000\u0000\u00f9\u00fa\u0001\u0000\u0000\u0000\u00fa\u00fb"+
+ "\u00052\u0000\u0000\u00fb\u00fc\u0003x<\u0000\u00fc\u0115\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\u0005:\u0000\u0000"+
+ "\u0102\u0103\u0003x<\u0000\u0103\u0115\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\u00052\u0000\u0000\u0109\u010a\u00053\u0000"+
+ "\u0000\u010a\u010f\u0003x<\u0000\u010b\u010c\u0005*\u0000\u0000\u010c"+
+ "\u010e\u0003x<\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010e\u0111\u0001"+
+ "\u0000\u0000\u0000\u010f\u010d\u0001\u0000\u0000\u0000\u010f\u0110\u0001"+
+ "\u0000\u0000\u0000\u0110\u0112\u0001\u0000\u0000\u0000\u0111\u010f\u0001"+
+ "\u0000\u0000\u0000\u0112\u0113\u0005;\u0000\u0000\u0113\u0115\u0001\u0000"+
+ "\u0000\u0000\u0114\u00f6\u0001\u0000\u0000\u0000\u0114\u00fd\u0001\u0000"+
+ "\u0000\u0000\u0114\u0104\u0001\u0000\u0000\u0000\u0115\r\u0001\u0000\u0000"+
+ "\u0000\u0116\u0119\u0003F#\u0000\u0117\u0118\u0005(\u0000\u0000\u0118"+
+ "\u011a\u0003\u001e\u000f\u0000\u0119\u0117\u0001\u0000\u0000\u0000\u0119"+
+ "\u011a\u0001\u0000\u0000\u0000\u011a\u011b\u0001\u0000\u0000\u0000\u011b"+
+ "\u011c\u0005)\u0000\u0000\u011c\u011d\u0003P(\u0000\u011d\u000f\u0001"+
+ "\u0000\u0000\u0000\u011e\u0124\u0003\u0012\t\u0000\u011f\u0120\u0003\u0012"+
+ "\t\u0000\u0120\u0121\u0003z=\u0000\u0121\u0122\u0003\u0012\t\u0000\u0122"+
+ "\u0124\u0001\u0000\u0000\u0000\u0123\u011e\u0001\u0000\u0000\u0000\u0123"+
+ "\u011f\u0001\u0000\u0000\u0000\u0124\u0011\u0001\u0000\u0000\u0000\u0125"+
+ "\u0126\u0006\t\uffff\uffff\u0000\u0126\u012a\u0003\u0014\n\u0000\u0127"+
+ "\u0128\u0007\u0000\u0000\u0000\u0128\u012a\u0003\u0012\t\u0003\u0129\u0125"+
+ "\u0001\u0000\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u012a\u0133"+
+ "\u0001\u0000\u0000\u0000\u012b\u012c\n\u0002\u0000\u0000\u012c\u012d\u0007"+
+ "\u0001\u0000\u0000\u012d\u0132\u0003\u0012\t\u0003\u012e\u012f\n\u0001"+
+ "\u0000\u0000\u012f\u0130\u0007\u0000\u0000\u0000\u0130\u0132\u0003\u0012"+
+ "\t\u0002\u0131\u012b\u0001\u0000\u0000\u0000\u0131\u012e\u0001\u0000\u0000"+
+ "\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133\u0131\u0001\u0000\u0000"+
+ "\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134\u0013\u0001\u0000\u0000"+
+ "\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u0137\u0006\n\uffff\uffff"+
+ "\u0000\u0137\u013f\u0003P(\u0000\u0138\u013f\u0003F#\u0000\u0139\u013f"+
+ "\u0003\u0016\u000b\u0000\u013a\u013b\u00053\u0000\u0000\u013b\u013c\u0003"+
+ "\n\u0005\u0000\u013c\u013d\u0005;\u0000\u0000\u013d\u013f\u0001\u0000"+
+ "\u0000\u0000\u013e\u0136\u0001\u0000\u0000\u0000\u013e\u0138\u0001\u0000"+
+ "\u0000\u0000\u013e\u0139\u0001\u0000\u0000\u0000\u013e\u013a\u0001\u0000"+
+ "\u0000\u0000\u013f\u0145\u0001\u0000\u0000\u0000\u0140\u0141\n\u0001\u0000"+
+ "\u0000\u0141\u0142\u0005(\u0000\u0000\u0142\u0144\u0003\u001e\u000f\u0000"+
+ "\u0143\u0140\u0001\u0000\u0000\u0000\u0144\u0147\u0001\u0000\u0000\u0000"+
+ "\u0145\u0143\u0001\u0000\u0000\u0000\u0145\u0146\u0001\u0000\u0000\u0000"+
+ "\u0146\u0015\u0001\u0000\u0000\u0000\u0147\u0145\u0001\u0000\u0000\u0000"+
+ "\u0148\u0149\u0003\u0018\f\u0000\u0149\u0157\u00053\u0000\u0000\u014a"+
+ "\u0158\u0005G\u0000\u0000\u014b\u0150\u0003\n\u0005\u0000\u014c\u014d"+
+ "\u0005*\u0000\u0000\u014d\u014f\u0003\n\u0005\u0000\u014e\u014c\u0001"+
+ "\u0000\u0000\u0000\u014f\u0152\u0001\u0000\u0000\u0000\u0150\u014e\u0001"+
+ "\u0000\u0000\u0000\u0150\u0151\u0001\u0000\u0000\u0000\u0151\u0155\u0001"+
+ "\u0000\u0000\u0000\u0152\u0150\u0001\u0000\u0000\u0000\u0153\u0154\u0005"+
+ "*\u0000\u0000\u0154\u0156\u0003\u001a\r\u0000\u0155\u0153\u0001\u0000"+
+ "\u0000\u0000\u0155\u0156\u0001\u0000\u0000\u0000\u0156\u0158\u0001\u0000"+
+ "\u0000\u0000\u0157\u014a\u0001\u0000\u0000\u0000\u0157\u014b\u0001\u0000"+
+ "\u0000\u0000\u0157\u0158\u0001\u0000\u0000\u0000\u0158\u0159\u0001\u0000"+
+ "\u0000\u0000\u0159\u015a\u0005;\u0000\u0000\u015a\u0017\u0001\u0000\u0000"+
+ "\u0000\u015b\u015c\u0003V+\u0000\u015c\u0019\u0001\u0000\u0000\u0000\u015d"+
+ "\u015e\u0005J\u0000\u0000\u015e\u0163\u0003\u001c\u000e\u0000\u015f\u0160"+
+ "\u0005*\u0000\u0000\u0160\u0162\u0003\u001c\u000e\u0000\u0161\u015f\u0001"+
+ "\u0000\u0000\u0000\u0162\u0165\u0001\u0000\u0000\u0000\u0163\u0161\u0001"+
+ "\u0000\u0000\u0000\u0163\u0164\u0001\u0000\u0000\u0000\u0164\u0166\u0001"+
+ "\u0000\u0000\u0000\u0165\u0163\u0001\u0000\u0000\u0000\u0166\u0167\u0005"+
+ "K\u0000\u0000\u0167\u001b\u0001\u0000\u0000\u0000\u0168\u0169\u0003x<"+
+ "\u0000\u0169\u016a\u0005)\u0000\u0000\u016a\u016b\u0003P(\u0000\u016b"+
+ "\u001d\u0001\u0000\u0000\u0000\u016c\u016d\u0003L&\u0000\u016d\u001f\u0001"+
+ "\u0000\u0000\u0000\u016e\u016f\u0005\r\u0000\u0000\u016f\u0170\u0003\""+
+ "\u0011\u0000\u0170!\u0001\u0000\u0000\u0000\u0171\u0176\u0003$\u0012\u0000"+
+ "\u0172\u0173\u0005*\u0000\u0000\u0173\u0175\u0003$\u0012\u0000\u0174\u0172"+
+ "\u0001\u0000\u0000\u0000\u0175\u0178\u0001\u0000\u0000\u0000\u0176\u0174"+
+ "\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177#\u0001"+
+ "\u0000\u0000\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0179\u017a\u0003"+
+ "F#\u0000\u017a\u017b\u0005&\u0000\u0000\u017b\u017d\u0001\u0000\u0000"+
+ "\u0000\u017c\u0179\u0001\u0000\u0000\u0000\u017c\u017d\u0001\u0000\u0000"+
+ "\u0000\u017d\u017e\u0001\u0000\u0000\u0000\u017e\u017f\u0003\n\u0005\u0000"+
+ "\u017f%\u0001\u0000\u0000\u0000\u0180\u0185\u0003(\u0014\u0000\u0181\u0182"+
+ "\u0005*\u0000\u0000\u0182\u0184\u0003(\u0014\u0000\u0183\u0181\u0001\u0000"+
+ "\u0000\u0000\u0184\u0187\u0001\u0000\u0000\u0000\u0185\u0183\u0001\u0000"+
+ "\u0000\u0000\u0185\u0186\u0001\u0000\u0000\u0000\u0186\'\u0001\u0000\u0000"+
+ "\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0188\u018b\u0003F#\u0000\u0189"+
+ "\u018a\u0005&\u0000\u0000\u018a\u018c\u0003\n\u0005\u0000\u018b\u0189"+
+ "\u0001\u0000\u0000\u0000\u018b\u018c\u0001\u0000\u0000\u0000\u018c)\u0001"+
+ "\u0000\u0000\u0000\u018d\u018e\u0005\u0007\u0000\u0000\u018e\u0193\u0003"+
+ ",\u0016\u0000\u018f\u0190\u0005*\u0000\u0000\u0190\u0192\u0003,\u0016"+
+ "\u0000\u0191\u018f\u0001\u0000\u0000\u0000\u0192\u0195\u0001\u0000\u0000"+
+ "\u0000\u0193\u0191\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000"+
+ "\u0000\u0194\u0197\u0001\u0000\u0000\u0000\u0195\u0193\u0001\u0000\u0000"+
+ "\u0000\u0196\u0198\u00036\u001b\u0000\u0197\u0196\u0001\u0000\u0000\u0000"+
+ "\u0197\u0198\u0001\u0000\u0000\u0000\u0198+\u0001\u0000\u0000\u0000\u0199"+
+ "\u019a\u0003.\u0017\u0000\u019a\u019b\u0005)\u0000\u0000\u019b\u019c\u0003"+
+ "2\u0019\u0000\u019c\u01a3\u0001\u0000\u0000\u0000\u019d\u019e\u00032\u0019"+
+ "\u0000\u019e\u019f\u0005(\u0000\u0000\u019f\u01a0\u00030\u0018\u0000\u01a0"+
+ "\u01a3\u0001\u0000\u0000\u0000\u01a1\u01a3\u00034\u001a\u0000\u01a2\u0199"+
+ "\u0001\u0000\u0000\u0000\u01a2\u019d\u0001\u0000\u0000\u0000\u01a2\u01a1"+
+ "\u0001\u0000\u0000\u0000\u01a3-\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005"+
+ "Z\u0000\u0000\u01a5/\u0001\u0000\u0000\u0000\u01a6\u01a7\u0005Z\u0000"+
+ "\u0000\u01a71\u0001\u0000\u0000\u0000\u01a8\u01a9\u0005Z\u0000\u0000\u01a9"+
+ "3\u0001\u0000\u0000\u0000\u01aa\u01ab\u0007\u0002\u0000\u0000\u01ab5\u0001"+
+ "\u0000\u0000\u0000\u01ac\u01af\u00038\u001c\u0000\u01ad\u01af\u0003:\u001d"+
+ "\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01ae\u01ad\u0001\u0000\u0000"+
+ "\u0000\u01af7\u0001\u0000\u0000\u0000\u01b0\u01b1\u0005Y\u0000\u0000\u01b1"+
+ "\u01b6\u0005Z\u0000\u0000\u01b2\u01b3\u0005*\u0000\u0000\u01b3\u01b5\u0005"+
+ "Z\u0000\u0000\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b8\u0001\u0000"+
+ "\u0000\u0000\u01b6\u01b4\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000"+
+ "\u0000\u0000\u01b79\u0001\u0000\u0000\u0000\u01b8\u01b6\u0001\u0000\u0000"+
+ "\u0000\u01b9\u01ba\u0005O\u0000\u0000\u01ba\u01bb\u00038\u001c\u0000\u01bb"+
+ "\u01bc\u0005P\u0000\u0000\u01bc;\u0001\u0000\u0000\u0000\u01bd\u01be\u0005"+
+ "\u0016\u0000\u0000\u01be\u01c3\u0003,\u0016\u0000\u01bf\u01c0\u0005*\u0000"+
+ "\u0000\u01c0\u01c2\u0003,\u0016\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000"+
+ "\u01c2\u01c5\u0001\u0000\u0000\u0000\u01c3\u01c1\u0001\u0000\u0000\u0000"+
+ "\u01c3\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000"+
+ "\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c6\u01c8\u0003B!\u0000\u01c7\u01c6"+
+ "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0001\u0000\u0000\u0000\u01c8\u01cb"+
+ "\u0001\u0000\u0000\u0000\u01c9\u01ca\u0005\'\u0000\u0000\u01ca\u01cc\u0003"+
+ "\"\u0011\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000"+
+ "\u0000\u0000\u01cc=\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005\u0005\u0000"+
+ "\u0000\u01ce\u01cf\u0003\"\u0011\u0000\u01cf?\u0001\u0000\u0000\u0000"+
+ "\u01d0\u01d2\u0005\u0010\u0000\u0000\u01d1\u01d3\u0003B!\u0000\u01d2\u01d1"+
+ "\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3\u01d6"+
+ "\u0001\u0000\u0000\u0000\u01d4\u01d5\u0005\'\u0000\u0000\u01d5\u01d7\u0003"+
+ "\"\u0011\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000"+
+ "\u0000\u0000\u01d7A\u0001\u0000\u0000\u0000\u01d8\u01dd\u0003D\"\u0000"+
+ "\u01d9\u01da\u0005*\u0000\u0000\u01da\u01dc\u0003D\"\u0000\u01db\u01d9"+
+ "\u0001\u0000\u0000\u0000\u01dc\u01df\u0001\u0000\u0000\u0000\u01dd\u01db"+
+ "\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01deC\u0001"+
+ "\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000\u01e0\u01e3\u0003"+
+ "$\u0012\u0000\u01e1\u01e2\u0005\u0011\u0000\u0000\u01e2\u01e4\u0003\n"+
+ "\u0005\u0000\u01e3\u01e1\u0001\u0000\u0000\u0000\u01e3\u01e4\u0001\u0000"+
+ "\u0000\u0000\u01e4E\u0001\u0000\u0000\u0000\u01e5\u01ea\u0003V+\u0000"+
+ "\u01e6\u01e7\u0005,\u0000\u0000\u01e7\u01e9\u0003V+\u0000\u01e8\u01e6"+
+ "\u0001\u0000\u0000\u0000\u01e9\u01ec\u0001\u0000\u0000\u0000\u01ea\u01e8"+
+ "\u0001\u0000\u0000\u0000\u01ea\u01eb\u0001\u0000\u0000\u0000\u01ebG\u0001"+
+ "\u0000\u0000\u0000\u01ec\u01ea\u0001\u0000\u0000\u0000\u01ed\u01f2\u0003"+
+ "N\'\u0000\u01ee\u01ef\u0005,\u0000\u0000\u01ef\u01f1\u0003N\'\u0000\u01f0"+
+ "\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f4\u0001\u0000\u0000\u0000\u01f2"+
+ "\u01f0\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3"+
+ "I\u0001\u0000\u0000\u0000\u01f4\u01f2\u0001\u0000\u0000\u0000\u01f5\u01fa"+
+ "\u0003H$\u0000\u01f6\u01f7\u0005*\u0000\u0000\u01f7\u01f9\u0003H$\u0000"+
+ "\u01f8\u01f6\u0001\u0000\u0000\u0000\u01f9\u01fc\u0001\u0000\u0000\u0000"+
+ "\u01fa\u01f8\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000"+
+ "\u01fbK\u0001\u0000\u0000\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fd"+
+ "\u01fe\u0007\u0003\u0000\u0000\u01feM\u0001\u0000\u0000\u0000\u01ff\u0203"+
+ "\u0005^\u0000\u0000\u0200\u0203\u0003R)\u0000\u0201\u0203\u0003T*\u0000"+
+ "\u0202\u01ff\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000\u0000\u0000"+
+ "\u0202\u0201\u0001\u0000\u0000\u0000\u0203O\u0001\u0000\u0000\u0000\u0204"+
+ "\u022f\u00055\u0000\u0000\u0205\u0206\u0003v;\u0000\u0206\u0207\u0005"+
+ "Q\u0000\u0000\u0207\u022f\u0001\u0000\u0000\u0000\u0208\u022f\u0003t:"+
+ "\u0000\u0209\u022f\u0003v;\u0000\u020a\u022f\u0003p8\u0000\u020b\u022f"+
+ "\u0003R)\u0000\u020c\u022f\u0003x<\u0000\u020d\u020e\u0005O\u0000\u0000"+
+ "\u020e\u0213\u0003r9\u0000\u020f\u0210\u0005*\u0000\u0000\u0210\u0212"+
+ "\u0003r9\u0000\u0211\u020f\u0001\u0000\u0000\u0000\u0212\u0215\u0001\u0000"+
+ "\u0000\u0000\u0213\u0211\u0001\u0000\u0000\u0000\u0213\u0214\u0001\u0000"+
+ "\u0000\u0000\u0214\u0216\u0001\u0000\u0000\u0000\u0215\u0213\u0001\u0000"+
+ "\u0000\u0000\u0216\u0217\u0005P\u0000\u0000\u0217\u022f\u0001\u0000\u0000"+
+ "\u0000\u0218\u0219\u0005O\u0000\u0000\u0219\u021e\u0003p8\u0000\u021a"+
+ "\u021b\u0005*\u0000\u0000\u021b\u021d\u0003p8\u0000\u021c\u021a\u0001"+
+ "\u0000\u0000\u0000\u021d\u0220\u0001\u0000\u0000\u0000\u021e\u021c\u0001"+
+ "\u0000\u0000\u0000\u021e\u021f\u0001\u0000\u0000\u0000\u021f\u0221\u0001"+
+ "\u0000\u0000\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0221\u0222\u0005"+
+ "P\u0000\u0000\u0222\u022f\u0001\u0000\u0000\u0000\u0223\u0224\u0005O\u0000"+
+ "\u0000\u0224\u0229\u0003x<\u0000\u0225\u0226\u0005*\u0000\u0000\u0226"+
+ "\u0228\u0003x<\u0000\u0227\u0225\u0001\u0000\u0000\u0000\u0228\u022b\u0001"+
+ "\u0000\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001"+
+ "\u0000\u0000\u0000\u022a\u022c\u0001\u0000\u0000\u0000\u022b\u0229\u0001"+
+ "\u0000\u0000\u0000\u022c\u022d\u0005P\u0000\u0000\u022d\u022f\u0001\u0000"+
+ "\u0000\u0000\u022e\u0204\u0001\u0000\u0000\u0000\u022e\u0205\u0001\u0000"+
+ "\u0000\u0000\u022e\u0208\u0001\u0000\u0000\u0000\u022e\u0209\u0001\u0000"+
+ "\u0000\u0000\u022e\u020a\u0001\u0000\u0000\u0000\u022e\u020b\u0001\u0000"+
+ "\u0000\u0000\u022e\u020c\u0001\u0000\u0000\u0000\u022e\u020d\u0001\u0000"+
+ "\u0000\u0000\u022e\u0218\u0001\u0000\u0000\u0000\u022e\u0223\u0001\u0000"+
+ "\u0000\u0000\u022fQ\u0001\u0000\u0000\u0000\u0230\u0233\u00059\u0000\u0000"+
+ "\u0231\u0233\u0005M\u0000\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0232"+
+ "\u0231\u0001\u0000\u0000\u0000\u0233S\u0001\u0000\u0000\u0000\u0234\u0237"+
+ "\u0005L\u0000\u0000\u0235\u0237\u0005N\u0000\u0000\u0236\u0234\u0001\u0000"+
+ "\u0000\u0000\u0236\u0235\u0001\u0000\u0000\u0000\u0237U\u0001\u0000\u0000"+
+ "\u0000\u0238\u023c\u0003L&\u0000\u0239\u023c\u0003R)\u0000\u023a\u023c"+
+ "\u0003T*\u0000\u023b\u0238\u0001\u0000\u0000\u0000\u023b\u0239\u0001\u0000"+
+ "\u0000\u0000\u023b\u023a\u0001\u0000\u0000\u0000\u023cW\u0001\u0000\u0000"+
+ "\u0000\u023d\u023e\u0005\n\u0000\u0000\u023e\u023f\u0003P(\u0000\u023f"+
+ "Y\u0001\u0000\u0000\u0000\u0240\u0241\u0005\u000f\u0000\u0000\u0241\u0246"+
+ "\u0003\\.\u0000\u0242\u0243\u0005*\u0000\u0000\u0243\u0245\u0003\\.\u0000"+
+ "\u0244\u0242\u0001\u0000\u0000\u0000\u0245\u0248\u0001\u0000\u0000\u0000"+
+ "\u0246\u0244\u0001\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000\u0000"+
+ "\u0247[\u0001\u0000\u0000\u0000\u0248\u0246\u0001\u0000\u0000\u0000\u0249"+
+ "\u024b\u0003\n\u0005\u0000\u024a\u024c\u0007\u0004\u0000\u0000\u024b\u024a"+
+ "\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000\u024c\u024f"+
+ "\u0001\u0000\u0000\u0000\u024d\u024e\u00056\u0000\u0000\u024e\u0250\u0007"+
+ "\u0005\u0000\u0000\u024f\u024d\u0001\u0000\u0000\u0000\u024f\u0250\u0001"+
+ "\u0000\u0000\u0000\u0250]\u0001\u0000\u0000\u0000\u0251\u0252\u0005\t"+
+ "\u0000\u0000\u0252\u0253\u0003J%\u0000\u0253_\u0001\u0000\u0000\u0000"+
+ "\u0254\u0255\u0005\u0003\u0000\u0000\u0255\u0256\u0003J%\u0000\u0256a"+
+ "\u0001\u0000\u0000\u0000\u0257\u0258\u0005\f\u0000\u0000\u0258\u025d\u0003"+
+ "d2\u0000\u0259\u025a\u0005*\u0000\u0000\u025a\u025c\u0003d2\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"+
+ "c\u0001\u0000\u0000\u0000\u025f\u025d\u0001\u0000\u0000\u0000\u0260\u0261"+
+ "\u0003H$\u0000\u0261\u0262\u0005b\u0000\u0000\u0262\u0263\u0003H$\u0000"+
+ "\u0263\u0269\u0001\u0000\u0000\u0000\u0264\u0265\u0003H$\u0000\u0265\u0266"+
+ "\u0005&\u0000\u0000\u0266\u0267\u0003H$\u0000\u0267\u0269\u0001\u0000"+
+ "\u0000\u0000\u0268\u0260\u0001\u0000\u0000\u0000\u0268\u0264\u0001\u0000"+
+ "\u0000\u0000\u0269e\u0001\u0000\u0000\u0000\u026a\u026b\u0005\u0002\u0000"+
+ "\u0000\u026b\u026c\u0003\u0014\n\u0000\u026c\u026e\u0003x<\u0000\u026d"+
+ "\u026f\u0003l6\u0000\u026e\u026d\u0001\u0000\u0000\u0000\u026e\u026f\u0001"+
+ "\u0000\u0000\u0000\u026fg\u0001\u0000\u0000\u0000\u0270\u0271\u0005\b"+
+ "\u0000\u0000\u0271\u0272\u0003\u0014\n\u0000\u0272\u0273\u0003x<\u0000"+
+ "\u0273i\u0001\u0000\u0000\u0000\u0274\u0275\u0005\u000b\u0000\u0000\u0275"+
+ "\u0276\u0003F#\u0000\u0276k\u0001\u0000\u0000\u0000\u0277\u027c\u0003"+
+ "n7\u0000\u0278\u0279\u0005*\u0000\u0000\u0279\u027b\u0003n7\u0000\u027a"+
+ "\u0278\u0001\u0000\u0000\u0000\u027b\u027e\u0001\u0000\u0000\u0000\u027c"+
+ "\u027a\u0001\u0000\u0000\u0000\u027c\u027d\u0001\u0000\u0000\u0000\u027d"+
+ "m\u0001\u0000\u0000\u0000\u027e\u027c\u0001\u0000\u0000\u0000\u027f\u0280"+
+ "\u0003L&\u0000\u0280\u0281\u0005&\u0000\u0000\u0281\u0282\u0003P(\u0000"+
+ "\u0282o\u0001\u0000\u0000\u0000\u0283\u0284\u0007\u0006\u0000\u0000\u0284"+
+ "q\u0001\u0000\u0000\u0000\u0285\u0288\u0003t:\u0000\u0286\u0288\u0003"+
+ "v;\u0000\u0287\u0285\u0001\u0000\u0000\u0000\u0287\u0286\u0001\u0000\u0000"+
+ "\u0000\u0288s\u0001\u0000\u0000\u0000\u0289\u028b\u0007\u0000\u0000\u0000"+
+ "\u028a\u0289\u0001\u0000\u0000\u0000\u028a\u028b\u0001\u0000\u0000\u0000"+
+ "\u028b\u028c\u0001\u0000\u0000\u0000\u028c\u028d\u0005#\u0000\u0000\u028d"+
+ "u\u0001\u0000\u0000\u0000\u028e\u0290\u0007\u0000\u0000\u0000\u028f\u028e"+
+ "\u0001\u0000\u0000\u0000\u028f\u0290\u0001\u0000\u0000\u0000\u0290\u0291"+
+ "\u0001\u0000\u0000\u0000\u0291\u0292\u0005\"\u0000\u0000\u0292w\u0001"+
+ "\u0000\u0000\u0000\u0293\u0294\u0005!\u0000\u0000\u0294y\u0001\u0000\u0000"+
+ "\u0000\u0295\u0296\u0007\u0007\u0000\u0000\u0296{\u0001\u0000\u0000\u0000"+
+ "\u0297\u0298\u0005\u0006\u0000\u0000\u0298\u0299\u0003~?\u0000\u0299}"+
+ "\u0001\u0000\u0000\u0000\u029a\u029b\u0005O\u0000\u0000\u029b\u029c\u0003"+
+ "\u0002\u0001\u0000\u029c\u029d\u0005P\u0000\u0000\u029d\u007f\u0001\u0000"+
+ "\u0000\u0000\u029e\u029f\u0005\u000e\u0000\u0000\u029f\u02a0\u0005p\u0000"+
+ "\u0000\u02a0\u0081\u0001\u0000\u0000\u0000\u02a1\u02a2\u0005\u0004\u0000"+
+ "\u0000\u02a2\u02a5\u0005f\u0000\u0000\u02a3\u02a4\u00057\u0000\u0000\u02a4"+
+ "\u02a6\u0003H$\u0000\u02a5\u02a3\u0001\u0000\u0000\u0000\u02a5\u02a6\u0001"+
+ "\u0000\u0000\u0000\u02a6\u02b0\u0001\u0000\u0000\u0000\u02a7\u02a8\u0005"+
+ "=\u0000\u0000\u02a8\u02ad\u0003\u0084B\u0000\u02a9\u02aa\u0005*\u0000"+
+ "\u0000\u02aa\u02ac\u0003\u0084B\u0000\u02ab\u02a9\u0001\u0000\u0000\u0000"+
+ "\u02ac\u02af\u0001\u0000\u0000\u0000\u02ad\u02ab\u0001\u0000\u0000\u0000"+
+ "\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae\u02b1\u0001\u0000\u0000\u0000"+
+ "\u02af\u02ad\u0001\u0000\u0000\u0000\u02b0\u02a7\u0001\u0000\u0000\u0000"+
+ "\u02b0\u02b1\u0001\u0000\u0000\u0000\u02b1\u0083\u0001\u0000\u0000\u0000"+
+ "\u02b2\u02b3\u0003H$\u0000\u02b3\u02b4\u0005&\u0000\u0000\u02b4\u02b6"+
+ "\u0001\u0000\u0000\u0000\u02b5\u02b2\u0001\u0000\u0000\u0000\u02b5\u02b6"+
+ "\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000\u02b7\u02b8"+
+ "\u0003H$\u0000\u02b8\u0085\u0001\u0000\u0000\u0000\u02b9\u02ba\u0005\u0013"+
+ "\u0000\u0000\u02ba\u02bd\u0003F#\u0000\u02bb\u02bc\u00057\u0000\u0000"+
+ "\u02bc\u02be\u0003F#\u0000\u02bd\u02bb\u0001\u0000\u0000\u0000\u02bd\u02be"+
+ "\u0001\u0000\u0000\u0000\u02be\u02c4\u0001\u0000\u0000\u0000\u02bf\u02c0"+
+ "\u0005b\u0000\u0000\u02c0\u02c1\u0003F#\u0000\u02c1\u02c2\u0005*\u0000"+
+ "\u0000\u02c2\u02c3\u0003F#\u0000\u02c3\u02c5\u0001\u0000\u0000\u0000\u02c4"+
+ "\u02bf\u0001\u0000\u0000\u0000\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5"+
+ "\u0087\u0001\u0000\u0000\u0000\u02c6\u02c7\u0005\u0015\u0000\u0000\u02c7"+
+ "\u02c8\u0003,\u0016\u0000\u02c8\u02c9\u00057\u0000\u0000\u02c9\u02ca\u0003"+
+ "J%\u0000\u02ca\u0089\u0001\u0000\u0000\u0000\u02cb\u02cc\u0005\u0014\u0000"+
+ "\u0000\u02cc\u02cf\u0003B!\u0000\u02cd\u02ce\u0005\'\u0000\u0000\u02ce"+
+ "\u02d0\u0003\"\u0011\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000\u02cf\u02d0"+
+ "\u0001\u0000\u0000\u0000\u02d0\u008b\u0001\u0000\u0000\u0000\u02d1\u02d2"+
+ "\u0007\b\u0000\u0000\u02d2\u02d3\u0005~\u0000\u0000\u02d3\u02d4\u0003"+
+ "\u008eG\u0000\u02d4\u02d5\u0003\u0090H\u0000\u02d5\u008d\u0001\u0000\u0000"+
+ "\u0000\u02d6\u02d7\u0003,\u0016\u0000\u02d7\u008f\u0001\u0000\u0000\u0000"+
+ "\u02d8\u02d9\u00057\u0000\u0000\u02d9\u02de\u0003\u0092I\u0000\u02da\u02db"+
+ "\u0005*\u0000\u0000\u02db\u02dd\u0003\u0092I\u0000\u02dc\u02da\u0001\u0000"+
+ "\u0000\u0000\u02dd\u02e0\u0001\u0000\u0000\u0000\u02de\u02dc\u0001\u0000"+
+ "\u0000\u0000\u02de\u02df\u0001\u0000\u0000\u0000\u02df\u0091\u0001\u0000"+
+ "\u0000\u0000\u02e0\u02de\u0001\u0000\u0000\u0000\u02e1\u02e2\u0003\u0010"+
+ "\b\u0000\u02e2\u0093\u0001\u0000\u0000\u0000\u02e3\u02e4\u0005\u0017\u0000"+
+ "\u0000\u02e4\u02e5\u0003P(\u0000\u02e5\u02e6\u00057\u0000\u0000\u02e6"+
+ "\u02e9\u0003&\u0013\u0000\u02e7\u02e8\u0005=\u0000\u0000\u02e8\u02ea\u0003"+
+ "V+\u0000\u02e9\u02e7\u0001\u0000\u0000\u0000\u02e9\u02ea\u0001\u0000\u0000"+
+ "\u0000\u02ea\u0095\u0001\u0000\u0000\u0000\u02eb\u02ef\u0005\u0001\u0000"+
+ "\u0000\u02ec\u02ed\u0003F#\u0000\u02ed\u02ee\u0005&\u0000\u0000\u02ee"+
+ "\u02f0\u0001\u0000\u0000\u0000\u02ef\u02ec\u0001\u0000\u0000\u0000\u02ef"+
+ "\u02f0\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1"+
+ "\u02f2\u0003\u0014\n\u0000\u02f2\u02f3\u0005=\u0000\u0000\u02f3\u02f4"+
+ "\u0003V+\u0000\u02f4\u0097\u0001\u0000\u0000\u0000\u02f5\u02f6\u0005\u0018"+
+ "\u0000\u0000\u02f6\u02f7\u0003t:\u0000\u02f7\u0099\u0001\u0000\u0000\u0000"+
+ "H\u00a5\u00ae\u00c7\u00d3\u00dc\u00e4\u00e9\u00f1\u00f3\u00f8\u00ff\u0106"+
+ "\u010f\u0114\u0119\u0123\u0129\u0131\u0133\u013e\u0145\u0150\u0155\u0157"+
+ "\u0163\u0176\u017c\u0185\u018b\u0193\u0197\u01a2\u01ae\u01b6\u01c3\u01c7"+
+ "\u01cb\u01d2\u01d6\u01dd\u01e3\u01ea\u01f2\u01fa\u0202\u0213\u021e\u0229"+
+ "\u022e\u0232\u0236\u023b\u0246\u024b\u024f\u025d\u0268\u026e\u027c\u0287"+
+ "\u028a\u028f\u02a5\u02ad\u02b0\u02b5\u02bd\u02c4\u02cf\u02de\u02e9\u02ef";
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/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
index 62fcd7b22e738..a394a99a8bb71 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
@@ -708,20 +708,6 @@ public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) {
public PlanFactory visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) {
var probability = visitDecimalValue(ctx.probability);
- Literal seed;
- if (ctx.seed != null) {
- seed = visitIntegerValue(ctx.seed);
- if (seed.dataType() != DataType.INTEGER) {
- throw new ParsingException(
- seed.source(),
- "seed must be an integer, provided [{}] of type [{}]",
- ctx.seed.getText(),
- seed.dataType()
- );
- }
- } else {
- seed = null;
- }
- return plan -> new Sample(source(ctx), probability, seed, plan);
+ return plan -> new Sample(source(ctx), probability, plan);
}
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
index ea4e9396ecca8..e85d77b3c0f39 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
@@ -9,7 +9,6 @@
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
-import org.elasticsearch.core.Nullable;
import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQuery;
import org.elasticsearch.xpack.esql.capabilities.PostAnalysisVerificationAware;
import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
@@ -30,19 +29,16 @@ public class Sample extends UnaryPlan implements TelemetryAware, PostAnalysisVer
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Sample", Sample::new);
private final Expression probability;
- private final Expression seed;
- public Sample(Source source, Expression probability, @Nullable Expression seed, LogicalPlan child) {
+ public Sample(Source source, Expression probability, LogicalPlan child) {
super(source, child);
this.probability = probability;
- this.seed = seed;
}
private Sample(StreamInput in) throws IOException {
this(
Source.readFrom((PlanStreamInput) in),
in.readNamedWriteable(Expression.class), // probability
- in.readOptionalNamedWriteable(Expression.class), // seed
in.readNamedWriteable(LogicalPlan.class) // child
);
}
@@ -51,7 +47,6 @@ private Sample(StreamInput in) throws IOException {
public void writeTo(StreamOutput out) throws IOException {
source().writeTo(out);
out.writeNamedWriteable(probability);
- out.writeOptionalNamedWriteable(seed);
out.writeNamedWriteable(child());
}
@@ -62,30 +57,26 @@ public String getWriteableName() {
@Override
protected NodeInfo info() {
- return NodeInfo.create(this, Sample::new, probability, seed, child());
+ return NodeInfo.create(this, Sample::new, probability, child());
}
@Override
public Sample replaceChild(LogicalPlan newChild) {
- return new Sample(source(), probability, seed, newChild);
+ return new Sample(source(), probability, newChild);
}
public Expression probability() {
return probability;
}
- public Expression seed() {
- return seed;
- }
-
@Override
public boolean expressionsResolved() {
- return probability.resolved() && (seed == null || seed.resolved());
+ return probability.resolved();
}
@Override
public int hashCode() {
- return Objects.hash(probability, seed, child());
+ return Objects.hash(probability, child());
}
@Override
@@ -99,7 +90,7 @@ public boolean equals(Object obj) {
var other = (Sample) obj;
- return Objects.equals(probability, other.probability) && Objects.equals(seed, other.seed) && Objects.equals(child(), other.child());
+ return Objects.equals(probability, other.probability) && Objects.equals(child(), other.child());
}
@Override
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java
index e110a1b60928a..25dbf633713da 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java
@@ -10,9 +10,6 @@
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
-import org.elasticsearch.core.Nullable;
-import org.elasticsearch.xpack.esql.capabilities.PostPhysicalOptimizationVerificationAware;
-import org.elasticsearch.xpack.esql.common.Failures;
import org.elasticsearch.xpack.esql.core.expression.Expression;
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
import org.elasticsearch.xpack.esql.core.tree.Source;
@@ -21,9 +18,7 @@
import java.io.IOException;
import java.util.Objects;
-import static org.elasticsearch.xpack.esql.common.Failure.fail;
-
-public class SampleExec extends UnaryExec implements PostPhysicalOptimizationVerificationAware {
+public class SampleExec extends UnaryExec {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
PhysicalPlan.class,
"SampleExec",
@@ -31,20 +26,17 @@ public class SampleExec extends UnaryExec implements PostPhysicalOptimizationVer
);
private final Expression probability;
- private final Expression seed;
- public SampleExec(Source source, PhysicalPlan child, Expression probability, @Nullable Expression seed) {
+ public SampleExec(Source source, PhysicalPlan child, Expression probability) {
super(source, child);
this.probability = probability;
- this.seed = seed;
}
public SampleExec(StreamInput in) throws IOException {
this(
Source.readFrom((PlanStreamInput) in),
in.readNamedWriteable(PhysicalPlan.class), // child
- in.readNamedWriteable(Expression.class), // probability
- in.readOptionalNamedWriteable(Expression.class) // seed
+ in.readNamedWriteable(Expression.class) // probability
);
}
@@ -53,17 +45,16 @@ public void writeTo(StreamOutput out) throws IOException {
source().writeTo(out);
out.writeNamedWriteable(child());
out.writeNamedWriteable(probability);
- out.writeOptionalNamedWriteable(seed);
}
@Override
public UnaryExec replaceChild(PhysicalPlan newChild) {
- return new SampleExec(source(), newChild, probability, seed);
+ return new SampleExec(source(), newChild, probability);
}
@Override
protected NodeInfo extends PhysicalPlan> info() {
- return NodeInfo.create(this, SampleExec::new, child(), probability, seed);
+ return NodeInfo.create(this, SampleExec::new, child(), probability);
}
/**
@@ -78,13 +69,9 @@ public Expression probability() {
return probability;
}
- public Expression seed() {
- return seed;
- }
-
@Override
public int hashCode() {
- return Objects.hash(child(), probability, seed);
+ return Objects.hash(child(), probability);
}
@Override
@@ -98,17 +85,6 @@ public boolean equals(Object obj) {
var other = (SampleExec) obj;
- return Objects.equals(child(), other.child()) && Objects.equals(probability, other.probability) && Objects.equals(seed, other.seed);
- }
-
- @Override
- public void postPhysicalOptimizationVerification(Failures failures) {
- // It's currently impossible in ES|QL to handle all data in deterministic order, therefore
- // a fixed random seed in the sample operator doesn't work as intended and is disallowed.
- // TODO: fix this.
- if (seed != null) {
- // TODO: what should the error message here be? This doesn't seem right.
- failures.add(fail(seed, "Seed not supported when sampling can't be pushed down to Lucene"));
- }
+ return Objects.equals(child(), other.child()) && Objects.equals(probability, other.probability);
}
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java
index fc770ef02e743..c9e8decb93f65 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java
@@ -7,7 +7,6 @@
package org.elasticsearch.xpack.esql.planner;
-import org.elasticsearch.common.Randomness;
import org.elasticsearch.common.lucene.BytesRefs;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.util.BigArrays;
@@ -810,8 +809,7 @@ private PhysicalOperation planChangePoint(ChangePointExec changePoint, LocalExec
private PhysicalOperation planSample(SampleExec rsx, LocalExecutionPlannerContext context) {
PhysicalOperation source = plan(rsx.child(), context);
var probability = (double) Foldables.valueOf(context.foldCtx(), rsx.probability());
- var seed = rsx.seed() != null ? (int) Foldables.valueOf(context.foldCtx(), rsx.seed()) : Randomness.get().nextInt();
- return source.with(new SampleOperator.Factory(probability, seed), source.layout);
+ return source.with(new SampleOperator.Factory(probability), source.layout);
}
/**
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java
index c1195b6f14ac4..a7d9adb1014af 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/LocalMapper.java
@@ -86,7 +86,7 @@ private PhysicalPlan mapUnary(UnaryPlan unary) {
}
if (unary instanceof Sample sample) {
- return new SampleExec(sample.source(), mappedChild, sample.probability(), sample.seed());
+ return new SampleExec(sample.source(), mappedChild, sample.probability());
}
//
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
index bde0eb843ddc2..cca65657bbe5b 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java
@@ -184,7 +184,7 @@ private PhysicalPlan mapUnary(UnaryPlan unary) {
// TODO: share code with local LocalMapper?
if (unary instanceof Sample sample) {
mappedChild = addExchangeForFragment(sample, mappedChild);
- return new SampleExec(sample.source(), mappedChild, sample.probability(), sample.seed());
+ return new SampleExec(sample.source(), mappedChild, sample.probability());
}
//
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
index b47cc662e82a9..a1de71d469203 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
@@ -7723,9 +7723,9 @@ public void testSampleMerged() {
var query = """
FROM TEST
- | SAMPLE .3 5
+ | SAMPLE .3
| EVAL irrelevant1 = 1
- | SAMPLE .5 10
+ | SAMPLE .5
| EVAL irrelevant2 = 2
| SAMPLE .1
""";
@@ -7737,7 +7737,6 @@ public void testSampleMerged() {
var source = as(sample.child(), EsRelation.class);
assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.015));
- assertThat(sample.seed().fold(FoldContext.small()), equalTo(5 ^ 10));
}
public void testSamplePushDown() {
@@ -7762,7 +7761,6 @@ public void testSamplePushDown() {
var source = as(sample.child(), EsRelation.class);
assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.5));
- assertNull(sample.seed());
}
}
@@ -7778,7 +7776,6 @@ public void testSamplePushDown_sort() {
var source = as(sample.child(), EsRelation.class);
assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.5));
- assertNull(sample.seed());
}
public void testSamplePushDown_where() {
@@ -7792,7 +7789,6 @@ public void testSamplePushDown_where() {
var source = as(sample.child(), EsRelation.class);
assertThat(sample.probability().fold(FoldContext.small()), equalTo(0.5));
- assertNull(sample.seed());
}
public void testSampleNoPushDown() {
@@ -7849,7 +7845,7 @@ public void testSampleNoPushDownChangePoint() {
var query = """
FROM TEST
| CHANGE_POINT emp_no ON hire_date
- | SAMPLE .5 -55
+ | SAMPLE .5
""";
var optimized = optimizedPlan(query);
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
index 4d934a5b490aa..fab2b1cbbf960 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -8038,7 +8038,7 @@ public void testSamplePushDown() {
var plan = physicalPlan("""
FROM test
- | SAMPLE +0.1 -234
+ | SAMPLE +0.1
""");
var optimized = optimizedPlan(plan);
@@ -8052,24 +8052,9 @@ public void testSamplePushDown() {
var filter = boolQuery.filter();
var randomSampling = as(filter.get(0), RandomSamplingQueryBuilder.class);
assertThat(randomSampling.probability(), equalTo(0.1));
- assertThat(randomSampling.seed(), equalTo(-234));
assertThat(randomSampling.hash(), equalTo(0));
}
- public void testSample_seedNotSupportedInOperator() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
-
- optimizedPlan(physicalPlan("FROM test | SAMPLE 0.1"));
- optimizedPlan(physicalPlan("FROM test | SAMPLE 0.1 42"));
- optimizedPlan(physicalPlan("FROM test | MV_EXPAND first_name | SAMPLE 0.1"));
-
- VerificationException e = expectThrows(
- VerificationException.class,
- () -> optimizedPlan(physicalPlan("FROM test | MV_EXPAND first_name | SAMPLE 0.1 42"))
- );
- assertThat(e.getMessage(), equalTo("Found 1 problem\nline 1:47: Seed not supported when sampling can't be pushed down to Lucene"));
- }
-
@SuppressWarnings("SameParameterValue")
private static void assertFilterCondition(
Filter filter,
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index c363ed4c18bfa..3d0ade79870f1 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -3455,11 +3455,10 @@ public void testInvalidCompletion() {
public void testSample() {
assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE.isEnabled());
- expectError("FROM test | SAMPLE .1 2 3", "line 1:25: extraneous input '3' expecting ");
+ expectError("FROM test | SAMPLE .1 2", "line 1:23: extraneous input '2' expecting ");
expectError("FROM test | SAMPLE .1 \"2\"", "line 1:23: extraneous input '\"2\"' expecting ");
expectError("FROM test | SAMPLE 1", "line 1:20: mismatched input '1' expecting {DECIMAL_LITERAL, '+', '-'}");
expectError("FROM test | SAMPLE", "line 1:19: mismatched input '' expecting {DECIMAL_LITERAL, '+', '-'}");
- expectError("FROM test | SAMPLE +.1 2147483648", "line 1:24: seed must be an integer, provided [2147483648] of type [LONG]");
}
static Alias alias(String name, Expression value) {
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java
index f24d738789b3e..f5303a12dde72 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java
@@ -20,7 +20,7 @@ public class SampleSerializationTests extends AbstractLogicalPlanSerializationTe
*/
@Override
protected Sample createTestInstance() {
- return new Sample(randomSource(), randomProbability(), randomSeed(), randomChild(0));
+ return new Sample(randomSource(), randomProbability(), randomChild(0));
}
public static Literal randomProbability() {
@@ -40,15 +40,13 @@ public static Literal randomSeed() {
@Override
protected Sample mutateInstance(Sample instance) throws IOException {
var probability = instance.probability();
- var seed = instance.seed();
var child = instance.child();
- int updateSelector = randomIntBetween(0, 2);
+ int updateSelector = randomIntBetween(0, 1);
switch (updateSelector) {
case 0 -> probability = randomValueOtherThan(probability, SampleSerializationTests::randomProbability);
- case 1 -> seed = randomValueOtherThan(seed, SampleSerializationTests::randomSeed);
- case 2 -> child = randomValueOtherThan(child, () -> randomChild(0));
+ case 1 -> child = randomValueOtherThan(child, () -> randomChild(0));
default -> throw new IllegalArgumentException("Invalid selector: " + updateSelector);
}
- return new Sample(instance.source(), probability, seed, child);
+ return new Sample(instance.source(), probability, child);
}
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java
index 12159d8afae7c..385e2e37aa140 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java
@@ -12,7 +12,6 @@
import java.io.IOException;
import static org.elasticsearch.xpack.esql.plan.logical.SampleSerializationTests.randomProbability;
-import static org.elasticsearch.xpack.esql.plan.logical.SampleSerializationTests.randomSeed;
public class SampleExecSerializationTests extends AbstractPhysicalPlanSerializationTests {
/**
@@ -22,7 +21,7 @@ public class SampleExecSerializationTests extends AbstractPhysicalPlanSerializat
*/
@Override
protected SampleExec createTestInstance() {
- return new SampleExec(randomSource(), randomChild(0), randomProbability(), randomSeed());
+ return new SampleExec(randomSource(), randomChild(0), randomProbability());
}
/**
@@ -34,15 +33,13 @@ protected SampleExec createTestInstance() {
@Override
protected SampleExec mutateInstance(SampleExec instance) throws IOException {
var probability = instance.probability();
- var seed = instance.seed();
var child = instance.child();
- int updateSelector = randomIntBetween(0, 2);
+ int updateSelector = randomIntBetween(0, 1);
switch (updateSelector) {
case 0 -> probability = randomValueOtherThan(probability, SampleSerializationTests::randomProbability);
- case 1 -> seed = randomValueOtherThan(seed, SampleSerializationTests::randomSeed);
- case 2 -> child = randomValueOtherThan(child, () -> randomChild(0));
+ case 1 -> child = randomValueOtherThan(child, () -> randomChild(0));
default -> throw new IllegalArgumentException("Invalid selector: " + updateSelector);
}
- return new SampleExec(instance.source(), child, probability, seed);
+ return new SampleExec(instance.source(), child, probability);
}
}
From 954a9017f292c1197b99b921c55f778f6be35037 Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Wed, 11 Jun 2025 11:29:56 +0200
Subject: [PATCH 05/11] rename ES|QL sample capability (#129193)
---
.../esql/qa/rest/RestSampleTestCase.java | 2 +-
.../src/main/resources/sample.csv-spec | 26 +++++++++----------
.../xpack/esql/action/EsqlCapabilities.java | 2 +-
.../xpack/esql/analysis/AnalyzerTests.java | 2 +-
.../optimizer/LogicalPlanOptimizerTests.java | 14 +++++-----
.../optimizer/PhysicalPlanOptimizerTests.java | 2 +-
.../esql/parser/StatementParserTests.java | 2 +-
7 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
index 2362c163d57d8..1b928df3367fc 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
@@ -33,7 +33,7 @@ public class RestSampleTestCase extends ESRestTestCase {
public void skipWhenSampleDisabled() throws IOException {
assumeTrue(
"Requires SAMPLE capability",
- EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.SAMPLE.capabilityName()))
+ EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.SAMPLE_V2.capabilityName()))
);
}
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
index 237eee40e60b7..da14b7d3ebc36 100644
--- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
@@ -9,7 +9,7 @@
// because the CSV tests don't support such assertions.
row
-required_capability: sample
+required_capability: sample_v2
ROW x = 1 | SAMPLE .999999999
;
@@ -20,7 +20,7 @@ x:integer
row and mv_expand
-required_capability: sample
+required_capability: sample_v2
ROW x = [1,2,3,4,5] | MV_EXPAND x | SAMPLE .999999999
;
@@ -35,7 +35,7 @@ x:integer
adjust stats for sampling
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SAMPLE 0.5
@@ -53,7 +53,7 @@ true
before where
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SAMPLE 0.5
@@ -71,7 +71,7 @@ true
after where
-required_capability: sample
+required_capability: sample_v2
FROM employees
| WHERE emp_no <= 10050
@@ -89,7 +89,7 @@ true
before sort
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SAMPLE 0.5
@@ -107,7 +107,7 @@ true
after sort
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SORT emp_no
@@ -125,7 +125,7 @@ true
before limit
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SAMPLE 0.5
@@ -141,7 +141,7 @@ true
after limit
-required_capability: sample
+required_capability: sample_v2
FROM employees
| LIMIT 50
@@ -158,7 +158,7 @@ true
before mv_expand
-required_capability: sample
+required_capability: sample_v2
ROW x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50], y = [1,2]
| MV_EXPAND x
@@ -176,7 +176,7 @@ true
after mv_expand
-required_capability: sample
+required_capability: sample_v2
ROW x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50], y = [1,2]
| MV_EXPAND x
@@ -194,7 +194,7 @@ true
multiple samples
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SAMPLE 0.7
@@ -213,7 +213,7 @@ true
after stats
-required_capability: sample
+required_capability: sample_v2
FROM employees
| SAMPLE 0.5
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 8ca65dc8c0f1a..4f3afc169f6ef 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
@@ -965,7 +965,7 @@ public enum Cap {
/**
* Support for the SAMPLE command
*/
- SAMPLE(Build.current().isSnapshot());
+ SAMPLE_V2(Build.current().isSnapshot());
private final boolean enabled;
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
index 43a67d69d831c..a9d2c92f7d228 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
@@ -3167,7 +3167,7 @@ private boolean isMultiTypeEsField(Expression e) {
}
public void testRandomSampleProbability() {
- assumeTrue("requires SAMPLE capability", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("requires SAMPLE capability", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE 1."));
assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [1.0]"));
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
index a1de71d469203..ad3c6f073e785 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
@@ -7719,7 +7719,7 @@ public void testPruneRedundantOrderBy() {
* \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
*/
public void testSampleMerged() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var query = """
FROM TEST
@@ -7740,7 +7740,7 @@ public void testSampleMerged() {
}
public void testSamplePushDown() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
for (var command : List.of(
"ENRICH languages_idx on first_name",
@@ -7765,7 +7765,7 @@ public void testSamplePushDown() {
}
public void testSamplePushDown_sort() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var query = "FROM TEST | WHERE emp_no > 0 | SAMPLE 0.5 | LIMIT 100";
var optimized = optimizedPlan(query);
@@ -7779,7 +7779,7 @@ public void testSamplePushDown_sort() {
}
public void testSamplePushDown_where() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var query = "FROM TEST | SORT emp_no | SAMPLE 0.5 | LIMIT 100";
var optimized = optimizedPlan(query);
@@ -7792,7 +7792,7 @@ public void testSamplePushDown_where() {
}
public void testSampleNoPushDown() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
for (var command : List.of("LIMIT 100", "MV_EXPAND languages", "STATS COUNT()")) {
var query = "FROM TEST | " + command + " | SAMPLE .5";
@@ -7814,7 +7814,7 @@ public void testSampleNoPushDown() {
* \_EsRelation[languages_lookup][LOOKUP][language_code{f}#17, language_name{f}#18]
*/
public void testSampleNoPushDownLookupJoin() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var query = """
FROM TEST
@@ -7840,7 +7840,7 @@ public void testSampleNoPushDownLookupJoin() {
* \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
*/
public void testSampleNoPushDownChangePoint() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var query = """
FROM TEST
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
index fab2b1cbbf960..1f3b358ed6403 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -8034,7 +8034,7 @@ public void testNotEqualsPushdownToDelegate() {
* [_doc{f}#24], limit[1000], sort[] estimatedRowSize[332]
*/
public void testSamplePushDown() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
var plan = physicalPlan("""
FROM test
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index 3d0ade79870f1..cf924c21c139d 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -3454,7 +3454,7 @@ public void testInvalidCompletion() {
}
public void testSample() {
- assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE.isEnabled());
+ assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
expectError("FROM test | SAMPLE .1 2", "line 1:23: extraneous input '2' expecting ");
expectError("FROM test | SAMPLE .1 \"2\"", "line 1:23: extraneous input '\"2\"' expecting ");
expectError("FROM test | SAMPLE 1", "line 1:20: mismatched input '1' expecting {DECIMAL_LITERAL, '+', '-'}");
From 691ea08ce5327b34bf4e7bf910295f11892f9d59 Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Fri, 13 Jun 2025 10:46:31 +0200
Subject: [PATCH 06/11] remove stats correction from ES|QL sample (#129319)
* remove stats correction from ES|QL sample
* [CI] Auto commit changes from spotless
---------
Co-authored-by: elasticsearchmachine
---
.../esql/qa/rest/RestSampleTestCase.java | 2 +-
.../src/main/resources/sample.csv-spec | 72 +++++++++----------
.../xpack/esql/action/EsqlCapabilities.java | 2 +-
.../expression/function/aggregate/Count.java | 25 +------
.../aggregate/HasSampleCorrection.java | 21 ------
.../expression/function/aggregate/Sum.java | 30 +-------
.../esql/optimizer/LogicalPlanOptimizer.java | 2 -
.../rules/logical/ApplySampleCorrections.java | 55 --------------
.../xpack/esql/analysis/AnalyzerTests.java | 2 +-
.../optimizer/LogicalPlanOptimizerTests.java | 14 ++--
.../optimizer/PhysicalPlanOptimizerTests.java | 2 +-
.../esql/parser/StatementParserTests.java | 2 +-
12 files changed, 46 insertions(+), 183 deletions(-)
delete mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/HasSampleCorrection.java
delete mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ApplySampleCorrections.java
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
index 1b928df3367fc..913dff4655a2b 100644
--- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestSampleTestCase.java
@@ -33,7 +33,7 @@ public class RestSampleTestCase extends ESRestTestCase {
public void skipWhenSampleDisabled() throws IOException {
assumeTrue(
"Requires SAMPLE capability",
- EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.SAMPLE_V2.capabilityName()))
+ EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.SAMPLE_V3.capabilityName()))
);
}
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
index da14b7d3ebc36..47bb70bd8ce26 100644
--- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
@@ -9,7 +9,7 @@
// because the CSV tests don't support such assertions.
row
-required_capability: sample_v2
+required_capability: sample_v3
ROW x = 1 | SAMPLE .999999999
;
@@ -20,7 +20,7 @@ x:integer
row and mv_expand
-required_capability: sample_v2
+required_capability: sample_v3
ROW x = [1,2,3,4,5] | MV_EXPAND x | SAMPLE .999999999
;
@@ -35,15 +35,14 @@ x:integer
adjust stats for sampling
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SAMPLE 0.5
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no), sum_emp_no = SUM(emp_no)
- | EVAL is_expected = count >= 20 AND count <= 180 AND
- values_count >= 10 AND values_count <= 90 AND
+ | STATS count = COUNT(), avg_emp_no = AVG(emp_no), sum_emp_no = SUM(emp_no)
+ | EVAL is_expected = count >= 10 AND count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090 AND
- sum_emp_no > 20*10010 AND sum_emp_no < 180*10090
+ sum_emp_no > 10*10010 AND sum_emp_no < 90*10090
| KEEP is_expected
;
@@ -53,14 +52,13 @@ true
before where
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SAMPLE 0.5
| WHERE emp_no > 10050
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 5 AND count <= 95 AND
- values_count >= 2 AND values_count <= 48 AND
+ | STATS count = COUNT(), avg_emp_no = AVG(emp_no)
+ | EVAL is_expected = count >= 2 AND count <= 48 AND
avg_emp_no > 10055 AND avg_emp_no < 10095
| KEEP is_expected
;
@@ -71,14 +69,13 @@ true
after where
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| WHERE emp_no <= 10050
| SAMPLE 0.5
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 5 AND count <= 95 AND
- values_count >= 2 AND values_count <= 48 AND
+ | STATS count = COUNT(), avg_emp_no = AVG(emp_no)
+ | EVAL is_expected = count >= 2 AND count <= 48 AND
avg_emp_no > 10005 AND avg_emp_no < 10045
| KEEP is_expected
;
@@ -89,14 +86,13 @@ true
before sort
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SAMPLE 0.5
| SORT emp_no
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 20 AND count <= 180 AND
- values_count >= 10 AND values_count <= 90 AND
+ | STATS count = COUNT(), avg_emp_no = AVG(emp_no)
+ | EVAL is_expected = count >= 10 AND count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090
| KEEP is_expected
;
@@ -107,14 +103,13 @@ true
after sort
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SORT emp_no
| SAMPLE 0.5
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 20 AND count <= 180 AND
- values_count >= 10 AND values_count <= 90 AND
+ | STATS count = COUNT(), avg_emp_no = AVG(emp_no)
+ | EVAL is_expected = count >= 10 AND count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090
| KEEP is_expected
;
@@ -125,13 +120,13 @@ true
before limit
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SAMPLE 0.5
| LIMIT 10
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no))
- | EVAL is_expected = count == 10 AND values_count == 10
+ | STATS count = COUNT(emp_no)
+ | EVAL is_expected = count == 10
| KEEP is_expected
;
@@ -141,14 +136,13 @@ true
after limit
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| LIMIT 50
| SAMPLE 0.5
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no))
- | EVAL is_expected = count >= 5 AND count <= 95 AND
- values_count >= 2 AND values_count <= 48
+ | STATS count = COUNT(emp_no)
+ | EVAL is_expected = count >= 2 AND count <= 48
| KEEP is_expected
;
@@ -158,7 +152,7 @@ true
before mv_expand
-required_capability: sample_v2
+required_capability: sample_v3
ROW x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50], y = [1,2]
| MV_EXPAND x
@@ -176,7 +170,7 @@ true
after mv_expand
-required_capability: sample_v2
+required_capability: sample_v3
ROW x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50], y = [1,2]
| MV_EXPAND x
@@ -194,15 +188,14 @@ true
multiple samples
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SAMPLE 0.7
| SAMPLE 0.8
| SAMPLE 0.9
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(emp_no)), avg_emp_no = AVG(emp_no)
- | EVAL is_expected = count >= 20 AND count <= 180 AND
- values_count >= 10 AND values_count <= 90 AND
+ | STATS count = COUNT(), avg_emp_no = AVG(emp_no)
+ | EVAL is_expected = count >= 10 AND count <= 90 AND
avg_emp_no > 10010 AND avg_emp_no < 10090
| KEEP is_expected
;
@@ -213,15 +206,14 @@ true
after stats
-required_capability: sample_v2
+required_capability: sample_v3
FROM employees
| SAMPLE 0.5
| STATS avg_salary = AVG(salary) BY job_positions
| SAMPLE 0.8
- | STATS count = COUNT(), values_count = MV_COUNT(VALUES(avg_salary)), avg_avg_salary = AVG(avg_salary)
- | EVAL is_expected = count >= 1 AND count <= 20 AND
- values_count >= 1 AND values_count <= 16 AND
+ | STATS count = COUNT(), avg_avg_salary = AVG(avg_salary)
+ | EVAL is_expected = count >= 1 AND count <= 16 AND
avg_avg_salary > 25000 AND avg_avg_salary < 75000
| KEEP is_expected
;
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 4f3afc169f6ef..296c207dc8c72 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
@@ -965,7 +965,7 @@ public enum Cap {
/**
* Support for the SAMPLE command
*/
- SAMPLE_V2(Build.current().isSnapshot());
+ SAMPLE_V3(Build.current().isSnapshot());
private final boolean enabled;
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Count.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Count.java
index 294d926aef011..14dc629194dcf 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Count.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Count.java
@@ -24,10 +24,8 @@
import org.elasticsearch.xpack.esql.expression.function.FunctionInfo;
import org.elasticsearch.xpack.esql.expression.function.Param;
import org.elasticsearch.xpack.esql.expression.function.scalar.convert.FromAggregateMetricDouble;
-import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToLong;
import org.elasticsearch.xpack.esql.expression.function.scalar.multivalue.MvCount;
import org.elasticsearch.xpack.esql.expression.function.scalar.nulls.Coalesce;
-import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Div;
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Mul;
import org.elasticsearch.xpack.esql.planner.ToAggregator;
@@ -38,11 +36,9 @@
import static org.elasticsearch.xpack.esql.core.expression.TypeResolutions.ParamOrdinal.DEFAULT;
import static org.elasticsearch.xpack.esql.core.expression.TypeResolutions.isType;
-public class Count extends AggregateFunction implements ToAggregator, SurrogateExpression, HasSampleCorrection {
+public class Count extends AggregateFunction implements ToAggregator, SurrogateExpression {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "Count", Count::new);
- private final boolean isSampleCorrected;
-
@FunctionInfo(
returnType = "long",
description = "Returns the total number (count) of input values.",
@@ -97,20 +93,11 @@ public Count(
}
public Count(Source source, Expression field, Expression filter) {
- this(source, field, filter, false);
- }
-
- private Count(Source source, Expression field, Expression filter, boolean isSampleCorrected) {
super(source, field, filter, emptyList());
- this.isSampleCorrected = isSampleCorrected;
}
private Count(StreamInput in) throws IOException {
super(in);
- // isSampleCorrected is only used during query optimization to mark
- // whether this function has been processed. Hence there's no need to
- // serialize it.
- this.isSampleCorrected = false;
}
@Override
@@ -181,14 +168,4 @@ public Expression surrogate() {
return null;
}
-
- @Override
- public boolean isSampleCorrected() {
- return isSampleCorrected;
- }
-
- @Override
- public Expression sampleCorrection(Expression sampleProbability) {
- return new ToLong(source(), new Div(source(), new Count(source(), field(), filter(), true), sampleProbability));
- }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/HasSampleCorrection.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/HasSampleCorrection.java
deleted file mode 100644
index 59c98d5ac0f82..0000000000000
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/HasSampleCorrection.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * 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.aggregate;
-
-import org.elasticsearch.xpack.esql.core.expression.Expression;
-
-/**
- * Interface signaling to the planner that an aggregation function has to be
- * corrected in the presence of random sampling.
- */
-public interface HasSampleCorrection {
-
- boolean isSampleCorrected();
-
- Expression sampleCorrection(Expression sampleProbability);
-}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Sum.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Sum.java
index 2e8feebbaa1f7..94834aff50ea4 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Sum.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/Sum.java
@@ -25,9 +25,7 @@
import org.elasticsearch.xpack.esql.expression.function.FunctionInfo;
import org.elasticsearch.xpack.esql.expression.function.Param;
import org.elasticsearch.xpack.esql.expression.function.scalar.convert.FromAggregateMetricDouble;
-import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToLong;
import org.elasticsearch.xpack.esql.expression.function.scalar.multivalue.MvSum;
-import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Div;
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Mul;
import java.io.IOException;
@@ -44,11 +42,9 @@
/**
* Sum all values of a field in matching documents.
*/
-public class Sum extends NumericAggregate implements SurrogateExpression, HasSampleCorrection {
+public class Sum extends NumericAggregate implements SurrogateExpression {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "Sum", Sum::new);
- private final boolean isSampleCorrected;
-
@FunctionInfo(
returnType = { "long", "double" },
description = "The sum of a numeric expression.",
@@ -68,20 +64,11 @@ public Sum(Source source, @Param(name = "number", type = { "aggregate_metric_dou
}
public Sum(Source source, Expression field, Expression filter) {
- this(source, field, filter, false);
- }
-
- private Sum(Source source, Expression field, Expression filter, boolean isSampleCorrected) {
super(source, field, filter, emptyList());
- this.isSampleCorrected = isSampleCorrected;
}
private Sum(StreamInput in) throws IOException {
super(in);
- // isSampleCorrected is only used during query optimization to mark
- // whether this function has been processed. Hence there's no need to
- // serialize it.
- this.isSampleCorrected = false;
}
@Override
@@ -159,19 +146,4 @@ public Expression surrogate() {
? new Mul(s, new MvSum(s, field), new Count(s, new Literal(s, StringUtils.WILDCARD, DataType.KEYWORD)))
: null;
}
-
- @Override
- public boolean isSampleCorrected() {
- return isSampleCorrected;
- }
-
- @Override
- public Expression sampleCorrection(Expression sampleProbability) {
- Expression correctedSum = new Div(source(), new Sum(source(), field(), filter(), true), sampleProbability);
- return switch (dataType()) {
- case DOUBLE -> correctedSum;
- case LONG -> new ToLong(source(), correctedSum);
- default -> throw new IllegalStateException("unexpected data type [" + dataType() + "]");
- };
- }
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
index e8112af5ef620..0d17097538c5d 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
@@ -10,7 +10,6 @@
import org.elasticsearch.xpack.esql.VerificationException;
import org.elasticsearch.xpack.esql.common.Failures;
import org.elasticsearch.xpack.esql.core.type.DataType;
-import org.elasticsearch.xpack.esql.optimizer.rules.logical.ApplySampleCorrections;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.BooleanFunctionEqualsElimination;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.BooleanSimplification;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.CombineBinaryComparisons;
@@ -128,7 +127,6 @@ protected static Batch substitutions() {
return new Batch<>(
"Substitutions",
Limiter.ONCE,
- new ApplySampleCorrections(),
new SubstituteSurrogatePlans(),
// Translate filtered expressions into aggregate with filters - can't use surrogate expressions because it was
// retrofitted for constant folding - this needs to be fixed.
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ApplySampleCorrections.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ApplySampleCorrections.java
deleted file mode 100644
index acc26d3996244..0000000000000
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/ApplySampleCorrections.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * 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.optimizer.rules.logical;
-
-import org.elasticsearch.xpack.esql.core.expression.Expression;
-import org.elasticsearch.xpack.esql.core.tree.Source;
-import org.elasticsearch.xpack.esql.expression.function.aggregate.HasSampleCorrection;
-import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Mul;
-import org.elasticsearch.xpack.esql.plan.logical.Aggregate;
-import org.elasticsearch.xpack.esql.plan.logical.Limit;
-import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
-import org.elasticsearch.xpack.esql.plan.logical.Sample;
-import org.elasticsearch.xpack.esql.rule.Rule;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class ApplySampleCorrections extends Rule {
-
- @Override
- public LogicalPlan apply(LogicalPlan logicalPlan) {
- List sampleProbabilities = new ArrayList<>();
- return logicalPlan.transformUp(plan -> {
- if (plan instanceof Sample sample) {
- sampleProbabilities.add(sample.probability());
- }
- if (plan instanceof Aggregate && sampleProbabilities.isEmpty() == false) {
- plan = plan.transformExpressionsOnly(
- e -> e instanceof HasSampleCorrection hsc && hsc.isSampleCorrected() == false
- ? hsc.sampleCorrection(getSampleProbability(sampleProbabilities, e.source()))
- : e
- );
- }
- // Operations that map many to many rows break/reset sampling.
- // Therefore, the sample probabilities are cleared.
- if (plan instanceof Aggregate || plan instanceof Limit) {
- sampleProbabilities.clear();
- }
- return plan;
- });
- }
-
- private static Expression getSampleProbability(List sampleProbabilities, Source source) {
- Expression result = null;
- for (Expression probability : sampleProbabilities) {
- result = result == null ? probability : new Mul(source, result, probability);
- }
- return result;
- }
-}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
index a9d2c92f7d228..3489ecd294273 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
@@ -3167,7 +3167,7 @@ private boolean isMultiTypeEsField(Expression e) {
}
public void testRandomSampleProbability() {
- assumeTrue("requires SAMPLE capability", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("requires SAMPLE capability", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE 1."));
assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [1.0]"));
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
index ad3c6f073e785..88dab83cb39c4 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java
@@ -7719,7 +7719,7 @@ public void testPruneRedundantOrderBy() {
* \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
*/
public void testSampleMerged() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var query = """
FROM TEST
@@ -7740,7 +7740,7 @@ public void testSampleMerged() {
}
public void testSamplePushDown() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
for (var command : List.of(
"ENRICH languages_idx on first_name",
@@ -7765,7 +7765,7 @@ public void testSamplePushDown() {
}
public void testSamplePushDown_sort() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var query = "FROM TEST | WHERE emp_no > 0 | SAMPLE 0.5 | LIMIT 100";
var optimized = optimizedPlan(query);
@@ -7779,7 +7779,7 @@ public void testSamplePushDown_sort() {
}
public void testSamplePushDown_where() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var query = "FROM TEST | SORT emp_no | SAMPLE 0.5 | LIMIT 100";
var optimized = optimizedPlan(query);
@@ -7792,7 +7792,7 @@ public void testSamplePushDown_where() {
}
public void testSampleNoPushDown() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
for (var command : List.of("LIMIT 100", "MV_EXPAND languages", "STATS COUNT()")) {
var query = "FROM TEST | " + command + " | SAMPLE .5";
@@ -7814,7 +7814,7 @@ public void testSampleNoPushDown() {
* \_EsRelation[languages_lookup][LOOKUP][language_code{f}#17, language_name{f}#18]
*/
public void testSampleNoPushDownLookupJoin() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var query = """
FROM TEST
@@ -7840,7 +7840,7 @@ public void testSampleNoPushDownLookupJoin() {
* \_EsRelation[test][_meta_field{f}#12, emp_no{f}#6, first_name{f}#7, ge..]
*/
public void testSampleNoPushDownChangePoint() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var query = """
FROM TEST
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
index 1f3b358ed6403..423c2df080100 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -8034,7 +8034,7 @@ public void testNotEqualsPushdownToDelegate() {
* [_doc{f}#24], limit[1000], sort[] estimatedRowSize[332]
*/
public void testSamplePushDown() {
- assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
var plan = physicalPlan("""
FROM test
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index cf924c21c139d..06484621d3fc3 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -3454,7 +3454,7 @@ public void testInvalidCompletion() {
}
public void testSample() {
- assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE_V2.isEnabled());
+ assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
expectError("FROM test | SAMPLE .1 2", "line 1:23: extraneous input '2' expecting ");
expectError("FROM test | SAMPLE .1 \"2\"", "line 1:23: extraneous input '\"2\"' expecting ");
expectError("FROM test | SAMPLE 1", "line 1:20: mismatched input '1' expecting {DECIMAL_LITERAL, '+', '-'}");
From f1fccf40570d56cb2275660c26c287fc6eacfa56 Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Tue, 17 Jun 2025 12:17:48 +0200
Subject: [PATCH 07/11] Allow parameter for ES|QL SAMPLE (#129392)
* Allow parameter for ES|QL SAMPLE
* fix test to work around issue #120272
* remove unused postAnalysisVerification
---
.../esql/src/main/antlr/EsqlBaseParser.g4 | 2 +-
.../xpack/esql/action/EsqlCapabilities.java | 9 +++++--
.../xpack/esql/parser/EsqlBaseParser.interp | 2 +-
.../xpack/esql/parser/EsqlBaseParser.java | 10 +++----
.../xpack/esql/parser/LogicalPlanBuilder.java | 12 +++++++--
.../xpack/esql/plan/logical/Sample.java | 18 +------------
.../xpack/esql/analysis/AnalyzerTests.java | 15 -----------
.../xpack/esql/analysis/ParsingTests.java | 19 ++++++++++++++
.../esql/parser/StatementParserTests.java | 12 +++++++--
.../rest-api-spec/test/esql/10_basic.yml | 26 ++++++++++++-------
10 files changed, 70 insertions(+), 55 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index dc8af7bfa9e2c..52d8c880fe949 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -392,5 +392,5 @@ completionCommand
;
sampleCommand
- : DEV_SAMPLE probability=decimalValue
+ : DEV_SAMPLE probability=constant
;
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 296c207dc8c72..4434cc7909109 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
@@ -928,7 +928,7 @@ public enum Cap {
TO_LOWER_EMPTY_STRING,
/**
- * Support parameters for LiMIT command.
+ * Support parameters for LIMIT command.
*/
PARAMETER_FOR_LIMIT,
@@ -965,7 +965,12 @@ public enum Cap {
/**
* Support for the SAMPLE command
*/
- SAMPLE_V3(Build.current().isSnapshot());
+ SAMPLE_V3(Build.current().isSnapshot()),
+
+ /**
+ * Support parameters for SAMPLE command.
+ */
+ PARAMETER_FOR_SAMPLE(Build.current().isSnapshot());
private final boolean enabled;
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 da970bde87b97..f1558b229517d 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
@@ -363,4 +363,4 @@ sampleCommand
atn:
-[4, 1, 139, 761, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 212, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 219, 8, 5, 10, 5, 12, 5, 222, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 229, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 234, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 242, 8, 5, 10, 5, 12, 5, 245, 9, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 6, 1, 6, 1, 6, 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, 5, 6, 270, 8, 6, 10, 6, 12, 6, 273, 9, 6, 1, 6, 1, 6, 3, 6, 277, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 282, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 292, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 298, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 306, 8, 9, 10, 9, 12, 9, 309, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 319, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 324, 8, 10, 10, 10, 12, 10, 327, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 335, 8, 11, 10, 11, 12, 11, 338, 9, 11, 1, 11, 1, 11, 3, 11, 342, 8, 11, 3, 11, 344, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 354, 8, 13, 10, 13, 12, 13, 357, 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, 373, 8, 17, 10, 17, 12, 17, 376, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 381, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 388, 8, 19, 10, 19, 12, 19, 391, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 396, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 402, 8, 21, 10, 21, 12, 21, 405, 9, 21, 1, 21, 3, 21, 408, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 419, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 431, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 437, 8, 28, 10, 28, 12, 28, 440, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 450, 8, 30, 10, 30, 12, 30, 453, 9, 30, 1, 30, 3, 30, 456, 8, 30, 1, 30, 1, 30, 3, 30, 460, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 32, 1, 32, 3, 32, 471, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 476, 8, 33, 10, 33, 12, 33, 479, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 484, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 489, 8, 35, 10, 35, 12, 35, 492, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 497, 8, 36, 10, 36, 12, 36, 500, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 505, 8, 37, 10, 37, 12, 37, 508, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 515, 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, 530, 8, 40, 10, 40, 12, 40, 533, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 541, 8, 40, 10, 40, 12, 40, 544, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 552, 8, 40, 10, 40, 12, 40, 555, 9, 40, 1, 40, 1, 40, 3, 40, 559, 8, 40, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 42, 1, 42, 3, 42, 567, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 572, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 581, 8, 45, 10, 45, 12, 45, 584, 9, 45, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 46, 1, 46, 3, 46, 592, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 604, 8, 49, 10, 49, 12, 49, 607, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 617, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 623, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 635, 8, 54, 10, 54, 12, 54, 638, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 648, 8, 57, 1, 58, 3, 58, 651, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 656, 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, 678, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 684, 8, 65, 10, 65, 12, 65, 687, 9, 65, 3, 65, 689, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 694, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 702, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 709, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 720, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 733, 8, 72, 10, 72, 12, 72, 736, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 746, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 752, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 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, 18, 18, 26, 27, 794, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 199, 1, 0, 0, 0, 8, 201, 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 276, 1, 0, 0, 0, 14, 278, 1, 0, 0, 0, 16, 291, 1, 0, 0, 0, 18, 297, 1, 0, 0, 0, 20, 318, 1, 0, 0, 0, 22, 328, 1, 0, 0, 0, 24, 347, 1, 0, 0, 0, 26, 349, 1, 0, 0, 0, 28, 360, 1, 0, 0, 0, 30, 364, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 369, 1, 0, 0, 0, 36, 380, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 392, 1, 0, 0, 0, 42, 397, 1, 0, 0, 0, 44, 418, 1, 0, 0, 0, 46, 420, 1, 0, 0, 0, 48, 422, 1, 0, 0, 0, 50, 424, 1, 0, 0, 0, 52, 426, 1, 0, 0, 0, 54, 430, 1, 0, 0, 0, 56, 432, 1, 0, 0, 0, 58, 441, 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 464, 1, 0, 0, 0, 66, 472, 1, 0, 0, 0, 68, 480, 1, 0, 0, 0, 70, 485, 1, 0, 0, 0, 72, 493, 1, 0, 0, 0, 74, 501, 1, 0, 0, 0, 76, 509, 1, 0, 0, 0, 78, 514, 1, 0, 0, 0, 80, 558, 1, 0, 0, 0, 82, 562, 1, 0, 0, 0, 84, 566, 1, 0, 0, 0, 86, 571, 1, 0, 0, 0, 88, 573, 1, 0, 0, 0, 90, 576, 1, 0, 0, 0, 92, 585, 1, 0, 0, 0, 94, 593, 1, 0, 0, 0, 96, 596, 1, 0, 0, 0, 98, 599, 1, 0, 0, 0, 100, 616, 1, 0, 0, 0, 102, 618, 1, 0, 0, 0, 104, 624, 1, 0, 0, 0, 106, 628, 1, 0, 0, 0, 108, 631, 1, 0, 0, 0, 110, 639, 1, 0, 0, 0, 112, 643, 1, 0, 0, 0, 114, 647, 1, 0, 0, 0, 116, 650, 1, 0, 0, 0, 118, 655, 1, 0, 0, 0, 120, 659, 1, 0, 0, 0, 122, 661, 1, 0, 0, 0, 124, 663, 1, 0, 0, 0, 126, 666, 1, 0, 0, 0, 128, 670, 1, 0, 0, 0, 130, 673, 1, 0, 0, 0, 132, 693, 1, 0, 0, 0, 134, 697, 1, 0, 0, 0, 136, 710, 1, 0, 0, 0, 138, 715, 1, 0, 0, 0, 140, 721, 1, 0, 0, 0, 142, 726, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 737, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 747, 1, 0, 0, 0, 152, 757, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 200, 3, 62, 31, 0, 177, 200, 3, 8, 4, 0, 178, 200, 3, 94, 47, 0, 179, 200, 3, 88, 44, 0, 180, 200, 3, 64, 32, 0, 181, 200, 3, 90, 45, 0, 182, 200, 3, 96, 48, 0, 183, 200, 3, 98, 49, 0, 184, 200, 3, 102, 51, 0, 185, 200, 3, 104, 52, 0, 186, 200, 3, 130, 65, 0, 187, 200, 3, 106, 53, 0, 188, 200, 3, 140, 70, 0, 189, 200, 3, 134, 67, 0, 190, 200, 3, 150, 75, 0, 191, 192, 4, 3, 2, 0, 192, 200, 3, 138, 69, 0, 193, 194, 4, 3, 3, 0, 194, 200, 3, 136, 68, 0, 195, 196, 4, 3, 4, 0, 196, 200, 3, 148, 74, 0, 197, 198, 4, 3, 5, 0, 198, 200, 3, 152, 76, 0, 199, 176, 1, 0, 0, 0, 199, 177, 1, 0, 0, 0, 199, 178, 1, 0, 0, 0, 199, 179, 1, 0, 0, 0, 199, 180, 1, 0, 0, 0, 199, 181, 1, 0, 0, 0, 199, 182, 1, 0, 0, 0, 199, 183, 1, 0, 0, 0, 199, 184, 1, 0, 0, 0, 199, 185, 1, 0, 0, 0, 199, 186, 1, 0, 0, 0, 199, 187, 1, 0, 0, 0, 199, 188, 1, 0, 0, 0, 199, 189, 1, 0, 0, 0, 199, 190, 1, 0, 0, 0, 199, 191, 1, 0, 0, 0, 199, 193, 1, 0, 0, 0, 199, 195, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 17, 0, 0, 202, 203, 3, 10, 5, 0, 203, 9, 1, 0, 0, 0, 204, 205, 6, 5, -1, 0, 205, 206, 5, 52, 0, 0, 206, 234, 3, 10, 5, 8, 207, 234, 3, 16, 8, 0, 208, 234, 3, 12, 6, 0, 209, 211, 3, 16, 8, 0, 210, 212, 5, 52, 0, 0, 211, 210, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 214, 5, 47, 0, 0, 214, 215, 5, 51, 0, 0, 215, 220, 3, 16, 8, 0, 216, 217, 5, 42, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 5, 59, 0, 0, 224, 234, 1, 0, 0, 0, 225, 226, 3, 16, 8, 0, 226, 228, 5, 48, 0, 0, 227, 229, 5, 52, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 53, 0, 0, 231, 234, 1, 0, 0, 0, 232, 234, 3, 14, 7, 0, 233, 204, 1, 0, 0, 0, 233, 207, 1, 0, 0, 0, 233, 208, 1, 0, 0, 0, 233, 209, 1, 0, 0, 0, 233, 225, 1, 0, 0, 0, 233, 232, 1, 0, 0, 0, 234, 243, 1, 0, 0, 0, 235, 236, 10, 5, 0, 0, 236, 237, 5, 36, 0, 0, 237, 242, 3, 10, 5, 6, 238, 239, 10, 4, 0, 0, 239, 240, 5, 56, 0, 0, 240, 242, 3, 10, 5, 5, 241, 235, 1, 0, 0, 0, 241, 238, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 11, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 16, 8, 0, 247, 249, 5, 52, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 5, 50, 0, 0, 251, 252, 3, 120, 60, 0, 252, 277, 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, 58, 0, 0, 258, 259, 3, 120, 60, 0, 259, 277, 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, 50, 0, 0, 265, 266, 5, 51, 0, 0, 266, 271, 3, 120, 60, 0, 267, 268, 5, 42, 0, 0, 268, 270, 3, 120, 60, 0, 269, 267, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 274, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 5, 59, 0, 0, 275, 277, 1, 0, 0, 0, 276, 246, 1, 0, 0, 0, 276, 253, 1, 0, 0, 0, 276, 260, 1, 0, 0, 0, 277, 13, 1, 0, 0, 0, 278, 281, 3, 70, 35, 0, 279, 280, 5, 40, 0, 0, 280, 282, 3, 30, 15, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 284, 5, 41, 0, 0, 284, 285, 3, 80, 40, 0, 285, 15, 1, 0, 0, 0, 286, 292, 3, 18, 9, 0, 287, 288, 3, 18, 9, 0, 288, 289, 3, 122, 61, 0, 289, 290, 3, 18, 9, 0, 290, 292, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 292, 17, 1, 0, 0, 0, 293, 294, 6, 9, -1, 0, 294, 298, 3, 20, 10, 0, 295, 296, 7, 0, 0, 0, 296, 298, 3, 18, 9, 3, 297, 293, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 307, 1, 0, 0, 0, 299, 300, 10, 2, 0, 0, 300, 301, 7, 1, 0, 0, 301, 306, 3, 18, 9, 3, 302, 303, 10, 1, 0, 0, 303, 304, 7, 0, 0, 0, 304, 306, 3, 18, 9, 2, 305, 299, 1, 0, 0, 0, 305, 302, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 19, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 6, 10, -1, 0, 311, 319, 3, 80, 40, 0, 312, 319, 3, 70, 35, 0, 313, 319, 3, 22, 11, 0, 314, 315, 5, 51, 0, 0, 315, 316, 3, 10, 5, 0, 316, 317, 5, 59, 0, 0, 317, 319, 1, 0, 0, 0, 318, 310, 1, 0, 0, 0, 318, 312, 1, 0, 0, 0, 318, 313, 1, 0, 0, 0, 318, 314, 1, 0, 0, 0, 319, 325, 1, 0, 0, 0, 320, 321, 10, 1, 0, 0, 321, 322, 5, 40, 0, 0, 322, 324, 3, 30, 15, 0, 323, 320, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 21, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 3, 24, 12, 0, 329, 343, 5, 51, 0, 0, 330, 344, 5, 71, 0, 0, 331, 336, 3, 10, 5, 0, 332, 333, 5, 42, 0, 0, 333, 335, 3, 10, 5, 0, 334, 332, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 341, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 340, 5, 42, 0, 0, 340, 342, 3, 26, 13, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343, 330, 1, 0, 0, 0, 343, 331, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 5, 59, 0, 0, 346, 23, 1, 0, 0, 0, 347, 348, 3, 86, 43, 0, 348, 25, 1, 0, 0, 0, 349, 350, 5, 74, 0, 0, 350, 355, 3, 28, 14, 0, 351, 352, 5, 42, 0, 0, 352, 354, 3, 28, 14, 0, 353, 351, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 359, 5, 75, 0, 0, 359, 27, 1, 0, 0, 0, 360, 361, 3, 120, 60, 0, 361, 362, 5, 41, 0, 0, 362, 363, 3, 80, 40, 0, 363, 29, 1, 0, 0, 0, 364, 365, 3, 76, 38, 0, 365, 31, 1, 0, 0, 0, 366, 367, 5, 13, 0, 0, 367, 368, 3, 34, 17, 0, 368, 33, 1, 0, 0, 0, 369, 374, 3, 36, 18, 0, 370, 371, 5, 42, 0, 0, 371, 373, 3, 36, 18, 0, 372, 370, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 35, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 3, 70, 35, 0, 378, 379, 5, 38, 0, 0, 379, 381, 1, 0, 0, 0, 380, 377, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 3, 10, 5, 0, 383, 37, 1, 0, 0, 0, 384, 389, 3, 40, 20, 0, 385, 386, 5, 42, 0, 0, 386, 388, 3, 40, 20, 0, 387, 385, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 39, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 395, 3, 70, 35, 0, 393, 394, 5, 38, 0, 0, 394, 396, 3, 10, 5, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 41, 1, 0, 0, 0, 397, 398, 5, 7, 0, 0, 398, 403, 3, 44, 22, 0, 399, 400, 5, 42, 0, 0, 400, 402, 3, 44, 22, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 408, 3, 54, 27, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 43, 1, 0, 0, 0, 409, 410, 3, 46, 23, 0, 410, 411, 5, 41, 0, 0, 411, 412, 3, 50, 25, 0, 412, 419, 1, 0, 0, 0, 413, 414, 3, 50, 25, 0, 414, 415, 5, 40, 0, 0, 415, 416, 3, 48, 24, 0, 416, 419, 1, 0, 0, 0, 417, 419, 3, 52, 26, 0, 418, 409, 1, 0, 0, 0, 418, 413, 1, 0, 0, 0, 418, 417, 1, 0, 0, 0, 419, 45, 1, 0, 0, 0, 420, 421, 5, 90, 0, 0, 421, 47, 1, 0, 0, 0, 422, 423, 5, 90, 0, 0, 423, 49, 1, 0, 0, 0, 424, 425, 5, 90, 0, 0, 425, 51, 1, 0, 0, 0, 426, 427, 7, 2, 0, 0, 427, 53, 1, 0, 0, 0, 428, 431, 3, 56, 28, 0, 429, 431, 3, 58, 29, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 55, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 438, 5, 90, 0, 0, 434, 435, 5, 42, 0, 0, 435, 437, 5, 90, 0, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 57, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 79, 0, 0, 442, 443, 3, 56, 28, 0, 443, 444, 5, 80, 0, 0, 444, 59, 1, 0, 0, 0, 445, 446, 5, 22, 0, 0, 446, 451, 3, 44, 22, 0, 447, 448, 5, 42, 0, 0, 448, 450, 3, 44, 22, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 456, 3, 66, 33, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 458, 5, 39, 0, 0, 458, 460, 3, 34, 17, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 61, 1, 0, 0, 0, 461, 462, 5, 5, 0, 0, 462, 463, 3, 34, 17, 0, 463, 63, 1, 0, 0, 0, 464, 466, 5, 16, 0, 0, 465, 467, 3, 66, 33, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 469, 5, 39, 0, 0, 469, 471, 3, 34, 17, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 65, 1, 0, 0, 0, 472, 477, 3, 68, 34, 0, 473, 474, 5, 42, 0, 0, 474, 476, 3, 68, 34, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 67, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 483, 3, 36, 18, 0, 481, 482, 5, 17, 0, 0, 482, 484, 3, 10, 5, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 69, 1, 0, 0, 0, 485, 490, 3, 86, 43, 0, 486, 487, 5, 44, 0, 0, 487, 489, 3, 86, 43, 0, 488, 486, 1, 0, 0, 0, 489, 492, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 71, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 493, 498, 3, 78, 39, 0, 494, 495, 5, 44, 0, 0, 495, 497, 3, 78, 39, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 73, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 506, 3, 72, 36, 0, 502, 503, 5, 42, 0, 0, 503, 505, 3, 72, 36, 0, 504, 502, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 75, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 7, 3, 0, 0, 510, 77, 1, 0, 0, 0, 511, 515, 5, 94, 0, 0, 512, 515, 3, 82, 41, 0, 513, 515, 3, 84, 42, 0, 514, 511, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 79, 1, 0, 0, 0, 516, 559, 5, 53, 0, 0, 517, 518, 3, 118, 59, 0, 518, 519, 5, 81, 0, 0, 519, 559, 1, 0, 0, 0, 520, 559, 3, 116, 58, 0, 521, 559, 3, 118, 59, 0, 522, 559, 3, 112, 56, 0, 523, 559, 3, 82, 41, 0, 524, 559, 3, 120, 60, 0, 525, 526, 5, 79, 0, 0, 526, 531, 3, 114, 57, 0, 527, 528, 5, 42, 0, 0, 528, 530, 3, 114, 57, 0, 529, 527, 1, 0, 0, 0, 530, 533, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 534, 535, 5, 80, 0, 0, 535, 559, 1, 0, 0, 0, 536, 537, 5, 79, 0, 0, 537, 542, 3, 112, 56, 0, 538, 539, 5, 42, 0, 0, 539, 541, 3, 112, 56, 0, 540, 538, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 545, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 546, 5, 80, 0, 0, 546, 559, 1, 0, 0, 0, 547, 548, 5, 79, 0, 0, 548, 553, 3, 120, 60, 0, 549, 550, 5, 42, 0, 0, 550, 552, 3, 120, 60, 0, 551, 549, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 556, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 557, 5, 80, 0, 0, 557, 559, 1, 0, 0, 0, 558, 516, 1, 0, 0, 0, 558, 517, 1, 0, 0, 0, 558, 520, 1, 0, 0, 0, 558, 521, 1, 0, 0, 0, 558, 522, 1, 0, 0, 0, 558, 523, 1, 0, 0, 0, 558, 524, 1, 0, 0, 0, 558, 525, 1, 0, 0, 0, 558, 536, 1, 0, 0, 0, 558, 547, 1, 0, 0, 0, 559, 81, 1, 0, 0, 0, 560, 563, 5, 57, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 83, 1, 0, 0, 0, 564, 567, 5, 76, 0, 0, 565, 567, 5, 78, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 85, 1, 0, 0, 0, 568, 572, 3, 76, 38, 0, 569, 572, 3, 82, 41, 0, 570, 572, 3, 84, 42, 0, 571, 568, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 570, 1, 0, 0, 0, 572, 87, 1, 0, 0, 0, 573, 574, 5, 10, 0, 0, 574, 575, 3, 80, 40, 0, 575, 89, 1, 0, 0, 0, 576, 577, 5, 15, 0, 0, 577, 582, 3, 92, 46, 0, 578, 579, 5, 42, 0, 0, 579, 581, 3, 92, 46, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 91, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 587, 3, 10, 5, 0, 586, 588, 7, 4, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 590, 5, 54, 0, 0, 590, 592, 7, 5, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 93, 1, 0, 0, 0, 593, 594, 5, 9, 0, 0, 594, 595, 3, 74, 37, 0, 595, 95, 1, 0, 0, 0, 596, 597, 5, 3, 0, 0, 597, 598, 3, 74, 37, 0, 598, 97, 1, 0, 0, 0, 599, 600, 5, 12, 0, 0, 600, 605, 3, 100, 50, 0, 601, 602, 5, 42, 0, 0, 602, 604, 3, 100, 50, 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, 99, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 98, 0, 0, 610, 611, 3, 72, 36, 0, 611, 617, 1, 0, 0, 0, 612, 613, 3, 72, 36, 0, 613, 614, 5, 38, 0, 0, 614, 615, 3, 72, 36, 0, 615, 617, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 612, 1, 0, 0, 0, 617, 101, 1, 0, 0, 0, 618, 619, 5, 2, 0, 0, 619, 620, 3, 20, 10, 0, 620, 622, 3, 120, 60, 0, 621, 623, 3, 108, 54, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 103, 1, 0, 0, 0, 624, 625, 5, 8, 0, 0, 625, 626, 3, 20, 10, 0, 626, 627, 3, 120, 60, 0, 627, 105, 1, 0, 0, 0, 628, 629, 5, 11, 0, 0, 629, 630, 3, 70, 35, 0, 630, 107, 1, 0, 0, 0, 631, 636, 3, 110, 55, 0, 632, 633, 5, 42, 0, 0, 633, 635, 3, 110, 55, 0, 634, 632, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 109, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 3, 76, 38, 0, 640, 641, 5, 38, 0, 0, 641, 642, 3, 80, 40, 0, 642, 111, 1, 0, 0, 0, 643, 644, 7, 6, 0, 0, 644, 113, 1, 0, 0, 0, 645, 648, 3, 116, 58, 0, 646, 648, 3, 118, 59, 0, 647, 645, 1, 0, 0, 0, 647, 646, 1, 0, 0, 0, 648, 115, 1, 0, 0, 0, 649, 651, 7, 0, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 5, 35, 0, 0, 653, 117, 1, 0, 0, 0, 654, 656, 7, 0, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 5, 34, 0, 0, 658, 119, 1, 0, 0, 0, 659, 660, 5, 33, 0, 0, 660, 121, 1, 0, 0, 0, 661, 662, 7, 7, 0, 0, 662, 123, 1, 0, 0, 0, 663, 664, 5, 6, 0, 0, 664, 665, 3, 126, 63, 0, 665, 125, 1, 0, 0, 0, 666, 667, 5, 79, 0, 0, 667, 668, 3, 2, 1, 0, 668, 669, 5, 80, 0, 0, 669, 127, 1, 0, 0, 0, 670, 671, 5, 14, 0, 0, 671, 672, 5, 112, 0, 0, 672, 129, 1, 0, 0, 0, 673, 674, 5, 4, 0, 0, 674, 677, 5, 102, 0, 0, 675, 676, 5, 55, 0, 0, 676, 678, 3, 72, 36, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 688, 1, 0, 0, 0, 679, 680, 5, 61, 0, 0, 680, 685, 3, 132, 66, 0, 681, 682, 5, 42, 0, 0, 682, 684, 3, 132, 66, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 131, 1, 0, 0, 0, 690, 691, 3, 72, 36, 0, 691, 692, 5, 38, 0, 0, 692, 694, 1, 0, 0, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 3, 72, 36, 0, 696, 133, 1, 0, 0, 0, 697, 698, 5, 19, 0, 0, 698, 701, 3, 70, 35, 0, 699, 700, 5, 55, 0, 0, 700, 702, 3, 70, 35, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 708, 1, 0, 0, 0, 703, 704, 5, 98, 0, 0, 704, 705, 3, 70, 35, 0, 705, 706, 5, 42, 0, 0, 706, 707, 3, 70, 35, 0, 707, 709, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 135, 1, 0, 0, 0, 710, 711, 5, 21, 0, 0, 711, 712, 3, 44, 22, 0, 712, 713, 5, 55, 0, 0, 713, 714, 3, 74, 37, 0, 714, 137, 1, 0, 0, 0, 715, 716, 5, 20, 0, 0, 716, 719, 3, 66, 33, 0, 717, 718, 5, 39, 0, 0, 718, 720, 3, 34, 17, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 139, 1, 0, 0, 0, 721, 722, 7, 8, 0, 0, 722, 723, 5, 126, 0, 0, 723, 724, 3, 142, 71, 0, 724, 725, 3, 144, 72, 0, 725, 141, 1, 0, 0, 0, 726, 727, 3, 44, 22, 0, 727, 143, 1, 0, 0, 0, 728, 729, 5, 55, 0, 0, 729, 734, 3, 146, 73, 0, 730, 731, 5, 42, 0, 0, 731, 733, 3, 146, 73, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 3, 16, 8, 0, 738, 147, 1, 0, 0, 0, 739, 740, 5, 23, 0, 0, 740, 741, 3, 80, 40, 0, 741, 742, 5, 55, 0, 0, 742, 745, 3, 38, 19, 0, 743, 744, 5, 61, 0, 0, 744, 746, 3, 86, 43, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 149, 1, 0, 0, 0, 747, 751, 5, 1, 0, 0, 748, 749, 3, 70, 35, 0, 749, 750, 5, 38, 0, 0, 750, 752, 1, 0, 0, 0, 751, 748, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 3, 20, 10, 0, 754, 755, 5, 61, 0, 0, 755, 756, 3, 86, 43, 0, 756, 151, 1, 0, 0, 0, 757, 758, 5, 24, 0, 0, 758, 759, 3, 116, 58, 0, 759, 153, 1, 0, 0, 0, 72, 165, 174, 199, 211, 220, 228, 233, 241, 243, 248, 255, 262, 271, 276, 281, 291, 297, 305, 307, 318, 325, 336, 341, 343, 355, 374, 380, 389, 395, 403, 407, 418, 430, 438, 451, 455, 459, 466, 470, 477, 483, 490, 498, 506, 514, 531, 542, 553, 558, 562, 566, 571, 582, 587, 591, 605, 616, 622, 636, 647, 650, 655, 677, 685, 688, 693, 701, 708, 719, 734, 745, 751]
\ No newline at end of file
+[4, 1, 139, 761, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 212, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 219, 8, 5, 10, 5, 12, 5, 222, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 229, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 234, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 242, 8, 5, 10, 5, 12, 5, 245, 9, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 6, 1, 6, 1, 6, 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, 5, 6, 270, 8, 6, 10, 6, 12, 6, 273, 9, 6, 1, 6, 1, 6, 3, 6, 277, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 282, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 292, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 298, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 306, 8, 9, 10, 9, 12, 9, 309, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 319, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 324, 8, 10, 10, 10, 12, 10, 327, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 335, 8, 11, 10, 11, 12, 11, 338, 9, 11, 1, 11, 1, 11, 3, 11, 342, 8, 11, 3, 11, 344, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 354, 8, 13, 10, 13, 12, 13, 357, 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, 373, 8, 17, 10, 17, 12, 17, 376, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 381, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 388, 8, 19, 10, 19, 12, 19, 391, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 396, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 402, 8, 21, 10, 21, 12, 21, 405, 9, 21, 1, 21, 3, 21, 408, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 419, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 431, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 437, 8, 28, 10, 28, 12, 28, 440, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 450, 8, 30, 10, 30, 12, 30, 453, 9, 30, 1, 30, 3, 30, 456, 8, 30, 1, 30, 1, 30, 3, 30, 460, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 32, 1, 32, 3, 32, 471, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 476, 8, 33, 10, 33, 12, 33, 479, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 484, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 489, 8, 35, 10, 35, 12, 35, 492, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 497, 8, 36, 10, 36, 12, 36, 500, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 505, 8, 37, 10, 37, 12, 37, 508, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 515, 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, 530, 8, 40, 10, 40, 12, 40, 533, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 541, 8, 40, 10, 40, 12, 40, 544, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 552, 8, 40, 10, 40, 12, 40, 555, 9, 40, 1, 40, 1, 40, 3, 40, 559, 8, 40, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 42, 1, 42, 3, 42, 567, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 572, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 581, 8, 45, 10, 45, 12, 45, 584, 9, 45, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 46, 1, 46, 3, 46, 592, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 604, 8, 49, 10, 49, 12, 49, 607, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 617, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 623, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 635, 8, 54, 10, 54, 12, 54, 638, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 648, 8, 57, 1, 58, 3, 58, 651, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 656, 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, 678, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 684, 8, 65, 10, 65, 12, 65, 687, 9, 65, 3, 65, 689, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 694, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 702, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 709, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 720, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 733, 8, 72, 10, 72, 12, 72, 736, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 746, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 752, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 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, 18, 18, 26, 27, 794, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 199, 1, 0, 0, 0, 8, 201, 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 276, 1, 0, 0, 0, 14, 278, 1, 0, 0, 0, 16, 291, 1, 0, 0, 0, 18, 297, 1, 0, 0, 0, 20, 318, 1, 0, 0, 0, 22, 328, 1, 0, 0, 0, 24, 347, 1, 0, 0, 0, 26, 349, 1, 0, 0, 0, 28, 360, 1, 0, 0, 0, 30, 364, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 369, 1, 0, 0, 0, 36, 380, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 392, 1, 0, 0, 0, 42, 397, 1, 0, 0, 0, 44, 418, 1, 0, 0, 0, 46, 420, 1, 0, 0, 0, 48, 422, 1, 0, 0, 0, 50, 424, 1, 0, 0, 0, 52, 426, 1, 0, 0, 0, 54, 430, 1, 0, 0, 0, 56, 432, 1, 0, 0, 0, 58, 441, 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 464, 1, 0, 0, 0, 66, 472, 1, 0, 0, 0, 68, 480, 1, 0, 0, 0, 70, 485, 1, 0, 0, 0, 72, 493, 1, 0, 0, 0, 74, 501, 1, 0, 0, 0, 76, 509, 1, 0, 0, 0, 78, 514, 1, 0, 0, 0, 80, 558, 1, 0, 0, 0, 82, 562, 1, 0, 0, 0, 84, 566, 1, 0, 0, 0, 86, 571, 1, 0, 0, 0, 88, 573, 1, 0, 0, 0, 90, 576, 1, 0, 0, 0, 92, 585, 1, 0, 0, 0, 94, 593, 1, 0, 0, 0, 96, 596, 1, 0, 0, 0, 98, 599, 1, 0, 0, 0, 100, 616, 1, 0, 0, 0, 102, 618, 1, 0, 0, 0, 104, 624, 1, 0, 0, 0, 106, 628, 1, 0, 0, 0, 108, 631, 1, 0, 0, 0, 110, 639, 1, 0, 0, 0, 112, 643, 1, 0, 0, 0, 114, 647, 1, 0, 0, 0, 116, 650, 1, 0, 0, 0, 118, 655, 1, 0, 0, 0, 120, 659, 1, 0, 0, 0, 122, 661, 1, 0, 0, 0, 124, 663, 1, 0, 0, 0, 126, 666, 1, 0, 0, 0, 128, 670, 1, 0, 0, 0, 130, 673, 1, 0, 0, 0, 132, 693, 1, 0, 0, 0, 134, 697, 1, 0, 0, 0, 136, 710, 1, 0, 0, 0, 138, 715, 1, 0, 0, 0, 140, 721, 1, 0, 0, 0, 142, 726, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 737, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 747, 1, 0, 0, 0, 152, 757, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 200, 3, 62, 31, 0, 177, 200, 3, 8, 4, 0, 178, 200, 3, 94, 47, 0, 179, 200, 3, 88, 44, 0, 180, 200, 3, 64, 32, 0, 181, 200, 3, 90, 45, 0, 182, 200, 3, 96, 48, 0, 183, 200, 3, 98, 49, 0, 184, 200, 3, 102, 51, 0, 185, 200, 3, 104, 52, 0, 186, 200, 3, 130, 65, 0, 187, 200, 3, 106, 53, 0, 188, 200, 3, 140, 70, 0, 189, 200, 3, 134, 67, 0, 190, 200, 3, 150, 75, 0, 191, 192, 4, 3, 2, 0, 192, 200, 3, 138, 69, 0, 193, 194, 4, 3, 3, 0, 194, 200, 3, 136, 68, 0, 195, 196, 4, 3, 4, 0, 196, 200, 3, 148, 74, 0, 197, 198, 4, 3, 5, 0, 198, 200, 3, 152, 76, 0, 199, 176, 1, 0, 0, 0, 199, 177, 1, 0, 0, 0, 199, 178, 1, 0, 0, 0, 199, 179, 1, 0, 0, 0, 199, 180, 1, 0, 0, 0, 199, 181, 1, 0, 0, 0, 199, 182, 1, 0, 0, 0, 199, 183, 1, 0, 0, 0, 199, 184, 1, 0, 0, 0, 199, 185, 1, 0, 0, 0, 199, 186, 1, 0, 0, 0, 199, 187, 1, 0, 0, 0, 199, 188, 1, 0, 0, 0, 199, 189, 1, 0, 0, 0, 199, 190, 1, 0, 0, 0, 199, 191, 1, 0, 0, 0, 199, 193, 1, 0, 0, 0, 199, 195, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 17, 0, 0, 202, 203, 3, 10, 5, 0, 203, 9, 1, 0, 0, 0, 204, 205, 6, 5, -1, 0, 205, 206, 5, 52, 0, 0, 206, 234, 3, 10, 5, 8, 207, 234, 3, 16, 8, 0, 208, 234, 3, 12, 6, 0, 209, 211, 3, 16, 8, 0, 210, 212, 5, 52, 0, 0, 211, 210, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 214, 5, 47, 0, 0, 214, 215, 5, 51, 0, 0, 215, 220, 3, 16, 8, 0, 216, 217, 5, 42, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 5, 59, 0, 0, 224, 234, 1, 0, 0, 0, 225, 226, 3, 16, 8, 0, 226, 228, 5, 48, 0, 0, 227, 229, 5, 52, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 53, 0, 0, 231, 234, 1, 0, 0, 0, 232, 234, 3, 14, 7, 0, 233, 204, 1, 0, 0, 0, 233, 207, 1, 0, 0, 0, 233, 208, 1, 0, 0, 0, 233, 209, 1, 0, 0, 0, 233, 225, 1, 0, 0, 0, 233, 232, 1, 0, 0, 0, 234, 243, 1, 0, 0, 0, 235, 236, 10, 5, 0, 0, 236, 237, 5, 36, 0, 0, 237, 242, 3, 10, 5, 6, 238, 239, 10, 4, 0, 0, 239, 240, 5, 56, 0, 0, 240, 242, 3, 10, 5, 5, 241, 235, 1, 0, 0, 0, 241, 238, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 11, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 16, 8, 0, 247, 249, 5, 52, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 5, 50, 0, 0, 251, 252, 3, 120, 60, 0, 252, 277, 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, 58, 0, 0, 258, 259, 3, 120, 60, 0, 259, 277, 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, 50, 0, 0, 265, 266, 5, 51, 0, 0, 266, 271, 3, 120, 60, 0, 267, 268, 5, 42, 0, 0, 268, 270, 3, 120, 60, 0, 269, 267, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 274, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 5, 59, 0, 0, 275, 277, 1, 0, 0, 0, 276, 246, 1, 0, 0, 0, 276, 253, 1, 0, 0, 0, 276, 260, 1, 0, 0, 0, 277, 13, 1, 0, 0, 0, 278, 281, 3, 70, 35, 0, 279, 280, 5, 40, 0, 0, 280, 282, 3, 30, 15, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 284, 5, 41, 0, 0, 284, 285, 3, 80, 40, 0, 285, 15, 1, 0, 0, 0, 286, 292, 3, 18, 9, 0, 287, 288, 3, 18, 9, 0, 288, 289, 3, 122, 61, 0, 289, 290, 3, 18, 9, 0, 290, 292, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 292, 17, 1, 0, 0, 0, 293, 294, 6, 9, -1, 0, 294, 298, 3, 20, 10, 0, 295, 296, 7, 0, 0, 0, 296, 298, 3, 18, 9, 3, 297, 293, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 307, 1, 0, 0, 0, 299, 300, 10, 2, 0, 0, 300, 301, 7, 1, 0, 0, 301, 306, 3, 18, 9, 3, 302, 303, 10, 1, 0, 0, 303, 304, 7, 0, 0, 0, 304, 306, 3, 18, 9, 2, 305, 299, 1, 0, 0, 0, 305, 302, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 19, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 6, 10, -1, 0, 311, 319, 3, 80, 40, 0, 312, 319, 3, 70, 35, 0, 313, 319, 3, 22, 11, 0, 314, 315, 5, 51, 0, 0, 315, 316, 3, 10, 5, 0, 316, 317, 5, 59, 0, 0, 317, 319, 1, 0, 0, 0, 318, 310, 1, 0, 0, 0, 318, 312, 1, 0, 0, 0, 318, 313, 1, 0, 0, 0, 318, 314, 1, 0, 0, 0, 319, 325, 1, 0, 0, 0, 320, 321, 10, 1, 0, 0, 321, 322, 5, 40, 0, 0, 322, 324, 3, 30, 15, 0, 323, 320, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 21, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 3, 24, 12, 0, 329, 343, 5, 51, 0, 0, 330, 344, 5, 71, 0, 0, 331, 336, 3, 10, 5, 0, 332, 333, 5, 42, 0, 0, 333, 335, 3, 10, 5, 0, 334, 332, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 341, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 340, 5, 42, 0, 0, 340, 342, 3, 26, 13, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343, 330, 1, 0, 0, 0, 343, 331, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 5, 59, 0, 0, 346, 23, 1, 0, 0, 0, 347, 348, 3, 86, 43, 0, 348, 25, 1, 0, 0, 0, 349, 350, 5, 74, 0, 0, 350, 355, 3, 28, 14, 0, 351, 352, 5, 42, 0, 0, 352, 354, 3, 28, 14, 0, 353, 351, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 359, 5, 75, 0, 0, 359, 27, 1, 0, 0, 0, 360, 361, 3, 120, 60, 0, 361, 362, 5, 41, 0, 0, 362, 363, 3, 80, 40, 0, 363, 29, 1, 0, 0, 0, 364, 365, 3, 76, 38, 0, 365, 31, 1, 0, 0, 0, 366, 367, 5, 13, 0, 0, 367, 368, 3, 34, 17, 0, 368, 33, 1, 0, 0, 0, 369, 374, 3, 36, 18, 0, 370, 371, 5, 42, 0, 0, 371, 373, 3, 36, 18, 0, 372, 370, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 35, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 3, 70, 35, 0, 378, 379, 5, 38, 0, 0, 379, 381, 1, 0, 0, 0, 380, 377, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 3, 10, 5, 0, 383, 37, 1, 0, 0, 0, 384, 389, 3, 40, 20, 0, 385, 386, 5, 42, 0, 0, 386, 388, 3, 40, 20, 0, 387, 385, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 39, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 395, 3, 70, 35, 0, 393, 394, 5, 38, 0, 0, 394, 396, 3, 10, 5, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 41, 1, 0, 0, 0, 397, 398, 5, 7, 0, 0, 398, 403, 3, 44, 22, 0, 399, 400, 5, 42, 0, 0, 400, 402, 3, 44, 22, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 408, 3, 54, 27, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 43, 1, 0, 0, 0, 409, 410, 3, 46, 23, 0, 410, 411, 5, 41, 0, 0, 411, 412, 3, 50, 25, 0, 412, 419, 1, 0, 0, 0, 413, 414, 3, 50, 25, 0, 414, 415, 5, 40, 0, 0, 415, 416, 3, 48, 24, 0, 416, 419, 1, 0, 0, 0, 417, 419, 3, 52, 26, 0, 418, 409, 1, 0, 0, 0, 418, 413, 1, 0, 0, 0, 418, 417, 1, 0, 0, 0, 419, 45, 1, 0, 0, 0, 420, 421, 5, 90, 0, 0, 421, 47, 1, 0, 0, 0, 422, 423, 5, 90, 0, 0, 423, 49, 1, 0, 0, 0, 424, 425, 5, 90, 0, 0, 425, 51, 1, 0, 0, 0, 426, 427, 7, 2, 0, 0, 427, 53, 1, 0, 0, 0, 428, 431, 3, 56, 28, 0, 429, 431, 3, 58, 29, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 55, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 438, 5, 90, 0, 0, 434, 435, 5, 42, 0, 0, 435, 437, 5, 90, 0, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 57, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 79, 0, 0, 442, 443, 3, 56, 28, 0, 443, 444, 5, 80, 0, 0, 444, 59, 1, 0, 0, 0, 445, 446, 5, 22, 0, 0, 446, 451, 3, 44, 22, 0, 447, 448, 5, 42, 0, 0, 448, 450, 3, 44, 22, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 456, 3, 66, 33, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 458, 5, 39, 0, 0, 458, 460, 3, 34, 17, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 61, 1, 0, 0, 0, 461, 462, 5, 5, 0, 0, 462, 463, 3, 34, 17, 0, 463, 63, 1, 0, 0, 0, 464, 466, 5, 16, 0, 0, 465, 467, 3, 66, 33, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 469, 5, 39, 0, 0, 469, 471, 3, 34, 17, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 65, 1, 0, 0, 0, 472, 477, 3, 68, 34, 0, 473, 474, 5, 42, 0, 0, 474, 476, 3, 68, 34, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 67, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 483, 3, 36, 18, 0, 481, 482, 5, 17, 0, 0, 482, 484, 3, 10, 5, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 69, 1, 0, 0, 0, 485, 490, 3, 86, 43, 0, 486, 487, 5, 44, 0, 0, 487, 489, 3, 86, 43, 0, 488, 486, 1, 0, 0, 0, 489, 492, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 71, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 493, 498, 3, 78, 39, 0, 494, 495, 5, 44, 0, 0, 495, 497, 3, 78, 39, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 73, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 506, 3, 72, 36, 0, 502, 503, 5, 42, 0, 0, 503, 505, 3, 72, 36, 0, 504, 502, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 75, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 7, 3, 0, 0, 510, 77, 1, 0, 0, 0, 511, 515, 5, 94, 0, 0, 512, 515, 3, 82, 41, 0, 513, 515, 3, 84, 42, 0, 514, 511, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 79, 1, 0, 0, 0, 516, 559, 5, 53, 0, 0, 517, 518, 3, 118, 59, 0, 518, 519, 5, 81, 0, 0, 519, 559, 1, 0, 0, 0, 520, 559, 3, 116, 58, 0, 521, 559, 3, 118, 59, 0, 522, 559, 3, 112, 56, 0, 523, 559, 3, 82, 41, 0, 524, 559, 3, 120, 60, 0, 525, 526, 5, 79, 0, 0, 526, 531, 3, 114, 57, 0, 527, 528, 5, 42, 0, 0, 528, 530, 3, 114, 57, 0, 529, 527, 1, 0, 0, 0, 530, 533, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 534, 535, 5, 80, 0, 0, 535, 559, 1, 0, 0, 0, 536, 537, 5, 79, 0, 0, 537, 542, 3, 112, 56, 0, 538, 539, 5, 42, 0, 0, 539, 541, 3, 112, 56, 0, 540, 538, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 545, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 546, 5, 80, 0, 0, 546, 559, 1, 0, 0, 0, 547, 548, 5, 79, 0, 0, 548, 553, 3, 120, 60, 0, 549, 550, 5, 42, 0, 0, 550, 552, 3, 120, 60, 0, 551, 549, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 556, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 557, 5, 80, 0, 0, 557, 559, 1, 0, 0, 0, 558, 516, 1, 0, 0, 0, 558, 517, 1, 0, 0, 0, 558, 520, 1, 0, 0, 0, 558, 521, 1, 0, 0, 0, 558, 522, 1, 0, 0, 0, 558, 523, 1, 0, 0, 0, 558, 524, 1, 0, 0, 0, 558, 525, 1, 0, 0, 0, 558, 536, 1, 0, 0, 0, 558, 547, 1, 0, 0, 0, 559, 81, 1, 0, 0, 0, 560, 563, 5, 57, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 83, 1, 0, 0, 0, 564, 567, 5, 76, 0, 0, 565, 567, 5, 78, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 85, 1, 0, 0, 0, 568, 572, 3, 76, 38, 0, 569, 572, 3, 82, 41, 0, 570, 572, 3, 84, 42, 0, 571, 568, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 570, 1, 0, 0, 0, 572, 87, 1, 0, 0, 0, 573, 574, 5, 10, 0, 0, 574, 575, 3, 80, 40, 0, 575, 89, 1, 0, 0, 0, 576, 577, 5, 15, 0, 0, 577, 582, 3, 92, 46, 0, 578, 579, 5, 42, 0, 0, 579, 581, 3, 92, 46, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 91, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 587, 3, 10, 5, 0, 586, 588, 7, 4, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 590, 5, 54, 0, 0, 590, 592, 7, 5, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 93, 1, 0, 0, 0, 593, 594, 5, 9, 0, 0, 594, 595, 3, 74, 37, 0, 595, 95, 1, 0, 0, 0, 596, 597, 5, 3, 0, 0, 597, 598, 3, 74, 37, 0, 598, 97, 1, 0, 0, 0, 599, 600, 5, 12, 0, 0, 600, 605, 3, 100, 50, 0, 601, 602, 5, 42, 0, 0, 602, 604, 3, 100, 50, 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, 99, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 98, 0, 0, 610, 611, 3, 72, 36, 0, 611, 617, 1, 0, 0, 0, 612, 613, 3, 72, 36, 0, 613, 614, 5, 38, 0, 0, 614, 615, 3, 72, 36, 0, 615, 617, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 612, 1, 0, 0, 0, 617, 101, 1, 0, 0, 0, 618, 619, 5, 2, 0, 0, 619, 620, 3, 20, 10, 0, 620, 622, 3, 120, 60, 0, 621, 623, 3, 108, 54, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 103, 1, 0, 0, 0, 624, 625, 5, 8, 0, 0, 625, 626, 3, 20, 10, 0, 626, 627, 3, 120, 60, 0, 627, 105, 1, 0, 0, 0, 628, 629, 5, 11, 0, 0, 629, 630, 3, 70, 35, 0, 630, 107, 1, 0, 0, 0, 631, 636, 3, 110, 55, 0, 632, 633, 5, 42, 0, 0, 633, 635, 3, 110, 55, 0, 634, 632, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 109, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 3, 76, 38, 0, 640, 641, 5, 38, 0, 0, 641, 642, 3, 80, 40, 0, 642, 111, 1, 0, 0, 0, 643, 644, 7, 6, 0, 0, 644, 113, 1, 0, 0, 0, 645, 648, 3, 116, 58, 0, 646, 648, 3, 118, 59, 0, 647, 645, 1, 0, 0, 0, 647, 646, 1, 0, 0, 0, 648, 115, 1, 0, 0, 0, 649, 651, 7, 0, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 5, 35, 0, 0, 653, 117, 1, 0, 0, 0, 654, 656, 7, 0, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 5, 34, 0, 0, 658, 119, 1, 0, 0, 0, 659, 660, 5, 33, 0, 0, 660, 121, 1, 0, 0, 0, 661, 662, 7, 7, 0, 0, 662, 123, 1, 0, 0, 0, 663, 664, 5, 6, 0, 0, 664, 665, 3, 126, 63, 0, 665, 125, 1, 0, 0, 0, 666, 667, 5, 79, 0, 0, 667, 668, 3, 2, 1, 0, 668, 669, 5, 80, 0, 0, 669, 127, 1, 0, 0, 0, 670, 671, 5, 14, 0, 0, 671, 672, 5, 112, 0, 0, 672, 129, 1, 0, 0, 0, 673, 674, 5, 4, 0, 0, 674, 677, 5, 102, 0, 0, 675, 676, 5, 55, 0, 0, 676, 678, 3, 72, 36, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 688, 1, 0, 0, 0, 679, 680, 5, 61, 0, 0, 680, 685, 3, 132, 66, 0, 681, 682, 5, 42, 0, 0, 682, 684, 3, 132, 66, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 131, 1, 0, 0, 0, 690, 691, 3, 72, 36, 0, 691, 692, 5, 38, 0, 0, 692, 694, 1, 0, 0, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 3, 72, 36, 0, 696, 133, 1, 0, 0, 0, 697, 698, 5, 19, 0, 0, 698, 701, 3, 70, 35, 0, 699, 700, 5, 55, 0, 0, 700, 702, 3, 70, 35, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 708, 1, 0, 0, 0, 703, 704, 5, 98, 0, 0, 704, 705, 3, 70, 35, 0, 705, 706, 5, 42, 0, 0, 706, 707, 3, 70, 35, 0, 707, 709, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 135, 1, 0, 0, 0, 710, 711, 5, 21, 0, 0, 711, 712, 3, 44, 22, 0, 712, 713, 5, 55, 0, 0, 713, 714, 3, 74, 37, 0, 714, 137, 1, 0, 0, 0, 715, 716, 5, 20, 0, 0, 716, 719, 3, 66, 33, 0, 717, 718, 5, 39, 0, 0, 718, 720, 3, 34, 17, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 139, 1, 0, 0, 0, 721, 722, 7, 8, 0, 0, 722, 723, 5, 126, 0, 0, 723, 724, 3, 142, 71, 0, 724, 725, 3, 144, 72, 0, 725, 141, 1, 0, 0, 0, 726, 727, 3, 44, 22, 0, 727, 143, 1, 0, 0, 0, 728, 729, 5, 55, 0, 0, 729, 734, 3, 146, 73, 0, 730, 731, 5, 42, 0, 0, 731, 733, 3, 146, 73, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 3, 16, 8, 0, 738, 147, 1, 0, 0, 0, 739, 740, 5, 23, 0, 0, 740, 741, 3, 80, 40, 0, 741, 742, 5, 55, 0, 0, 742, 745, 3, 38, 19, 0, 743, 744, 5, 61, 0, 0, 744, 746, 3, 86, 43, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 149, 1, 0, 0, 0, 747, 751, 5, 1, 0, 0, 748, 749, 3, 70, 35, 0, 749, 750, 5, 38, 0, 0, 750, 752, 1, 0, 0, 0, 751, 748, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 3, 20, 10, 0, 754, 755, 5, 61, 0, 0, 755, 756, 3, 86, 43, 0, 756, 151, 1, 0, 0, 0, 757, 758, 5, 24, 0, 0, 758, 759, 3, 80, 40, 0, 759, 153, 1, 0, 0, 0, 72, 165, 174, 199, 211, 220, 228, 233, 241, 243, 248, 255, 262, 271, 276, 281, 291, 297, 305, 307, 318, 325, 336, 341, 343, 355, 374, 380, 389, 395, 403, 407, 418, 430, 438, 451, 455, 459, 466, 470, 477, 483, 490, 498, 506, 514, 531, 542, 553, 558, 562, 566, 571, 582, 587, 591, 605, 616, 622, 636, 647, 650, 655, 677, 685, 688, 693, 701, 708, 719, 734, 745, 751]
\ 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 7042651a4000f..2f735fe56f196 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
@@ -6619,10 +6619,10 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce
@SuppressWarnings("CheckReturnValue")
public static class SampleCommandContext extends ParserRuleContext {
- public DecimalValueContext probability;
+ public ConstantContext probability;
public TerminalNode DEV_SAMPLE() { return getToken(EsqlBaseParser.DEV_SAMPLE, 0); }
- public DecimalValueContext decimalValue() {
- return getRuleContext(DecimalValueContext.class,0);
+ public ConstantContext constant() {
+ return getRuleContext(ConstantContext.class,0);
}
@SuppressWarnings("this-escape")
public SampleCommandContext(ParserRuleContext parent, int invokingState) {
@@ -6653,7 +6653,7 @@ public final SampleCommandContext sampleCommand() throws RecognitionException {
setState(757);
match(DEV_SAMPLE);
setState(758);
- ((SampleCommandContext)_localctx).probability = decimalValue();
+ ((SampleCommandContext)_localctx).probability = constant();
}
}
catch (RecognitionException re) {
@@ -7205,7 +7205,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"\u02f0\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1"+
"\u02f2\u0003\u0014\n\u0000\u02f2\u02f3\u0005=\u0000\u0000\u02f3\u02f4"+
"\u0003V+\u0000\u02f4\u0097\u0001\u0000\u0000\u0000\u02f5\u02f6\u0005\u0018"+
- "\u0000\u0000\u02f6\u02f7\u0003t:\u0000\u02f7\u0099\u0001\u0000\u0000\u0000"+
+ "\u0000\u0000\u02f6\u02f7\u0003P(\u0000\u02f7\u0099\u0001\u0000\u0000\u0000"+
"H\u00a5\u00ae\u00c7\u00d3\u00dc\u00e4\u00e9\u00f1\u00f3\u00f8\u00ff\u0106"+
"\u010f\u0114\u0119\u0123\u0129\u0131\u0133\u013e\u0145\u0150\u0155\u0157"+
"\u0163\u0176\u017c\u0185\u018b\u0193\u0197\u01a2\u01ae\u01b6\u01c3\u01c7"+
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
index a394a99a8bb71..0c4b68665e8c2 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java
@@ -707,7 +707,15 @@ public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) {
}
public PlanFactory visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) {
- var probability = visitDecimalValue(ctx.probability);
- return plan -> new Sample(source(ctx), probability, plan);
+ Source source = source(ctx);
+ Object val = expression(ctx.probability).fold(FoldContext.small() /* TODO remove me */);
+ if (val instanceof Double probability && probability > 0.0 && probability < 1.0) {
+ return input -> new Sample(source, new Literal(source, probability, DataType.DOUBLE), input);
+ } else {
+ throw new ParsingException(
+ source(ctx),
+ "invalid value for SAMPLE probability [" + val + "], expecting a number between 0 and 1, exclusive"
+ );
+ }
}
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
index e85d77b3c0f39..c9c139bf77148 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java
@@ -9,13 +9,8 @@
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
-import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQuery;
-import org.elasticsearch.xpack.esql.capabilities.PostAnalysisVerificationAware;
import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
-import org.elasticsearch.xpack.esql.common.Failures;
import org.elasticsearch.xpack.esql.core.expression.Expression;
-import org.elasticsearch.xpack.esql.core.expression.FoldContext;
-import org.elasticsearch.xpack.esql.core.expression.Foldables;
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
import org.elasticsearch.xpack.esql.core.tree.Source;
import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
@@ -23,9 +18,7 @@
import java.io.IOException;
import java.util.Objects;
-import static org.elasticsearch.xpack.esql.common.Failure.fail;
-
-public class Sample extends UnaryPlan implements TelemetryAware, PostAnalysisVerificationAware {
+public class Sample extends UnaryPlan implements TelemetryAware {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Sample", Sample::new);
private final Expression probability;
@@ -92,13 +85,4 @@ public boolean equals(Object obj) {
return Objects.equals(probability, other.probability) && Objects.equals(child(), other.child());
}
-
- @Override
- public void postAnalysisVerification(Failures failures) {
- try {
- RandomSamplingQuery.checkProbabilityRange((double) Foldables.valueOf(FoldContext.small(), probability));
- } catch (IllegalArgumentException e) {
- failures.add(fail(probability, e.getMessage()));
- }
- }
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
index 3489ecd294273..ebee7f5da7e1a 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java
@@ -112,7 +112,6 @@
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultInferenceResolution;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.indexWithDateDateNanosUnionType;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.loadMapping;
-import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.randomValueOtherThanTest;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.tsdbIndexResolution;
import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY;
import static org.elasticsearch.xpack.esql.core.type.DataType.DATETIME;
@@ -3166,20 +3165,6 @@ private boolean isMultiTypeEsField(Expression e) {
return e instanceof FieldAttribute fa && fa.field() instanceof MultiTypeEsField;
}
- public void testRandomSampleProbability() {
- assumeTrue("requires SAMPLE capability", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
-
- var e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE 1."));
- assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [1.0]"));
-
- e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE .0"));
- assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [0.0]"));
-
- double p = randomValueOtherThanTest(d -> 0 < d && d < 1, () -> randomDoubleBetween(0, Double.MAX_VALUE, false));
- e = expectThrows(VerificationException.class, () -> analyze("FROM test | SAMPLE " + p));
- assertThat(e.getMessage(), containsString("RandomSampling probability must be strictly between 0.0 and 1.0, was [" + p + "]"));
- }
-
private void verifyUnsupported(String query, String errorMessage) {
verifyUnsupported(query, errorMessage, "mapping-multi-field-variation.json");
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java
index 1ba9fb05ca65d..fa4fc98a47297 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java
@@ -168,6 +168,25 @@ public void testInvalidLimit() {
assertEquals("1:13: Invalid value for LIMIT [-1], expecting a non negative integer", error("row a = 1 | limit -1"));
}
+ public void testInvalidSample() {
+ assertEquals(
+ "1:13: invalid value for SAMPLE probability [foo], expecting a number between 0 and 1, exclusive",
+ error("row a = 1 | sample \"foo\"")
+ );
+ assertEquals(
+ "1:13: invalid value for SAMPLE probability [-1.0], expecting a number between 0 and 1, exclusive",
+ error("row a = 1 | sample -1.0")
+ );
+ assertEquals(
+ "1:13: invalid value for SAMPLE probability [0], expecting a number between 0 and 1, exclusive",
+ error("row a = 1 | sample 0")
+ );
+ assertEquals(
+ "1:13: invalid value for SAMPLE probability [1], expecting a number between 0 and 1, exclusive",
+ error("row a = 1 | sample 1")
+ );
+ }
+
private String error(String query) {
ParsingException e = expectThrows(ParsingException.class, () -> defaultAnalyzer.analyze(parser.createStatement(query)));
String message = e.getMessage();
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
index 06484621d3fc3..9b00b62e73fc0 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -104,6 +104,7 @@
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.instanceOf;
import static org.hamcrest.Matchers.is;
+import static org.hamcrest.Matchers.startsWith;
//@TestLogging(value = "org.elasticsearch.xpack.esql:TRACE", reason = "debug")
public class StatementParserTests extends AbstractStatementParserTests {
@@ -3457,8 +3458,15 @@ public void testSample() {
assumeTrue("SAMPLE requires corresponding capability", EsqlCapabilities.Cap.SAMPLE_V3.isEnabled());
expectError("FROM test | SAMPLE .1 2", "line 1:23: extraneous input '2' expecting ");
expectError("FROM test | SAMPLE .1 \"2\"", "line 1:23: extraneous input '\"2\"' expecting ");
- expectError("FROM test | SAMPLE 1", "line 1:20: mismatched input '1' expecting {DECIMAL_LITERAL, '+', '-'}");
- expectError("FROM test | SAMPLE", "line 1:19: mismatched input '' expecting {DECIMAL_LITERAL, '+', '-'}");
+ expectError(
+ "FROM test | SAMPLE 1",
+ "line 1:13: invalid value for SAMPLE probability [1], expecting a number between 0 and 1, exclusive"
+ );
+ expectThrows(
+ ParsingException.class,
+ startsWith("line 1:19: mismatched input '' expecting {"),
+ () -> statement("FROM test | SAMPLE")
+ );
}
static Alias alias(String name, Expression value) {
diff --git a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/10_basic.yml b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/10_basic.yml
index 489917b7b575b..56befed48ce31 100644
--- a/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/10_basic.yml
+++ b/x-pack/plugin/src/yamlRestTest/resources/rest-api-spec/test/esql/10_basic.yml
@@ -359,20 +359,22 @@ setup:
- match: {values.2: ["1",2.0,null,true,123,1674835275193]}
---
-"Test Unnamed Input Params Also For Limit":
+"Test Unnamed Input Params Also For Limit And Sample":
- requires:
test_runner_features: [ capabilities ]
capabilities:
- method: POST
path: /_query
parameters: [ ]
- capabilities: [ parameter_for_limit ]
+ capabilities: [ parameter_for_limit, parameter_for_sample ]
reason: "named or positional parameters"
- do:
esql.query:
body:
- query: 'from test | eval x = ?, y = ?, z = ?, t = ?, u = ?, v = ? | keep x, y, z, t, u, v | limit ?'
- params: ["1", 2.0, null, true, 123, 1674835275193, 3]
+ # The "| sort time" is to work around https://github.com/elastic/elasticsearch/issues/120272
+ # TODO: remove it when the issue is fixed
+ query: 'from test | sort time | sample ? | eval x = ?, y = ?, z = ?, t = ?, u = ?, v = ? | keep x, y, z, t, u, v | limit ?'
+ params: [0.999999999999, "1", 2.0, null, true, 123, 1674835275193, 3]
- length: {columns: 6}
- match: {columns.0.name: "x"}
@@ -401,14 +403,16 @@ setup:
- method: POST
path: /_query
parameters: [ ]
- capabilities: [ parameter_for_limit ]
+ capabilities: [ parameter_for_limit, parameter_for_sample ]
reason: "named or positional parameters"
- do:
esql.query:
body:
- query: 'from test | eval x = ?, y = ?, z = ?, t = ?, u = ?, v = ? | keep x, y, z, t, u, v | limit ?'
- params: [{"n1" : "1"}, {"n2" : 2.0}, {"n3" : null}, {"n4" : true}, {"n5" : 123}, {"n6": 1674835275193}, {"l": 3}]
+ # The "| sort time" is to work around https://github.com/elastic/elasticsearch/issues/120272
+ # TODO: remove it when the issue is fixed
+ query: 'from test | sort time | sample ? | eval x = ?, y = ?, z = ?, t = ?, u = ?, v = ? | keep x, y, z, t, u, v | limit ?'
+ params: [{"s": 0.99999999999}, {"n1" : "1"}, {"n2" : 2.0}, {"n3" : null}, {"n4" : true}, {"n5" : 123}, {"n6": 1674835275193}, {"l": 3}]
- length: {columns: 6}
- match: {columns.0.name: "x"}
@@ -465,14 +469,16 @@ setup:
- method: POST
path: /_query
parameters: [ ]
- capabilities: [ parameter_for_limit ]
+ capabilities: [ parameter_for_limit, parameter_for_sample ]
reason: "named or positional parameters for field names"
- do:
esql.query:
body:
- query: 'from test | stats x = count(?f1), y = sum(?f2) by ?f3 | sort ?f3 | keep ?f3, x, y | limit ?l'
- params: [{"f1" : {"identifier" : "time"}}, {"f2" : { "identifier" : "count" }}, {"f3" : { "identifier" : "color"}}, {"l": 3}]
+ # The "| sort time" is to work around https://github.com/elastic/elasticsearch/issues/120272
+ # TODO: remove it when the issue is fixed
+ query: 'from test | sort time | sample ?s | stats x = count(?f1), y = sum(?f2) by ?f3 | sort ?f3 | keep ?f3, x, y | limit ?l'
+ params: [{"s": 0.99999999999}, {"f1" : {"identifier" : "time"}}, {"f2" : { "identifier" : "count" }}, {"f3" : { "identifier" : "color"}}, {"l": 3}]
- length: {columns: 3}
- match: {columns.0.name: "color"}
From 66acfbd35dc5b503b21f387197878306140f6d77 Mon Sep 17 00:00:00 2001
From: Jan Kuipers
Date: Wed, 18 Jun 2025 11:44:56 +0200
Subject: [PATCH 08/11] docs
---
docs/reference/esql/esql-commands.asciidoc | 2 ++
.../esql/processing-commands/sample.asciidoc | 30 +++++++++++++++++++
.../src/main/resources/sample.csv-spec | 25 ++++++++++++++++
3 files changed, 57 insertions(+)
create mode 100644 docs/reference/esql/processing-commands/sample.asciidoc
diff --git a/docs/reference/esql/esql-commands.asciidoc b/docs/reference/esql/esql-commands.asciidoc
index f66b420ba503e..1a3ad359da436 100644
--- a/docs/reference/esql/esql-commands.asciidoc
+++ b/docs/reference/esql/esql-commands.asciidoc
@@ -46,6 +46,7 @@ endif::[]
* experimental:[] <>
* experimental:[] <>
* <>
+* experimental:[] <>
* <>
* <>
* <>
@@ -70,6 +71,7 @@ include::processing-commands/limit.asciidoc[]
include::processing-commands/lookup.asciidoc[]
include::processing-commands/mv_expand.asciidoc[]
include::processing-commands/rename.asciidoc[]
+include::processing-commands/sample.asciidoc[]
include::processing-commands/sort.asciidoc[]
include::processing-commands/stats.asciidoc[]
include::processing-commands/where.asciidoc[]
diff --git a/docs/reference/esql/processing-commands/sample.asciidoc b/docs/reference/esql/processing-commands/sample.asciidoc
new file mode 100644
index 0000000000000..a5c2a2f7e0b30
--- /dev/null
+++ b/docs/reference/esql/processing-commands/sample.asciidoc
@@ -0,0 +1,30 @@
+[discrete]
+[[esql-sample]]
+=== `SAMPLE`
+
+preview::[]
+
+The `SAMPLE` command samples a fraction of the table rows.
+
+**Syntax**
+
+[source,esql]
+----
+SAMPLE probability
+----
+
+*Parameters*
+
+`probability`::
+The probability that a row is included in the sample. The value must be between 0 and 1, exclusive.
+
+*Example*
+
+[source.merge.styled,esql]
+----
+include::{esql-specs}/sample.csv-spec[tag=sampleForDocs]
+----
+[%header.monospaced.styled,format=dsv,separator=|]
+|===
+include::{esql-specs}/sample.csv-spec[tag=sampleForDocs-result]
+|===
diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
index 47bb70bd8ce26..8ecf1b7d374de 100644
--- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
+++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec
@@ -221,3 +221,28 @@ FROM employees
is_expected:boolean
true
;
+
+
+example for docs
+required_capability: sample_v3
+
+// tag::sampleForDocs[]
+FROM employees
+| KEEP emp_no
+| SAMPLE 0.05
+// end::sampleForDocs[]
+// Hardcode the sample values to work around the limitations of the CSV tests in the
+// presence of randomness, and be able to specify an expected result for the docs.
+| STATS emp_no = COUNT()
+| EVAL emp_no = [10018, 10024, 10062, 10081]
+| MV_EXPAND emp_no
+;
+
+// tag::sampleForDocs-result[]
+emp_no:integer
+10018
+10024
+10062
+10081
+// end::sampleForDocs-result[]
+;
From bf756658648e6b5e9b01c9a79c5d3e87d98ad527 Mon Sep 17 00:00:00 2001
From: elasticsearchmachine
Date: Wed, 18 Jun 2025 10:38:12 +0000
Subject: [PATCH 09/11] [CI] Auto commit changes from spotless
---
.../optimizer/PhysicalPlanOptimizerTests.java | 27 ++++++++++---------
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
index 423c2df080100..5ae5b8becb0f2 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -7997,14 +7997,10 @@ public void testEqualsPushdownToDelegateTooBig() {
}
public void testNotEqualsPushdownToDelegate() {
- var optimized = optimizedPlan(
- physicalPlan(
- """
- FROM test
- | WHERE job != "v"
- """, testDataLimitedRaw
- ), SEARCH_STATS_SHORT_DELEGATES
- );
+ var optimized = optimizedPlan(physicalPlan("""
+ FROM test
+ | WHERE job != "v"
+ """, testDataLimitedRaw), SEARCH_STATS_SHORT_DELEGATES);
var limit = as(optimized, LimitExec.class);
var exchange = as(limit.child(), ExchangeExec.class);
var project = as(exchange.child(), ProjectExec.class);
@@ -8014,11 +8010,16 @@ public void testNotEqualsPushdownToDelegate() {
var extract2 = as(filter.child(), FieldExtractExec.class);
var query = as(extract2.child(), EsQueryExec.class);
assertThat(
- query.query(), equalTo(new BoolQueryBuilder().filter(new SingleValueQuery(
- new NotQuery(Source.EMPTY, new EqualsSyntheticSourceDelegate(Source.EMPTY, "job", "v")),
- "job",
- SingleValueQuery.UseSyntheticSourceDelegate.YES_NEGATED
- ).toQueryBuilder()))
+ query.query(),
+ equalTo(
+ new BoolQueryBuilder().filter(
+ new SingleValueQuery(
+ new NotQuery(Source.EMPTY, new EqualsSyntheticSourceDelegate(Source.EMPTY, "job", "v")),
+ "job",
+ SingleValueQuery.UseSyntheticSourceDelegate.YES_NEGATED
+ ).toQueryBuilder()
+ )
+ )
);
}
From e4595f2b302e7303a44afc72ad662518e784a672 Mon Sep 17 00:00:00 2001
From: Jan Kuipers
Date: Wed, 18 Jun 2025 14:31:31 +0200
Subject: [PATCH 10/11] fix usage
---
docs/reference/rest-api/usage.asciidoc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/reference/rest-api/usage.asciidoc b/docs/reference/rest-api/usage.asciidoc
index 0a9d4a4367dfc..a04be2cb142ff 100644
--- a/docs/reference/rest-api/usage.asciidoc
+++ b/docs/reference/rest-api/usage.asciidoc
@@ -249,7 +249,8 @@ GET /_xpack/usage
"lookup_join" : 0,
"change_point" : 0,
"completion": 0,
- "rerank": 0
+ "rerank": 0,
+ "sample": 0
},
"queries" : {
"rest" : {
From b9e1b4ba44a03e9f3d5e3a91f9bf3487ede50670 Mon Sep 17 00:00:00 2001
From: Jan Kuipers <148754765+jan-elastic@users.noreply.github.com>
Date: Wed, 18 Jun 2025 16:12:16 +0200
Subject: [PATCH 11/11] Move ES|QL sample command from snapshot to tech preview
(#129540)
* Move ES|QL sample command from snapshot to tech preview
* dev_sample -> sample
* fix test
* fix grammar
---
.../esql/src/main/antlr/EsqlBaseLexer.g4 | 2 +-
.../esql/src/main/antlr/EsqlBaseLexer.tokens | 35 +-
.../esql/src/main/antlr/EsqlBaseParser.g4 | 10 +-
.../esql/src/main/antlr/EsqlBaseParser.tokens | 35 +-
.../xpack/esql/action/EsqlCapabilities.java | 5 +-
.../xpack/esql/parser/EsqlBaseLexer.interp | 8 +-
.../xpack/esql/parser/EsqlBaseLexer.java | 2253 ++++++++---------
.../xpack/esql/parser/EsqlBaseParser.interp | 8 +-
.../xpack/esql/parser/EsqlBaseParser.java | 1871 +++++++-------
.../parser/EsqlBaseParserBaseListener.java | 24 +-
.../parser/EsqlBaseParserBaseVisitor.java | 14 +-
.../esql/parser/EsqlBaseParserListener.java | 20 +-
.../esql/parser/EsqlBaseParserVisitor.java | 12 +-
13 files changed, 2142 insertions(+), 2155 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
index 25b1a70440f4d..51383c48134e4 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
@@ -70,6 +70,7 @@ LIMIT : 'limit' -> pushMode(EXPRESSION_MODE);
MV_EXPAND : 'mv_expand' -> pushMode(MVEXPAND_MODE);
RENAME : 'rename' -> pushMode(RENAME_MODE);
ROW : 'row' -> pushMode(EXPRESSION_MODE);
+SAMPLE : 'sample' -> pushMode(EXPRESSION_MODE);
SHOW : 'show' -> pushMode(SHOW_MODE);
SORT : 'sort' -> pushMode(EXPRESSION_MODE);
STATS : 'stats' -> pushMode(EXPRESSION_MODE);
@@ -91,7 +92,6 @@ DEV_INLINESTATS : {this.isDevVersion()}? 'inlinestats' -> pushMode(EXPRESSION
DEV_LOOKUP : {this.isDevVersion()}? 'lookup_🐔' -> pushMode(LOOKUP_MODE);
DEV_METRICS : {this.isDevVersion()}? 'metrics' -> pushMode(METRICS_MODE);
DEV_RERANK : {this.isDevVersion()}? 'rerank' -> pushMode(EXPRESSION_MODE);
-DEV_SAMPLE : {this.isDevVersion()}? 'sample' -> pushMode(EXPRESSION_MODE);
// list of all JOIN commands
DEV_JOIN_FULL : {this.isDevVersion()}? 'full' -> pushMode(JOIN_MODE);
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens
index 09900fdf5d42b..a82dbdd829966 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens
@@ -11,17 +11,17 @@ LIMIT=10
MV_EXPAND=11
RENAME=12
ROW=13
-SHOW=14
-SORT=15
-STATS=16
-WHERE=17
-JOIN_LOOKUP=18
-CHANGE_POINT=19
-DEV_INLINESTATS=20
-DEV_LOOKUP=21
-DEV_METRICS=22
-DEV_RERANK=23
-DEV_SAMPLE=24
+SAMPLE=14
+SHOW=15
+SORT=16
+STATS=17
+WHERE=18
+JOIN_LOOKUP=19
+CHANGE_POINT=20
+DEV_INLINESTATS=21
+DEV_LOOKUP=22
+DEV_METRICS=23
+DEV_RERANK=24
DEV_JOIN_FULL=25
DEV_JOIN_LEFT=26
DEV_JOIN_RIGHT=27
@@ -150,12 +150,13 @@ CHANGE_POINT_WS=139
'mv_expand'=11
'rename'=12
'row'=13
-'show'=14
-'sort'=15
-'stats'=16
-'where'=17
-'lookup'=18
-'change_point'=19
+'sample'=14
+'show'=15
+'sort'=16
+'stats'=17
+'where'=18
+'lookup'=19
+'change_point'=20
'|'=32
'and'=36
'asc'=37
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index 52d8c880fe949..5ab13a638ab4e 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -54,11 +54,11 @@ processingCommand
| joinCommand
| changePointCommand
| completionCommand
+ | sampleCommand
// in development
| {this.isDevVersion()}? inlinestatsCommand
| {this.isDevVersion()}? lookupCommand
| {this.isDevVersion()}? rerankCommand
- | {this.isDevVersion()}? sampleCommand
;
whereCommand
@@ -356,6 +356,10 @@ changePointCommand
: CHANGE_POINT value=qualifiedName (ON key=qualifiedName)? (AS targetType=qualifiedName COMMA targetPvalue=qualifiedName)?
;
+sampleCommand
+ : SAMPLE probability=constant
+ ;
+
//
// In development
//
@@ -390,7 +394,3 @@ rerankCommand
completionCommand
: COMPLETION (targetField=qualifiedName ASSIGN)? prompt=primaryExpression WITH inferenceId=identifierOrParameter
;
-
-sampleCommand
- : DEV_SAMPLE probability=constant
- ;
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens
index 09900fdf5d42b..a82dbdd829966 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens
@@ -11,17 +11,17 @@ LIMIT=10
MV_EXPAND=11
RENAME=12
ROW=13
-SHOW=14
-SORT=15
-STATS=16
-WHERE=17
-JOIN_LOOKUP=18
-CHANGE_POINT=19
-DEV_INLINESTATS=20
-DEV_LOOKUP=21
-DEV_METRICS=22
-DEV_RERANK=23
-DEV_SAMPLE=24
+SAMPLE=14
+SHOW=15
+SORT=16
+STATS=17
+WHERE=18
+JOIN_LOOKUP=19
+CHANGE_POINT=20
+DEV_INLINESTATS=21
+DEV_LOOKUP=22
+DEV_METRICS=23
+DEV_RERANK=24
DEV_JOIN_FULL=25
DEV_JOIN_LEFT=26
DEV_JOIN_RIGHT=27
@@ -150,12 +150,13 @@ CHANGE_POINT_WS=139
'mv_expand'=11
'rename'=12
'row'=13
-'show'=14
-'sort'=15
-'stats'=16
-'where'=17
-'lookup'=18
-'change_point'=19
+'sample'=14
+'show'=15
+'sort'=16
+'stats'=17
+'where'=18
+'lookup'=19
+'change_point'=20
'|'=32
'and'=36
'asc'=37
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 4434cc7909109..31a52418655a2 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
@@ -961,16 +961,15 @@ public enum Cap {
* Support for LIKE operator with a list of patterns
*/
LIKE_WITH_LIST_OF_PATTERNS,
-
/**
* Support for the SAMPLE command
*/
- SAMPLE_V3(Build.current().isSnapshot()),
+ SAMPLE_V3,
/**
* Support parameters for SAMPLE command.
*/
- PARAMETER_FOR_SAMPLE(Build.current().isSnapshot());
+ PARAMETER_FOR_SAMPLE;
private final boolean enabled;
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp
index f6bb29b58037e..becc93baa6736 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp
@@ -13,6 +13,7 @@ null
'mv_expand'
'rename'
'row'
+'sample'
'show'
'sort'
'stats'
@@ -30,7 +31,6 @@ null
null
null
null
-null
'|'
null
null
@@ -155,6 +155,7 @@ LIMIT
MV_EXPAND
RENAME
ROW
+SAMPLE
SHOW
SORT
STATS
@@ -165,7 +166,6 @@ DEV_INLINESTATS
DEV_LOOKUP
DEV_METRICS
DEV_RERANK
-DEV_SAMPLE
DEV_JOIN_FULL
DEV_JOIN_LEFT
DEV_JOIN_RIGHT
@@ -296,6 +296,7 @@ LIMIT
MV_EXPAND
RENAME
ROW
+SAMPLE
SHOW
SORT
STATS
@@ -306,7 +307,6 @@ DEV_INLINESTATS
DEV_LOOKUP
DEV_METRICS
DEV_RERANK
-DEV_SAMPLE
DEV_JOIN_FULL
DEV_JOIN_LEFT
DEV_JOIN_RIGHT
@@ -553,4 +553,4 @@ CLOSING_METRICS_MODE
CHANGE_POINT_MODE
atn:
-[4, 0, 139, 1825, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 4, 27, 758, 8, 27, 11, 27, 12, 27, 759, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 768, 8, 28, 10, 28, 12, 28, 771, 9, 28, 1, 28, 3, 28, 774, 8, 28, 1, 28, 3, 28, 777, 8, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 786, 8, 29, 10, 29, 12, 29, 789, 9, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 4, 30, 797, 8, 30, 11, 30, 12, 30, 798, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 818, 8, 36, 1, 36, 4, 36, 821, 8, 36, 11, 36, 12, 36, 822, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 832, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 3, 41, 839, 8, 41, 1, 42, 1, 42, 1, 42, 5, 42, 844, 8, 42, 10, 42, 12, 42, 847, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 855, 8, 42, 10, 42, 12, 42, 858, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 865, 8, 42, 1, 42, 3, 42, 868, 8, 42, 3, 42, 870, 8, 42, 1, 43, 4, 43, 873, 8, 43, 11, 43, 12, 43, 874, 1, 44, 4, 44, 878, 8, 44, 11, 44, 12, 44, 879, 1, 44, 1, 44, 5, 44, 884, 8, 44, 10, 44, 12, 44, 887, 9, 44, 1, 44, 1, 44, 4, 44, 891, 8, 44, 11, 44, 12, 44, 892, 1, 44, 4, 44, 896, 8, 44, 11, 44, 12, 44, 897, 1, 44, 1, 44, 5, 44, 902, 8, 44, 10, 44, 12, 44, 905, 9, 44, 3, 44, 907, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 4, 44, 913, 8, 44, 11, 44, 12, 44, 914, 1, 44, 1, 44, 3, 44, 919, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1062, 8, 87, 1, 87, 5, 87, 1065, 8, 87, 10, 87, 12, 87, 1068, 9, 87, 1, 87, 1, 87, 4, 87, 1072, 8, 87, 11, 87, 12, 87, 1073, 3, 87, 1076, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 1081, 8, 88, 1, 88, 5, 88, 1084, 8, 88, 10, 88, 12, 88, 1087, 9, 88, 1, 88, 1, 88, 4, 88, 1091, 8, 88, 11, 88, 12, 88, 1092, 3, 88, 1095, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 5, 91, 1109, 8, 91, 10, 91, 12, 91, 1112, 9, 91, 1, 91, 1, 91, 3, 91, 1116, 8, 91, 1, 91, 4, 91, 1119, 8, 91, 11, 91, 12, 91, 1120, 3, 91, 1123, 8, 91, 1, 92, 1, 92, 4, 92, 1127, 8, 92, 11, 92, 12, 92, 1128, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 3, 110, 1210, 8, 110, 1, 111, 4, 111, 1213, 8, 111, 11, 111, 12, 111, 1214, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1270, 8, 124, 1, 125, 1, 125, 3, 125, 1274, 8, 125, 1, 125, 5, 125, 1277, 8, 125, 10, 125, 12, 125, 1280, 9, 125, 1, 125, 1, 125, 3, 125, 1284, 8, 125, 1, 125, 4, 125, 1287, 8, 125, 11, 125, 12, 125, 1288, 3, 125, 1291, 8, 125, 1, 126, 1, 126, 4, 126, 1295, 8, 126, 11, 126, 12, 126, 1296, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 4, 148, 1386, 8, 148, 11, 148, 12, 148, 1387, 1, 148, 1, 148, 3, 148, 1392, 8, 148, 1, 148, 4, 148, 1395, 8, 148, 11, 148, 12, 148, 1396, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 4, 185, 1554, 8, 185, 11, 185, 12, 185, 1555, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 2, 787, 856, 0, 245, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 30, 77, 31, 79, 32, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 101, 33, 103, 34, 105, 35, 107, 36, 109, 37, 111, 38, 113, 39, 115, 40, 117, 41, 119, 42, 121, 43, 123, 44, 125, 45, 127, 46, 129, 47, 131, 48, 133, 49, 135, 50, 137, 51, 139, 52, 141, 53, 143, 54, 145, 55, 147, 56, 149, 57, 151, 58, 153, 59, 155, 60, 157, 61, 159, 62, 161, 63, 163, 64, 165, 65, 167, 66, 169, 67, 171, 68, 173, 69, 175, 70, 177, 71, 179, 72, 181, 73, 183, 74, 185, 75, 187, 76, 189, 0, 191, 77, 193, 78, 195, 79, 197, 80, 199, 81, 201, 0, 203, 82, 205, 83, 207, 84, 209, 85, 211, 0, 213, 0, 215, 86, 217, 87, 219, 88, 221, 0, 223, 0, 225, 0, 227, 0, 229, 0, 231, 0, 233, 0, 235, 89, 237, 0, 239, 90, 241, 0, 243, 0, 245, 91, 247, 92, 249, 93, 251, 0, 253, 0, 255, 0, 257, 0, 259, 0, 261, 0, 263, 0, 265, 0, 267, 0, 269, 94, 271, 95, 273, 96, 275, 97, 277, 0, 279, 0, 281, 0, 283, 0, 285, 0, 287, 0, 289, 0, 291, 0, 293, 98, 295, 0, 297, 99, 299, 100, 301, 101, 303, 0, 305, 0, 307, 0, 309, 0, 311, 0, 313, 102, 315, 0, 317, 103, 319, 104, 321, 105, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 0, 345, 106, 347, 107, 349, 108, 351, 0, 353, 0, 355, 0, 357, 0, 359, 0, 361, 0, 363, 0, 365, 0, 367, 109, 369, 110, 371, 111, 373, 0, 375, 112, 377, 113, 379, 114, 381, 115, 383, 0, 385, 0, 387, 116, 389, 117, 391, 118, 393, 119, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 120, 411, 121, 413, 122, 415, 0, 417, 0, 419, 0, 421, 0, 423, 123, 425, 124, 427, 125, 429, 0, 431, 126, 433, 0, 435, 0, 437, 127, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 128, 451, 129, 453, 130, 455, 0, 457, 0, 459, 0, 461, 131, 463, 132, 465, 133, 467, 0, 469, 0, 471, 0, 473, 134, 475, 135, 477, 136, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 0, 497, 0, 499, 0, 501, 137, 503, 138, 505, 139, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 67, 67, 99, 99, 2, 0, 79, 79, 111, 111, 2, 0, 77, 77, 109, 109, 2, 0, 80, 80, 112, 112, 2, 0, 76, 76, 108, 108, 2, 0, 69, 69, 101, 101, 2, 0, 84, 84, 116, 116, 2, 0, 73, 73, 105, 105, 2, 0, 78, 78, 110, 110, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 82, 82, 114, 114, 2, 0, 72, 72, 104, 104, 2, 0, 86, 86, 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 88, 88, 120, 120, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 2, 0, 74, 74, 106, 106, 1855, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 1, 79, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 1, 103, 1, 0, 0, 0, 1, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 1, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0, 1, 115, 1, 0, 0, 0, 1, 117, 1, 0, 0, 0, 1, 119, 1, 0, 0, 0, 1, 121, 1, 0, 0, 0, 1, 123, 1, 0, 0, 0, 1, 125, 1, 0, 0, 0, 1, 127, 1, 0, 0, 0, 1, 129, 1, 0, 0, 0, 1, 131, 1, 0, 0, 0, 1, 133, 1, 0, 0, 0, 1, 135, 1, 0, 0, 0, 1, 137, 1, 0, 0, 0, 1, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 1, 143, 1, 0, 0, 0, 1, 145, 1, 0, 0, 0, 1, 147, 1, 0, 0, 0, 1, 149, 1, 0, 0, 0, 1, 151, 1, 0, 0, 0, 1, 153, 1, 0, 0, 0, 1, 155, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 1, 159, 1, 0, 0, 0, 1, 161, 1, 0, 0, 0, 1, 163, 1, 0, 0, 0, 1, 165, 1, 0, 0, 0, 1, 167, 1, 0, 0, 0, 1, 169, 1, 0, 0, 0, 1, 171, 1, 0, 0, 0, 1, 173, 1, 0, 0, 0, 1, 175, 1, 0, 0, 0, 1, 177, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 1, 183, 1, 0, 0, 0, 1, 185, 1, 0, 0, 0, 1, 187, 1, 0, 0, 0, 1, 189, 1, 0, 0, 0, 1, 191, 1, 0, 0, 0, 1, 193, 1, 0, 0, 0, 1, 195, 1, 0, 0, 0, 1, 197, 1, 0, 0, 0, 1, 199, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 1, 207, 1, 0, 0, 0, 1, 209, 1, 0, 0, 0, 2, 211, 1, 0, 0, 0, 2, 213, 1, 0, 0, 0, 2, 215, 1, 0, 0, 0, 2, 217, 1, 0, 0, 0, 2, 219, 1, 0, 0, 0, 3, 221, 1, 0, 0, 0, 3, 223, 1, 0, 0, 0, 3, 225, 1, 0, 0, 0, 3, 227, 1, 0, 0, 0, 3, 229, 1, 0, 0, 0, 3, 231, 1, 0, 0, 0, 3, 233, 1, 0, 0, 0, 3, 235, 1, 0, 0, 0, 3, 239, 1, 0, 0, 0, 3, 241, 1, 0, 0, 0, 3, 243, 1, 0, 0, 0, 3, 245, 1, 0, 0, 0, 3, 247, 1, 0, 0, 0, 3, 249, 1, 0, 0, 0, 4, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 255, 1, 0, 0, 0, 4, 257, 1, 0, 0, 0, 4, 259, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 4, 263, 1, 0, 0, 0, 4, 269, 1, 0, 0, 0, 4, 271, 1, 0, 0, 0, 4, 273, 1, 0, 0, 0, 4, 275, 1, 0, 0, 0, 5, 277, 1, 0, 0, 0, 5, 279, 1, 0, 0, 0, 5, 281, 1, 0, 0, 0, 5, 283, 1, 0, 0, 0, 5, 285, 1, 0, 0, 0, 5, 287, 1, 0, 0, 0, 5, 289, 1, 0, 0, 0, 5, 291, 1, 0, 0, 0, 5, 293, 1, 0, 0, 0, 5, 295, 1, 0, 0, 0, 5, 297, 1, 0, 0, 0, 5, 299, 1, 0, 0, 0, 5, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 305, 1, 0, 0, 0, 6, 307, 1, 0, 0, 0, 6, 309, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 6, 315, 1, 0, 0, 0, 6, 317, 1, 0, 0, 0, 6, 319, 1, 0, 0, 0, 6, 321, 1, 0, 0, 0, 7, 323, 1, 0, 0, 0, 7, 325, 1, 0, 0, 0, 7, 327, 1, 0, 0, 0, 7, 329, 1, 0, 0, 0, 7, 331, 1, 0, 0, 0, 7, 333, 1, 0, 0, 0, 7, 335, 1, 0, 0, 0, 7, 337, 1, 0, 0, 0, 7, 339, 1, 0, 0, 0, 7, 341, 1, 0, 0, 0, 7, 343, 1, 0, 0, 0, 7, 345, 1, 0, 0, 0, 7, 347, 1, 0, 0, 0, 7, 349, 1, 0, 0, 0, 8, 351, 1, 0, 0, 0, 8, 353, 1, 0, 0, 0, 8, 355, 1, 0, 0, 0, 8, 357, 1, 0, 0, 0, 8, 359, 1, 0, 0, 0, 8, 361, 1, 0, 0, 0, 8, 363, 1, 0, 0, 0, 8, 365, 1, 0, 0, 0, 8, 367, 1, 0, 0, 0, 8, 369, 1, 0, 0, 0, 8, 371, 1, 0, 0, 0, 9, 373, 1, 0, 0, 0, 9, 375, 1, 0, 0, 0, 9, 377, 1, 0, 0, 0, 9, 379, 1, 0, 0, 0, 9, 381, 1, 0, 0, 0, 10, 383, 1, 0, 0, 0, 10, 385, 1, 0, 0, 0, 10, 387, 1, 0, 0, 0, 10, 389, 1, 0, 0, 0, 10, 391, 1, 0, 0, 0, 10, 393, 1, 0, 0, 0, 11, 395, 1, 0, 0, 0, 11, 397, 1, 0, 0, 0, 11, 399, 1, 0, 0, 0, 11, 401, 1, 0, 0, 0, 11, 403, 1, 0, 0, 0, 11, 405, 1, 0, 0, 0, 11, 407, 1, 0, 0, 0, 11, 409, 1, 0, 0, 0, 11, 411, 1, 0, 0, 0, 11, 413, 1, 0, 0, 0, 12, 415, 1, 0, 0, 0, 12, 417, 1, 0, 0, 0, 12, 419, 1, 0, 0, 0, 12, 421, 1, 0, 0, 0, 12, 423, 1, 0, 0, 0, 12, 425, 1, 0, 0, 0, 12, 427, 1, 0, 0, 0, 13, 429, 1, 0, 0, 0, 13, 431, 1, 0, 0, 0, 13, 433, 1, 0, 0, 0, 13, 435, 1, 0, 0, 0, 13, 437, 1, 0, 0, 0, 13, 439, 1, 0, 0, 0, 13, 441, 1, 0, 0, 0, 13, 443, 1, 0, 0, 0, 13, 445, 1, 0, 0, 0, 13, 447, 1, 0, 0, 0, 13, 449, 1, 0, 0, 0, 13, 451, 1, 0, 0, 0, 13, 453, 1, 0, 0, 0, 14, 455, 1, 0, 0, 0, 14, 457, 1, 0, 0, 0, 14, 459, 1, 0, 0, 0, 14, 461, 1, 0, 0, 0, 14, 463, 1, 0, 0, 0, 14, 465, 1, 0, 0, 0, 15, 467, 1, 0, 0, 0, 15, 469, 1, 0, 0, 0, 15, 471, 1, 0, 0, 0, 15, 473, 1, 0, 0, 0, 15, 475, 1, 0, 0, 0, 15, 477, 1, 0, 0, 0, 15, 479, 1, 0, 0, 0, 15, 481, 1, 0, 0, 0, 15, 483, 1, 0, 0, 0, 15, 485, 1, 0, 0, 0, 16, 487, 1, 0, 0, 0, 16, 489, 1, 0, 0, 0, 16, 491, 1, 0, 0, 0, 16, 493, 1, 0, 0, 0, 16, 495, 1, 0, 0, 0, 16, 497, 1, 0, 0, 0, 16, 499, 1, 0, 0, 0, 16, 501, 1, 0, 0, 0, 16, 503, 1, 0, 0, 0, 16, 505, 1, 0, 0, 0, 17, 507, 1, 0, 0, 0, 19, 520, 1, 0, 0, 0, 21, 530, 1, 0, 0, 0, 23, 537, 1, 0, 0, 0, 25, 546, 1, 0, 0, 0, 27, 553, 1, 0, 0, 0, 29, 563, 1, 0, 0, 0, 31, 570, 1, 0, 0, 0, 33, 577, 1, 0, 0, 0, 35, 584, 1, 0, 0, 0, 37, 592, 1, 0, 0, 0, 39, 604, 1, 0, 0, 0, 41, 613, 1, 0, 0, 0, 43, 619, 1, 0, 0, 0, 45, 626, 1, 0, 0, 0, 47, 633, 1, 0, 0, 0, 49, 641, 1, 0, 0, 0, 51, 649, 1, 0, 0, 0, 53, 658, 1, 0, 0, 0, 55, 673, 1, 0, 0, 0, 57, 688, 1, 0, 0, 0, 59, 700, 1, 0, 0, 0, 61, 711, 1, 0, 0, 0, 63, 721, 1, 0, 0, 0, 65, 731, 1, 0, 0, 0, 67, 739, 1, 0, 0, 0, 69, 747, 1, 0, 0, 0, 71, 757, 1, 0, 0, 0, 73, 763, 1, 0, 0, 0, 75, 780, 1, 0, 0, 0, 77, 796, 1, 0, 0, 0, 79, 802, 1, 0, 0, 0, 81, 806, 1, 0, 0, 0, 83, 808, 1, 0, 0, 0, 85, 810, 1, 0, 0, 0, 87, 813, 1, 0, 0, 0, 89, 815, 1, 0, 0, 0, 91, 824, 1, 0, 0, 0, 93, 826, 1, 0, 0, 0, 95, 831, 1, 0, 0, 0, 97, 833, 1, 0, 0, 0, 99, 838, 1, 0, 0, 0, 101, 869, 1, 0, 0, 0, 103, 872, 1, 0, 0, 0, 105, 918, 1, 0, 0, 0, 107, 920, 1, 0, 0, 0, 109, 924, 1, 0, 0, 0, 111, 928, 1, 0, 0, 0, 113, 930, 1, 0, 0, 0, 115, 933, 1, 0, 0, 0, 117, 936, 1, 0, 0, 0, 119, 938, 1, 0, 0, 0, 121, 940, 1, 0, 0, 0, 123, 945, 1, 0, 0, 0, 125, 947, 1, 0, 0, 0, 127, 953, 1, 0, 0, 0, 129, 959, 1, 0, 0, 0, 131, 962, 1, 0, 0, 0, 133, 965, 1, 0, 0, 0, 135, 970, 1, 0, 0, 0, 137, 975, 1, 0, 0, 0, 139, 977, 1, 0, 0, 0, 141, 981, 1, 0, 0, 0, 143, 986, 1, 0, 0, 0, 145, 992, 1, 0, 0, 0, 147, 995, 1, 0, 0, 0, 149, 998, 1, 0, 0, 0, 151, 1000, 1, 0, 0, 0, 153, 1006, 1, 0, 0, 0, 155, 1008, 1, 0, 0, 0, 157, 1013, 1, 0, 0, 0, 159, 1018, 1, 0, 0, 0, 161, 1021, 1, 0, 0, 0, 163, 1024, 1, 0, 0, 0, 165, 1027, 1, 0, 0, 0, 167, 1029, 1, 0, 0, 0, 169, 1032, 1, 0, 0, 0, 171, 1034, 1, 0, 0, 0, 173, 1037, 1, 0, 0, 0, 175, 1039, 1, 0, 0, 0, 177, 1041, 1, 0, 0, 0, 179, 1043, 1, 0, 0, 0, 181, 1045, 1, 0, 0, 0, 183, 1047, 1, 0, 0, 0, 185, 1049, 1, 0, 0, 0, 187, 1051, 1, 0, 0, 0, 189, 1054, 1, 0, 0, 0, 191, 1075, 1, 0, 0, 0, 193, 1094, 1, 0, 0, 0, 195, 1096, 1, 0, 0, 0, 197, 1101, 1, 0, 0, 0, 199, 1122, 1, 0, 0, 0, 201, 1124, 1, 0, 0, 0, 203, 1132, 1, 0, 0, 0, 205, 1134, 1, 0, 0, 0, 207, 1138, 1, 0, 0, 0, 209, 1142, 1, 0, 0, 0, 211, 1146, 1, 0, 0, 0, 213, 1151, 1, 0, 0, 0, 215, 1156, 1, 0, 0, 0, 217, 1160, 1, 0, 0, 0, 219, 1164, 1, 0, 0, 0, 221, 1168, 1, 0, 0, 0, 223, 1173, 1, 0, 0, 0, 225, 1177, 1, 0, 0, 0, 227, 1181, 1, 0, 0, 0, 229, 1185, 1, 0, 0, 0, 231, 1189, 1, 0, 0, 0, 233, 1193, 1, 0, 0, 0, 235, 1197, 1, 0, 0, 0, 237, 1209, 1, 0, 0, 0, 239, 1212, 1, 0, 0, 0, 241, 1216, 1, 0, 0, 0, 243, 1220, 1, 0, 0, 0, 245, 1224, 1, 0, 0, 0, 247, 1228, 1, 0, 0, 0, 249, 1232, 1, 0, 0, 0, 251, 1236, 1, 0, 0, 0, 253, 1241, 1, 0, 0, 0, 255, 1245, 1, 0, 0, 0, 257, 1249, 1, 0, 0, 0, 259, 1253, 1, 0, 0, 0, 261, 1257, 1, 0, 0, 0, 263, 1261, 1, 0, 0, 0, 265, 1269, 1, 0, 0, 0, 267, 1290, 1, 0, 0, 0, 269, 1294, 1, 0, 0, 0, 271, 1298, 1, 0, 0, 0, 273, 1302, 1, 0, 0, 0, 275, 1306, 1, 0, 0, 0, 277, 1310, 1, 0, 0, 0, 279, 1315, 1, 0, 0, 0, 281, 1319, 1, 0, 0, 0, 283, 1323, 1, 0, 0, 0, 285, 1327, 1, 0, 0, 0, 287, 1331, 1, 0, 0, 0, 289, 1335, 1, 0, 0, 0, 291, 1339, 1, 0, 0, 0, 293, 1343, 1, 0, 0, 0, 295, 1346, 1, 0, 0, 0, 297, 1350, 1, 0, 0, 0, 299, 1354, 1, 0, 0, 0, 301, 1358, 1, 0, 0, 0, 303, 1362, 1, 0, 0, 0, 305, 1367, 1, 0, 0, 0, 307, 1372, 1, 0, 0, 0, 309, 1377, 1, 0, 0, 0, 311, 1382, 1, 0, 0, 0, 313, 1391, 1, 0, 0, 0, 315, 1398, 1, 0, 0, 0, 317, 1402, 1, 0, 0, 0, 319, 1406, 1, 0, 0, 0, 321, 1410, 1, 0, 0, 0, 323, 1414, 1, 0, 0, 0, 325, 1420, 1, 0, 0, 0, 327, 1424, 1, 0, 0, 0, 329, 1428, 1, 0, 0, 0, 331, 1432, 1, 0, 0, 0, 333, 1436, 1, 0, 0, 0, 335, 1440, 1, 0, 0, 0, 337, 1444, 1, 0, 0, 0, 339, 1448, 1, 0, 0, 0, 341, 1452, 1, 0, 0, 0, 343, 1456, 1, 0, 0, 0, 345, 1460, 1, 0, 0, 0, 347, 1464, 1, 0, 0, 0, 349, 1468, 1, 0, 0, 0, 351, 1472, 1, 0, 0, 0, 353, 1477, 1, 0, 0, 0, 355, 1481, 1, 0, 0, 0, 357, 1485, 1, 0, 0, 0, 359, 1489, 1, 0, 0, 0, 361, 1493, 1, 0, 0, 0, 363, 1497, 1, 0, 0, 0, 365, 1501, 1, 0, 0, 0, 367, 1505, 1, 0, 0, 0, 369, 1509, 1, 0, 0, 0, 371, 1513, 1, 0, 0, 0, 373, 1517, 1, 0, 0, 0, 375, 1522, 1, 0, 0, 0, 377, 1527, 1, 0, 0, 0, 379, 1531, 1, 0, 0, 0, 381, 1535, 1, 0, 0, 0, 383, 1539, 1, 0, 0, 0, 385, 1544, 1, 0, 0, 0, 387, 1553, 1, 0, 0, 0, 389, 1557, 1, 0, 0, 0, 391, 1561, 1, 0, 0, 0, 393, 1565, 1, 0, 0, 0, 395, 1569, 1, 0, 0, 0, 397, 1574, 1, 0, 0, 0, 399, 1578, 1, 0, 0, 0, 401, 1582, 1, 0, 0, 0, 403, 1586, 1, 0, 0, 0, 405, 1591, 1, 0, 0, 0, 407, 1595, 1, 0, 0, 0, 409, 1599, 1, 0, 0, 0, 411, 1603, 1, 0, 0, 0, 413, 1607, 1, 0, 0, 0, 415, 1611, 1, 0, 0, 0, 417, 1617, 1, 0, 0, 0, 419, 1621, 1, 0, 0, 0, 421, 1625, 1, 0, 0, 0, 423, 1629, 1, 0, 0, 0, 425, 1633, 1, 0, 0, 0, 427, 1637, 1, 0, 0, 0, 429, 1641, 1, 0, 0, 0, 431, 1646, 1, 0, 0, 0, 433, 1651, 1, 0, 0, 0, 435, 1655, 1, 0, 0, 0, 437, 1661, 1, 0, 0, 0, 439, 1670, 1, 0, 0, 0, 441, 1674, 1, 0, 0, 0, 443, 1678, 1, 0, 0, 0, 445, 1682, 1, 0, 0, 0, 447, 1686, 1, 0, 0, 0, 449, 1690, 1, 0, 0, 0, 451, 1694, 1, 0, 0, 0, 453, 1698, 1, 0, 0, 0, 455, 1702, 1, 0, 0, 0, 457, 1707, 1, 0, 0, 0, 459, 1713, 1, 0, 0, 0, 461, 1719, 1, 0, 0, 0, 463, 1723, 1, 0, 0, 0, 465, 1727, 1, 0, 0, 0, 467, 1731, 1, 0, 0, 0, 469, 1737, 1, 0, 0, 0, 471, 1743, 1, 0, 0, 0, 473, 1749, 1, 0, 0, 0, 475, 1753, 1, 0, 0, 0, 477, 1757, 1, 0, 0, 0, 479, 1761, 1, 0, 0, 0, 481, 1767, 1, 0, 0, 0, 483, 1773, 1, 0, 0, 0, 485, 1779, 1, 0, 0, 0, 487, 1784, 1, 0, 0, 0, 489, 1789, 1, 0, 0, 0, 491, 1793, 1, 0, 0, 0, 493, 1797, 1, 0, 0, 0, 495, 1801, 1, 0, 0, 0, 497, 1805, 1, 0, 0, 0, 499, 1809, 1, 0, 0, 0, 501, 1813, 1, 0, 0, 0, 503, 1817, 1, 0, 0, 0, 505, 1821, 1, 0, 0, 0, 507, 508, 7, 0, 0, 0, 508, 509, 7, 1, 0, 0, 509, 510, 7, 2, 0, 0, 510, 511, 7, 3, 0, 0, 511, 512, 7, 4, 0, 0, 512, 513, 7, 5, 0, 0, 513, 514, 7, 6, 0, 0, 514, 515, 7, 7, 0, 0, 515, 516, 7, 1, 0, 0, 516, 517, 7, 8, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 0, 0, 0, 519, 18, 1, 0, 0, 0, 520, 521, 7, 9, 0, 0, 521, 522, 7, 7, 0, 0, 522, 523, 7, 10, 0, 0, 523, 524, 7, 10, 0, 0, 524, 525, 7, 5, 0, 0, 525, 526, 7, 0, 0, 0, 526, 527, 7, 6, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 6, 1, 0, 0, 529, 20, 1, 0, 0, 0, 530, 531, 7, 9, 0, 0, 531, 532, 7, 11, 0, 0, 532, 533, 7, 1, 0, 0, 533, 534, 7, 3, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 6, 2, 1, 0, 536, 22, 1, 0, 0, 0, 537, 538, 7, 5, 0, 0, 538, 539, 7, 8, 0, 0, 539, 540, 7, 11, 0, 0, 540, 541, 7, 7, 0, 0, 541, 542, 7, 0, 0, 0, 542, 543, 7, 12, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 6, 3, 2, 0, 545, 24, 1, 0, 0, 0, 546, 547, 7, 5, 0, 0, 547, 548, 7, 13, 0, 0, 548, 549, 7, 14, 0, 0, 549, 550, 7, 4, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 6, 4, 0, 0, 552, 26, 1, 0, 0, 0, 553, 554, 7, 5, 0, 0, 554, 555, 7, 15, 0, 0, 555, 556, 7, 3, 0, 0, 556, 557, 7, 4, 0, 0, 557, 558, 7, 14, 0, 0, 558, 559, 7, 7, 0, 0, 559, 560, 7, 8, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 6, 5, 3, 0, 562, 28, 1, 0, 0, 0, 563, 564, 7, 16, 0, 0, 564, 565, 7, 11, 0, 0, 565, 566, 7, 1, 0, 0, 566, 567, 7, 2, 0, 0, 567, 568, 1, 0, 0, 0, 568, 569, 6, 6, 4, 0, 569, 30, 1, 0, 0, 0, 570, 571, 7, 17, 0, 0, 571, 572, 7, 11, 0, 0, 572, 573, 7, 1, 0, 0, 573, 574, 7, 18, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 6, 7, 0, 0, 576, 32, 1, 0, 0, 0, 577, 578, 7, 18, 0, 0, 578, 579, 7, 5, 0, 0, 579, 580, 7, 5, 0, 0, 580, 581, 7, 3, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 6, 8, 1, 0, 583, 34, 1, 0, 0, 0, 584, 585, 7, 4, 0, 0, 585, 586, 7, 7, 0, 0, 586, 587, 7, 2, 0, 0, 587, 588, 7, 7, 0, 0, 588, 589, 7, 6, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 6, 9, 0, 0, 591, 36, 1, 0, 0, 0, 592, 593, 7, 2, 0, 0, 593, 594, 7, 13, 0, 0, 594, 595, 5, 95, 0, 0, 595, 596, 7, 5, 0, 0, 596, 597, 7, 15, 0, 0, 597, 598, 7, 3, 0, 0, 598, 599, 7, 14, 0, 0, 599, 600, 7, 8, 0, 0, 600, 601, 7, 9, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 6, 10, 5, 0, 603, 38, 1, 0, 0, 0, 604, 605, 7, 11, 0, 0, 605, 606, 7, 5, 0, 0, 606, 607, 7, 8, 0, 0, 607, 608, 7, 14, 0, 0, 608, 609, 7, 2, 0, 0, 609, 610, 7, 5, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 6, 11, 6, 0, 612, 40, 1, 0, 0, 0, 613, 614, 7, 11, 0, 0, 614, 615, 7, 1, 0, 0, 615, 616, 7, 19, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 6, 12, 0, 0, 618, 42, 1, 0, 0, 0, 619, 620, 7, 10, 0, 0, 620, 621, 7, 12, 0, 0, 621, 622, 7, 1, 0, 0, 622, 623, 7, 19, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 6, 13, 7, 0, 625, 44, 1, 0, 0, 0, 626, 627, 7, 10, 0, 0, 627, 628, 7, 1, 0, 0, 628, 629, 7, 11, 0, 0, 629, 630, 7, 6, 0, 0, 630, 631, 1, 0, 0, 0, 631, 632, 6, 14, 0, 0, 632, 46, 1, 0, 0, 0, 633, 634, 7, 10, 0, 0, 634, 635, 7, 6, 0, 0, 635, 636, 7, 14, 0, 0, 636, 637, 7, 6, 0, 0, 637, 638, 7, 10, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 6, 15, 0, 0, 640, 48, 1, 0, 0, 0, 641, 642, 7, 19, 0, 0, 642, 643, 7, 12, 0, 0, 643, 644, 7, 5, 0, 0, 644, 645, 7, 11, 0, 0, 645, 646, 7, 5, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 6, 16, 0, 0, 648, 50, 1, 0, 0, 0, 649, 650, 7, 4, 0, 0, 650, 651, 7, 1, 0, 0, 651, 652, 7, 1, 0, 0, 652, 653, 7, 18, 0, 0, 653, 654, 7, 20, 0, 0, 654, 655, 7, 3, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 6, 17, 8, 0, 657, 52, 1, 0, 0, 0, 658, 659, 7, 0, 0, 0, 659, 660, 7, 12, 0, 0, 660, 661, 7, 14, 0, 0, 661, 662, 7, 8, 0, 0, 662, 663, 7, 17, 0, 0, 663, 664, 7, 5, 0, 0, 664, 665, 5, 95, 0, 0, 665, 666, 7, 3, 0, 0, 666, 667, 7, 1, 0, 0, 667, 668, 7, 7, 0, 0, 668, 669, 7, 8, 0, 0, 669, 670, 7, 6, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 6, 18, 9, 0, 672, 54, 1, 0, 0, 0, 673, 674, 4, 19, 0, 0, 674, 675, 7, 7, 0, 0, 675, 676, 7, 8, 0, 0, 676, 677, 7, 4, 0, 0, 677, 678, 7, 7, 0, 0, 678, 679, 7, 8, 0, 0, 679, 680, 7, 5, 0, 0, 680, 681, 7, 10, 0, 0, 681, 682, 7, 6, 0, 0, 682, 683, 7, 14, 0, 0, 683, 684, 7, 6, 0, 0, 684, 685, 7, 10, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 6, 19, 0, 0, 687, 56, 1, 0, 0, 0, 688, 689, 4, 20, 1, 0, 689, 690, 7, 4, 0, 0, 690, 691, 7, 1, 0, 0, 691, 692, 7, 1, 0, 0, 692, 693, 7, 18, 0, 0, 693, 694, 7, 20, 0, 0, 694, 695, 7, 3, 0, 0, 695, 696, 5, 95, 0, 0, 696, 697, 5, 128020, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 6, 20, 10, 0, 699, 58, 1, 0, 0, 0, 700, 701, 4, 21, 2, 0, 701, 702, 7, 2, 0, 0, 702, 703, 7, 5, 0, 0, 703, 704, 7, 6, 0, 0, 704, 705, 7, 11, 0, 0, 705, 706, 7, 7, 0, 0, 706, 707, 7, 0, 0, 0, 707, 708, 7, 10, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 6, 21, 11, 0, 710, 60, 1, 0, 0, 0, 711, 712, 4, 22, 3, 0, 712, 713, 7, 11, 0, 0, 713, 714, 7, 5, 0, 0, 714, 715, 7, 11, 0, 0, 715, 716, 7, 14, 0, 0, 716, 717, 7, 8, 0, 0, 717, 718, 7, 18, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 6, 22, 0, 0, 720, 62, 1, 0, 0, 0, 721, 722, 4, 23, 4, 0, 722, 723, 7, 10, 0, 0, 723, 724, 7, 14, 0, 0, 724, 725, 7, 2, 0, 0, 725, 726, 7, 3, 0, 0, 726, 727, 7, 4, 0, 0, 727, 728, 7, 5, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 6, 23, 0, 0, 730, 64, 1, 0, 0, 0, 731, 732, 4, 24, 5, 0, 732, 733, 7, 16, 0, 0, 733, 734, 7, 20, 0, 0, 734, 735, 7, 4, 0, 0, 735, 736, 7, 4, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 6, 24, 8, 0, 738, 66, 1, 0, 0, 0, 739, 740, 4, 25, 6, 0, 740, 741, 7, 4, 0, 0, 741, 742, 7, 5, 0, 0, 742, 743, 7, 16, 0, 0, 743, 744, 7, 6, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 6, 25, 8, 0, 746, 68, 1, 0, 0, 0, 747, 748, 4, 26, 7, 0, 748, 749, 7, 11, 0, 0, 749, 750, 7, 7, 0, 0, 750, 751, 7, 17, 0, 0, 751, 752, 7, 12, 0, 0, 752, 753, 7, 6, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 6, 26, 8, 0, 755, 70, 1, 0, 0, 0, 756, 758, 8, 21, 0, 0, 757, 756, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 6, 27, 0, 0, 762, 72, 1, 0, 0, 0, 763, 764, 5, 47, 0, 0, 764, 765, 5, 47, 0, 0, 765, 769, 1, 0, 0, 0, 766, 768, 8, 22, 0, 0, 767, 766, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 774, 5, 13, 0, 0, 773, 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 776, 1, 0, 0, 0, 775, 777, 5, 10, 0, 0, 776, 775, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 779, 6, 28, 12, 0, 779, 74, 1, 0, 0, 0, 780, 781, 5, 47, 0, 0, 781, 782, 5, 42, 0, 0, 782, 787, 1, 0, 0, 0, 783, 786, 3, 75, 29, 0, 784, 786, 9, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 784, 1, 0, 0, 0, 786, 789, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 790, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 790, 791, 5, 42, 0, 0, 791, 792, 5, 47, 0, 0, 792, 793, 1, 0, 0, 0, 793, 794, 6, 29, 12, 0, 794, 76, 1, 0, 0, 0, 795, 797, 7, 23, 0, 0, 796, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 6, 30, 12, 0, 801, 78, 1, 0, 0, 0, 802, 803, 5, 124, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 6, 31, 13, 0, 805, 80, 1, 0, 0, 0, 806, 807, 7, 24, 0, 0, 807, 82, 1, 0, 0, 0, 808, 809, 7, 25, 0, 0, 809, 84, 1, 0, 0, 0, 810, 811, 5, 92, 0, 0, 811, 812, 7, 26, 0, 0, 812, 86, 1, 0, 0, 0, 813, 814, 8, 27, 0, 0, 814, 88, 1, 0, 0, 0, 815, 817, 7, 5, 0, 0, 816, 818, 7, 28, 0, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 820, 1, 0, 0, 0, 819, 821, 3, 81, 32, 0, 820, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 90, 1, 0, 0, 0, 824, 825, 5, 64, 0, 0, 825, 92, 1, 0, 0, 0, 826, 827, 5, 96, 0, 0, 827, 94, 1, 0, 0, 0, 828, 832, 8, 29, 0, 0, 829, 830, 5, 96, 0, 0, 830, 832, 5, 96, 0, 0, 831, 828, 1, 0, 0, 0, 831, 829, 1, 0, 0, 0, 832, 96, 1, 0, 0, 0, 833, 834, 5, 95, 0, 0, 834, 98, 1, 0, 0, 0, 835, 839, 3, 83, 33, 0, 836, 839, 3, 81, 32, 0, 837, 839, 3, 97, 40, 0, 838, 835, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 837, 1, 0, 0, 0, 839, 100, 1, 0, 0, 0, 840, 845, 5, 34, 0, 0, 841, 844, 3, 85, 34, 0, 842, 844, 3, 87, 35, 0, 843, 841, 1, 0, 0, 0, 843, 842, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 870, 5, 34, 0, 0, 849, 850, 5, 34, 0, 0, 850, 851, 5, 34, 0, 0, 851, 852, 5, 34, 0, 0, 852, 856, 1, 0, 0, 0, 853, 855, 8, 22, 0, 0, 854, 853, 1, 0, 0, 0, 855, 858, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 856, 854, 1, 0, 0, 0, 857, 859, 1, 0, 0, 0, 858, 856, 1, 0, 0, 0, 859, 860, 5, 34, 0, 0, 860, 861, 5, 34, 0, 0, 861, 862, 5, 34, 0, 0, 862, 864, 1, 0, 0, 0, 863, 865, 5, 34, 0, 0, 864, 863, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 867, 1, 0, 0, 0, 866, 868, 5, 34, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 840, 1, 0, 0, 0, 869, 849, 1, 0, 0, 0, 870, 102, 1, 0, 0, 0, 871, 873, 3, 81, 32, 0, 872, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 104, 1, 0, 0, 0, 876, 878, 3, 81, 32, 0, 877, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 885, 3, 123, 53, 0, 882, 884, 3, 81, 32, 0, 883, 882, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 919, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 888, 890, 3, 123, 53, 0, 889, 891, 3, 81, 32, 0, 890, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 919, 1, 0, 0, 0, 894, 896, 3, 81, 32, 0, 895, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 906, 1, 0, 0, 0, 899, 903, 3, 123, 53, 0, 900, 902, 3, 81, 32, 0, 901, 900, 1, 0, 0, 0, 902, 905, 1, 0, 0, 0, 903, 901, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 907, 1, 0, 0, 0, 905, 903, 1, 0, 0, 0, 906, 899, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 909, 3, 89, 36, 0, 909, 919, 1, 0, 0, 0, 910, 912, 3, 123, 53, 0, 911, 913, 3, 81, 32, 0, 912, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 917, 3, 89, 36, 0, 917, 919, 1, 0, 0, 0, 918, 877, 1, 0, 0, 0, 918, 888, 1, 0, 0, 0, 918, 895, 1, 0, 0, 0, 918, 910, 1, 0, 0, 0, 919, 106, 1, 0, 0, 0, 920, 921, 7, 14, 0, 0, 921, 922, 7, 8, 0, 0, 922, 923, 7, 9, 0, 0, 923, 108, 1, 0, 0, 0, 924, 925, 7, 14, 0, 0, 925, 926, 7, 10, 0, 0, 926, 927, 7, 0, 0, 0, 927, 110, 1, 0, 0, 0, 928, 929, 5, 61, 0, 0, 929, 112, 1, 0, 0, 0, 930, 931, 7, 30, 0, 0, 931, 932, 7, 31, 0, 0, 932, 114, 1, 0, 0, 0, 933, 934, 5, 58, 0, 0, 934, 935, 5, 58, 0, 0, 935, 116, 1, 0, 0, 0, 936, 937, 5, 58, 0, 0, 937, 118, 1, 0, 0, 0, 938, 939, 5, 44, 0, 0, 939, 120, 1, 0, 0, 0, 940, 941, 7, 9, 0, 0, 941, 942, 7, 5, 0, 0, 942, 943, 7, 10, 0, 0, 943, 944, 7, 0, 0, 0, 944, 122, 1, 0, 0, 0, 945, 946, 5, 46, 0, 0, 946, 124, 1, 0, 0, 0, 947, 948, 7, 16, 0, 0, 948, 949, 7, 14, 0, 0, 949, 950, 7, 4, 0, 0, 950, 951, 7, 10, 0, 0, 951, 952, 7, 5, 0, 0, 952, 126, 1, 0, 0, 0, 953, 954, 7, 16, 0, 0, 954, 955, 7, 7, 0, 0, 955, 956, 7, 11, 0, 0, 956, 957, 7, 10, 0, 0, 957, 958, 7, 6, 0, 0, 958, 128, 1, 0, 0, 0, 959, 960, 7, 7, 0, 0, 960, 961, 7, 8, 0, 0, 961, 130, 1, 0, 0, 0, 962, 963, 7, 7, 0, 0, 963, 964, 7, 10, 0, 0, 964, 132, 1, 0, 0, 0, 965, 966, 7, 4, 0, 0, 966, 967, 7, 14, 0, 0, 967, 968, 7, 10, 0, 0, 968, 969, 7, 6, 0, 0, 969, 134, 1, 0, 0, 0, 970, 971, 7, 4, 0, 0, 971, 972, 7, 7, 0, 0, 972, 973, 7, 18, 0, 0, 973, 974, 7, 5, 0, 0, 974, 136, 1, 0, 0, 0, 975, 976, 5, 40, 0, 0, 976, 138, 1, 0, 0, 0, 977, 978, 7, 8, 0, 0, 978, 979, 7, 1, 0, 0, 979, 980, 7, 6, 0, 0, 980, 140, 1, 0, 0, 0, 981, 982, 7, 8, 0, 0, 982, 983, 7, 20, 0, 0, 983, 984, 7, 4, 0, 0, 984, 985, 7, 4, 0, 0, 985, 142, 1, 0, 0, 0, 986, 987, 7, 8, 0, 0, 987, 988, 7, 20, 0, 0, 988, 989, 7, 4, 0, 0, 989, 990, 7, 4, 0, 0, 990, 991, 7, 10, 0, 0, 991, 144, 1, 0, 0, 0, 992, 993, 7, 1, 0, 0, 993, 994, 7, 8, 0, 0, 994, 146, 1, 0, 0, 0, 995, 996, 7, 1, 0, 0, 996, 997, 7, 11, 0, 0, 997, 148, 1, 0, 0, 0, 998, 999, 5, 63, 0, 0, 999, 150, 1, 0, 0, 0, 1000, 1001, 7, 11, 0, 0, 1001, 1002, 7, 4, 0, 0, 1002, 1003, 7, 7, 0, 0, 1003, 1004, 7, 18, 0, 0, 1004, 1005, 7, 5, 0, 0, 1005, 152, 1, 0, 0, 0, 1006, 1007, 5, 41, 0, 0, 1007, 154, 1, 0, 0, 0, 1008, 1009, 7, 6, 0, 0, 1009, 1010, 7, 11, 0, 0, 1010, 1011, 7, 20, 0, 0, 1011, 1012, 7, 5, 0, 0, 1012, 156, 1, 0, 0, 0, 1013, 1014, 7, 19, 0, 0, 1014, 1015, 7, 7, 0, 0, 1015, 1016, 7, 6, 0, 0, 1016, 1017, 7, 12, 0, 0, 1017, 158, 1, 0, 0, 0, 1018, 1019, 5, 61, 0, 0, 1019, 1020, 5, 61, 0, 0, 1020, 160, 1, 0, 0, 0, 1021, 1022, 5, 61, 0, 0, 1022, 1023, 5, 126, 0, 0, 1023, 162, 1, 0, 0, 0, 1024, 1025, 5, 33, 0, 0, 1025, 1026, 5, 61, 0, 0, 1026, 164, 1, 0, 0, 0, 1027, 1028, 5, 60, 0, 0, 1028, 166, 1, 0, 0, 0, 1029, 1030, 5, 60, 0, 0, 1030, 1031, 5, 61, 0, 0, 1031, 168, 1, 0, 0, 0, 1032, 1033, 5, 62, 0, 0, 1033, 170, 1, 0, 0, 0, 1034, 1035, 5, 62, 0, 0, 1035, 1036, 5, 61, 0, 0, 1036, 172, 1, 0, 0, 0, 1037, 1038, 5, 43, 0, 0, 1038, 174, 1, 0, 0, 0, 1039, 1040, 5, 45, 0, 0, 1040, 176, 1, 0, 0, 0, 1041, 1042, 5, 42, 0, 0, 1042, 178, 1, 0, 0, 0, 1043, 1044, 5, 47, 0, 0, 1044, 180, 1, 0, 0, 0, 1045, 1046, 5, 37, 0, 0, 1046, 182, 1, 0, 0, 0, 1047, 1048, 5, 123, 0, 0, 1048, 184, 1, 0, 0, 0, 1049, 1050, 5, 125, 0, 0, 1050, 186, 1, 0, 0, 0, 1051, 1052, 5, 63, 0, 0, 1052, 1053, 5, 63, 0, 0, 1053, 188, 1, 0, 0, 0, 1054, 1055, 3, 49, 16, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 6, 86, 14, 0, 1057, 190, 1, 0, 0, 0, 1058, 1061, 3, 149, 66, 0, 1059, 1062, 3, 83, 33, 0, 1060, 1062, 3, 97, 40, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1060, 1, 0, 0, 0, 1062, 1066, 1, 0, 0, 0, 1063, 1065, 3, 99, 41, 0, 1064, 1063, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1076, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 3, 149, 66, 0, 1070, 1072, 3, 81, 32, 0, 1071, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1076, 1, 0, 0, 0, 1075, 1058, 1, 0, 0, 0, 1075, 1069, 1, 0, 0, 0, 1076, 192, 1, 0, 0, 0, 1077, 1080, 3, 187, 85, 0, 1078, 1081, 3, 83, 33, 0, 1079, 1081, 3, 97, 40, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1079, 1, 0, 0, 0, 1081, 1085, 1, 0, 0, 0, 1082, 1084, 3, 99, 41, 0, 1083, 1082, 1, 0, 0, 0, 1084, 1087, 1, 0, 0, 0, 1085, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1095, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1088, 1090, 3, 187, 85, 0, 1089, 1091, 3, 81, 32, 0, 1090, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1095, 1, 0, 0, 0, 1094, 1077, 1, 0, 0, 0, 1094, 1088, 1, 0, 0, 0, 1095, 194, 1, 0, 0, 0, 1096, 1097, 5, 91, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 6, 89, 0, 0, 1099, 1100, 6, 89, 0, 0, 1100, 196, 1, 0, 0, 0, 1101, 1102, 5, 93, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 6, 90, 13, 0, 1104, 1105, 6, 90, 13, 0, 1105, 198, 1, 0, 0, 0, 1106, 1110, 3, 83, 33, 0, 1107, 1109, 3, 99, 41, 0, 1108, 1107, 1, 0, 0, 0, 1109, 1112, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1123, 1, 0, 0, 0, 1112, 1110, 1, 0, 0, 0, 1113, 1116, 3, 97, 40, 0, 1114, 1116, 3, 91, 37, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1114, 1, 0, 0, 0, 1116, 1118, 1, 0, 0, 0, 1117, 1119, 3, 99, 41, 0, 1118, 1117, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 1, 0, 0, 0, 1122, 1106, 1, 0, 0, 0, 1122, 1115, 1, 0, 0, 0, 1123, 200, 1, 0, 0, 0, 1124, 1126, 3, 93, 38, 0, 1125, 1127, 3, 95, 39, 0, 1126, 1125, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 3, 93, 38, 0, 1131, 202, 1, 0, 0, 0, 1132, 1133, 3, 201, 92, 0, 1133, 204, 1, 0, 0, 0, 1134, 1135, 3, 73, 28, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 6, 94, 12, 0, 1137, 206, 1, 0, 0, 0, 1138, 1139, 3, 75, 29, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 6, 95, 12, 0, 1141, 208, 1, 0, 0, 0, 1142, 1143, 3, 77, 30, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 6, 96, 12, 0, 1145, 210, 1, 0, 0, 0, 1146, 1147, 3, 195, 89, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 6, 97, 15, 0, 1149, 1150, 6, 97, 16, 0, 1150, 212, 1, 0, 0, 0, 1151, 1152, 3, 79, 31, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 6, 98, 17, 0, 1154, 1155, 6, 98, 13, 0, 1155, 214, 1, 0, 0, 0, 1156, 1157, 3, 77, 30, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 6, 99, 12, 0, 1159, 216, 1, 0, 0, 0, 1160, 1161, 3, 73, 28, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 6, 100, 12, 0, 1163, 218, 1, 0, 0, 0, 1164, 1165, 3, 75, 29, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 6, 101, 12, 0, 1167, 220, 1, 0, 0, 0, 1168, 1169, 3, 79, 31, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 6, 102, 17, 0, 1171, 1172, 6, 102, 13, 0, 1172, 222, 1, 0, 0, 0, 1173, 1174, 3, 195, 89, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 6, 103, 15, 0, 1176, 224, 1, 0, 0, 0, 1177, 1178, 3, 197, 90, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 6, 104, 18, 0, 1180, 226, 1, 0, 0, 0, 1181, 1182, 3, 117, 50, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 6, 105, 19, 0, 1184, 228, 1, 0, 0, 0, 1185, 1186, 3, 115, 49, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1188, 6, 106, 20, 0, 1188, 230, 1, 0, 0, 0, 1189, 1190, 3, 119, 51, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 6, 107, 21, 0, 1192, 232, 1, 0, 0, 0, 1193, 1194, 3, 111, 47, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 6, 108, 22, 0, 1196, 234, 1, 0, 0, 0, 1197, 1198, 7, 2, 0, 0, 1198, 1199, 7, 5, 0, 0, 1199, 1200, 7, 6, 0, 0, 1200, 1201, 7, 14, 0, 0, 1201, 1202, 7, 9, 0, 0, 1202, 1203, 7, 14, 0, 0, 1203, 1204, 7, 6, 0, 0, 1204, 1205, 7, 14, 0, 0, 1205, 236, 1, 0, 0, 0, 1206, 1210, 8, 32, 0, 0, 1207, 1208, 5, 47, 0, 0, 1208, 1210, 8, 33, 0, 0, 1209, 1206, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1210, 238, 1, 0, 0, 0, 1211, 1213, 3, 237, 110, 0, 1212, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 240, 1, 0, 0, 0, 1216, 1217, 3, 239, 111, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 6, 112, 23, 0, 1219, 242, 1, 0, 0, 0, 1220, 1221, 3, 101, 42, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 6, 113, 24, 0, 1223, 244, 1, 0, 0, 0, 1224, 1225, 3, 73, 28, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 6, 114, 12, 0, 1227, 246, 1, 0, 0, 0, 1228, 1229, 3, 75, 29, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 6, 115, 12, 0, 1231, 248, 1, 0, 0, 0, 1232, 1233, 3, 77, 30, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 6, 116, 12, 0, 1235, 250, 1, 0, 0, 0, 1236, 1237, 3, 79, 31, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 6, 117, 17, 0, 1239, 1240, 6, 117, 13, 0, 1240, 252, 1, 0, 0, 0, 1241, 1242, 3, 123, 53, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 6, 118, 25, 0, 1244, 254, 1, 0, 0, 0, 1245, 1246, 3, 119, 51, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 6, 119, 21, 0, 1248, 256, 1, 0, 0, 0, 1249, 1250, 3, 149, 66, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 6, 120, 26, 0, 1252, 258, 1, 0, 0, 0, 1253, 1254, 3, 191, 87, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 6, 121, 27, 0, 1256, 260, 1, 0, 0, 0, 1257, 1258, 3, 187, 85, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 6, 122, 28, 0, 1260, 262, 1, 0, 0, 0, 1261, 1262, 3, 193, 88, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 6, 123, 29, 0, 1264, 264, 1, 0, 0, 0, 1265, 1270, 3, 83, 33, 0, 1266, 1270, 3, 81, 32, 0, 1267, 1270, 3, 97, 40, 0, 1268, 1270, 3, 177, 80, 0, 1269, 1265, 1, 0, 0, 0, 1269, 1266, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 266, 1, 0, 0, 0, 1271, 1274, 3, 83, 33, 0, 1272, 1274, 3, 177, 80, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1272, 1, 0, 0, 0, 1274, 1278, 1, 0, 0, 0, 1275, 1277, 3, 265, 124, 0, 1276, 1275, 1, 0, 0, 0, 1277, 1280, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1291, 1, 0, 0, 0, 1280, 1278, 1, 0, 0, 0, 1281, 1284, 3, 97, 40, 0, 1282, 1284, 3, 91, 37, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1287, 3, 265, 124, 0, 1286, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1291, 1, 0, 0, 0, 1290, 1273, 1, 0, 0, 0, 1290, 1283, 1, 0, 0, 0, 1291, 268, 1, 0, 0, 0, 1292, 1295, 3, 267, 125, 0, 1293, 1295, 3, 201, 92, 0, 1294, 1292, 1, 0, 0, 0, 1294, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1294, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 270, 1, 0, 0, 0, 1298, 1299, 3, 73, 28, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 6, 127, 12, 0, 1301, 272, 1, 0, 0, 0, 1302, 1303, 3, 75, 29, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 6, 128, 12, 0, 1305, 274, 1, 0, 0, 0, 1306, 1307, 3, 77, 30, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 6, 129, 12, 0, 1309, 276, 1, 0, 0, 0, 1310, 1311, 3, 79, 31, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 6, 130, 17, 0, 1313, 1314, 6, 130, 13, 0, 1314, 278, 1, 0, 0, 0, 1315, 1316, 3, 111, 47, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 6, 131, 22, 0, 1318, 280, 1, 0, 0, 0, 1319, 1320, 3, 119, 51, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 6, 132, 21, 0, 1322, 282, 1, 0, 0, 0, 1323, 1324, 3, 123, 53, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 6, 133, 25, 0, 1326, 284, 1, 0, 0, 0, 1327, 1328, 3, 149, 66, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1330, 6, 134, 26, 0, 1330, 286, 1, 0, 0, 0, 1331, 1332, 3, 191, 87, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 6, 135, 27, 0, 1334, 288, 1, 0, 0, 0, 1335, 1336, 3, 187, 85, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 6, 136, 28, 0, 1338, 290, 1, 0, 0, 0, 1339, 1340, 3, 193, 88, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 6, 137, 29, 0, 1342, 292, 1, 0, 0, 0, 1343, 1344, 7, 14, 0, 0, 1344, 1345, 7, 10, 0, 0, 1345, 294, 1, 0, 0, 0, 1346, 1347, 3, 269, 126, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 6, 139, 30, 0, 1349, 296, 1, 0, 0, 0, 1350, 1351, 3, 73, 28, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 6, 140, 12, 0, 1353, 298, 1, 0, 0, 0, 1354, 1355, 3, 75, 29, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1357, 6, 141, 12, 0, 1357, 300, 1, 0, 0, 0, 1358, 1359, 3, 77, 30, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 6, 142, 12, 0, 1361, 302, 1, 0, 0, 0, 1362, 1363, 3, 79, 31, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 6, 143, 17, 0, 1365, 1366, 6, 143, 13, 0, 1366, 304, 1, 0, 0, 0, 1367, 1368, 3, 195, 89, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 6, 144, 15, 0, 1370, 1371, 6, 144, 31, 0, 1371, 306, 1, 0, 0, 0, 1372, 1373, 3, 145, 64, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1375, 6, 145, 32, 0, 1375, 1376, 6, 145, 33, 0, 1376, 308, 1, 0, 0, 0, 1377, 1378, 3, 157, 70, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 6, 146, 34, 0, 1380, 1381, 6, 146, 33, 0, 1381, 310, 1, 0, 0, 0, 1382, 1383, 8, 34, 0, 0, 1383, 312, 1, 0, 0, 0, 1384, 1386, 3, 311, 147, 0, 1385, 1384, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 3, 117, 50, 0, 1390, 1392, 1, 0, 0, 0, 1391, 1385, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1395, 3, 311, 147, 0, 1394, 1393, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1394, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 314, 1, 0, 0, 0, 1398, 1399, 3, 313, 148, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 6, 149, 35, 0, 1401, 316, 1, 0, 0, 0, 1402, 1403, 3, 73, 28, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 6, 150, 12, 0, 1405, 318, 1, 0, 0, 0, 1406, 1407, 3, 75, 29, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 6, 151, 12, 0, 1409, 320, 1, 0, 0, 0, 1410, 1411, 3, 77, 30, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 6, 152, 12, 0, 1413, 322, 1, 0, 0, 0, 1414, 1415, 3, 79, 31, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1417, 6, 153, 17, 0, 1417, 1418, 6, 153, 13, 0, 1418, 1419, 6, 153, 13, 0, 1419, 324, 1, 0, 0, 0, 1420, 1421, 3, 111, 47, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 6, 154, 22, 0, 1423, 326, 1, 0, 0, 0, 1424, 1425, 3, 119, 51, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1427, 6, 155, 21, 0, 1427, 328, 1, 0, 0, 0, 1428, 1429, 3, 123, 53, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1431, 6, 156, 25, 0, 1431, 330, 1, 0, 0, 0, 1432, 1433, 3, 157, 70, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 6, 157, 34, 0, 1435, 332, 1, 0, 0, 0, 1436, 1437, 3, 269, 126, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 6, 158, 30, 0, 1439, 334, 1, 0, 0, 0, 1440, 1441, 3, 203, 93, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 6, 159, 36, 0, 1443, 336, 1, 0, 0, 0, 1444, 1445, 3, 149, 66, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 6, 160, 26, 0, 1447, 338, 1, 0, 0, 0, 1448, 1449, 3, 191, 87, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 161, 27, 0, 1451, 340, 1, 0, 0, 0, 1452, 1453, 3, 187, 85, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 162, 28, 0, 1455, 342, 1, 0, 0, 0, 1456, 1457, 3, 193, 88, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 6, 163, 29, 0, 1459, 344, 1, 0, 0, 0, 1460, 1461, 3, 73, 28, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 6, 164, 12, 0, 1463, 346, 1, 0, 0, 0, 1464, 1465, 3, 75, 29, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 6, 165, 12, 0, 1467, 348, 1, 0, 0, 0, 1468, 1469, 3, 77, 30, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 6, 166, 12, 0, 1471, 350, 1, 0, 0, 0, 1472, 1473, 3, 79, 31, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 6, 167, 17, 0, 1475, 1476, 6, 167, 13, 0, 1476, 352, 1, 0, 0, 0, 1477, 1478, 3, 123, 53, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 6, 168, 25, 0, 1480, 354, 1, 0, 0, 0, 1481, 1482, 3, 149, 66, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 6, 169, 26, 0, 1484, 356, 1, 0, 0, 0, 1485, 1486, 3, 191, 87, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 6, 170, 27, 0, 1488, 358, 1, 0, 0, 0, 1489, 1490, 3, 187, 85, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 171, 28, 0, 1492, 360, 1, 0, 0, 0, 1493, 1494, 3, 193, 88, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 172, 29, 0, 1496, 362, 1, 0, 0, 0, 1497, 1498, 3, 203, 93, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 6, 173, 36, 0, 1500, 364, 1, 0, 0, 0, 1501, 1502, 3, 199, 91, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 6, 174, 37, 0, 1504, 366, 1, 0, 0, 0, 1505, 1506, 3, 73, 28, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 6, 175, 12, 0, 1508, 368, 1, 0, 0, 0, 1509, 1510, 3, 75, 29, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1512, 6, 176, 12, 0, 1512, 370, 1, 0, 0, 0, 1513, 1514, 3, 77, 30, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1516, 6, 177, 12, 0, 1516, 372, 1, 0, 0, 0, 1517, 1518, 3, 79, 31, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 6, 178, 17, 0, 1520, 1521, 6, 178, 13, 0, 1521, 374, 1, 0, 0, 0, 1522, 1523, 7, 7, 0, 0, 1523, 1524, 7, 8, 0, 0, 1524, 1525, 7, 16, 0, 0, 1525, 1526, 7, 1, 0, 0, 1526, 376, 1, 0, 0, 0, 1527, 1528, 3, 73, 28, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 6, 180, 12, 0, 1530, 378, 1, 0, 0, 0, 1531, 1532, 3, 75, 29, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 6, 181, 12, 0, 1534, 380, 1, 0, 0, 0, 1535, 1536, 3, 77, 30, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 6, 182, 12, 0, 1538, 382, 1, 0, 0, 0, 1539, 1540, 3, 197, 90, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 6, 183, 18, 0, 1542, 1543, 6, 183, 13, 0, 1543, 384, 1, 0, 0, 0, 1544, 1545, 3, 117, 50, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 6, 184, 19, 0, 1547, 386, 1, 0, 0, 0, 1548, 1554, 3, 91, 37, 0, 1549, 1554, 3, 81, 32, 0, 1550, 1554, 3, 123, 53, 0, 1551, 1554, 3, 83, 33, 0, 1552, 1554, 3, 97, 40, 0, 1553, 1548, 1, 0, 0, 0, 1553, 1549, 1, 0, 0, 0, 1553, 1550, 1, 0, 0, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 388, 1, 0, 0, 0, 1557, 1558, 3, 73, 28, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 186, 12, 0, 1560, 390, 1, 0, 0, 0, 1561, 1562, 3, 75, 29, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 6, 187, 12, 0, 1564, 392, 1, 0, 0, 0, 1565, 1566, 3, 77, 30, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 6, 188, 12, 0, 1568, 394, 1, 0, 0, 0, 1569, 1570, 3, 79, 31, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 6, 189, 17, 0, 1572, 1573, 6, 189, 13, 0, 1573, 396, 1, 0, 0, 0, 1574, 1575, 3, 117, 50, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 6, 190, 19, 0, 1577, 398, 1, 0, 0, 0, 1578, 1579, 3, 119, 51, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 6, 191, 21, 0, 1581, 400, 1, 0, 0, 0, 1582, 1583, 3, 123, 53, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 192, 25, 0, 1585, 402, 1, 0, 0, 0, 1586, 1587, 3, 145, 64, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 193, 32, 0, 1589, 1590, 6, 193, 38, 0, 1590, 404, 1, 0, 0, 0, 1591, 1592, 3, 239, 111, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1594, 6, 194, 23, 0, 1594, 406, 1, 0, 0, 0, 1595, 1596, 3, 101, 42, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 6, 195, 24, 0, 1598, 408, 1, 0, 0, 0, 1599, 1600, 3, 73, 28, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 6, 196, 12, 0, 1602, 410, 1, 0, 0, 0, 1603, 1604, 3, 75, 29, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1606, 6, 197, 12, 0, 1606, 412, 1, 0, 0, 0, 1607, 1608, 3, 77, 30, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 6, 198, 12, 0, 1610, 414, 1, 0, 0, 0, 1611, 1612, 3, 79, 31, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 6, 199, 17, 0, 1614, 1615, 6, 199, 13, 0, 1615, 1616, 6, 199, 13, 0, 1616, 416, 1, 0, 0, 0, 1617, 1618, 3, 119, 51, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 6, 200, 21, 0, 1620, 418, 1, 0, 0, 0, 1621, 1622, 3, 123, 53, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1624, 6, 201, 25, 0, 1624, 420, 1, 0, 0, 0, 1625, 1626, 3, 269, 126, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 6, 202, 30, 0, 1628, 422, 1, 0, 0, 0, 1629, 1630, 3, 73, 28, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 6, 203, 12, 0, 1632, 424, 1, 0, 0, 0, 1633, 1634, 3, 75, 29, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 6, 204, 12, 0, 1636, 426, 1, 0, 0, 0, 1637, 1638, 3, 77, 30, 0, 1638, 1639, 1, 0, 0, 0, 1639, 1640, 6, 205, 12, 0, 1640, 428, 1, 0, 0, 0, 1641, 1642, 3, 79, 31, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 6, 206, 17, 0, 1644, 1645, 6, 206, 13, 0, 1645, 430, 1, 0, 0, 0, 1646, 1647, 7, 35, 0, 0, 1647, 1648, 7, 1, 0, 0, 1648, 1649, 7, 7, 0, 0, 1649, 1650, 7, 8, 0, 0, 1650, 432, 1, 0, 0, 0, 1651, 1652, 3, 293, 138, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 208, 39, 0, 1654, 434, 1, 0, 0, 0, 1655, 1656, 3, 145, 64, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 6, 209, 32, 0, 1658, 1659, 6, 209, 13, 0, 1659, 1660, 6, 209, 0, 0, 1660, 436, 1, 0, 0, 0, 1661, 1662, 7, 20, 0, 0, 1662, 1663, 7, 10, 0, 0, 1663, 1664, 7, 7, 0, 0, 1664, 1665, 7, 8, 0, 0, 1665, 1666, 7, 17, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 6, 210, 13, 0, 1668, 1669, 6, 210, 0, 0, 1669, 438, 1, 0, 0, 0, 1670, 1671, 3, 239, 111, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 6, 211, 23, 0, 1673, 440, 1, 0, 0, 0, 1674, 1675, 3, 101, 42, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1677, 6, 212, 24, 0, 1677, 442, 1, 0, 0, 0, 1678, 1679, 3, 117, 50, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 6, 213, 19, 0, 1681, 444, 1, 0, 0, 0, 1682, 1683, 3, 199, 91, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 214, 37, 0, 1685, 446, 1, 0, 0, 0, 1686, 1687, 3, 203, 93, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 215, 36, 0, 1689, 448, 1, 0, 0, 0, 1690, 1691, 3, 73, 28, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 6, 216, 12, 0, 1693, 450, 1, 0, 0, 0, 1694, 1695, 3, 75, 29, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 6, 217, 12, 0, 1697, 452, 1, 0, 0, 0, 1698, 1699, 3, 77, 30, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 6, 218, 12, 0, 1701, 454, 1, 0, 0, 0, 1702, 1703, 3, 79, 31, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 6, 219, 17, 0, 1705, 1706, 6, 219, 13, 0, 1706, 456, 1, 0, 0, 0, 1707, 1708, 3, 239, 111, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 220, 23, 0, 1710, 1711, 6, 220, 13, 0, 1711, 1712, 6, 220, 40, 0, 1712, 458, 1, 0, 0, 0, 1713, 1714, 3, 101, 42, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 6, 221, 24, 0, 1716, 1717, 6, 221, 13, 0, 1717, 1718, 6, 221, 40, 0, 1718, 460, 1, 0, 0, 0, 1719, 1720, 3, 73, 28, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 6, 222, 12, 0, 1722, 462, 1, 0, 0, 0, 1723, 1724, 3, 75, 29, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 6, 223, 12, 0, 1726, 464, 1, 0, 0, 0, 1727, 1728, 3, 77, 30, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 6, 224, 12, 0, 1730, 466, 1, 0, 0, 0, 1731, 1732, 3, 117, 50, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 6, 225, 19, 0, 1734, 1735, 6, 225, 13, 0, 1735, 1736, 6, 225, 11, 0, 1736, 468, 1, 0, 0, 0, 1737, 1738, 3, 115, 49, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 226, 20, 0, 1740, 1741, 6, 226, 13, 0, 1741, 1742, 6, 226, 11, 0, 1742, 470, 1, 0, 0, 0, 1743, 1744, 3, 119, 51, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 6, 227, 21, 0, 1746, 1747, 6, 227, 13, 0, 1747, 1748, 6, 227, 11, 0, 1748, 472, 1, 0, 0, 0, 1749, 1750, 3, 73, 28, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 228, 12, 0, 1752, 474, 1, 0, 0, 0, 1753, 1754, 3, 75, 29, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 6, 229, 12, 0, 1756, 476, 1, 0, 0, 0, 1757, 1758, 3, 77, 30, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 6, 230, 12, 0, 1760, 478, 1, 0, 0, 0, 1761, 1762, 3, 203, 93, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 6, 231, 13, 0, 1764, 1765, 6, 231, 0, 0, 1765, 1766, 6, 231, 36, 0, 1766, 480, 1, 0, 0, 0, 1767, 1768, 3, 199, 91, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 232, 13, 0, 1770, 1771, 6, 232, 0, 0, 1771, 1772, 6, 232, 37, 0, 1772, 482, 1, 0, 0, 0, 1773, 1774, 3, 113, 48, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 6, 233, 13, 0, 1776, 1777, 6, 233, 0, 0, 1777, 1778, 6, 233, 41, 0, 1778, 484, 1, 0, 0, 0, 1779, 1780, 3, 79, 31, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 6, 234, 17, 0, 1782, 1783, 6, 234, 13, 0, 1783, 486, 1, 0, 0, 0, 1784, 1785, 3, 79, 31, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 6, 235, 17, 0, 1787, 1788, 6, 235, 13, 0, 1788, 488, 1, 0, 0, 0, 1789, 1790, 3, 145, 64, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 6, 236, 32, 0, 1792, 490, 1, 0, 0, 0, 1793, 1794, 3, 293, 138, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 6, 237, 39, 0, 1796, 492, 1, 0, 0, 0, 1797, 1798, 3, 123, 53, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 6, 238, 25, 0, 1800, 494, 1, 0, 0, 0, 1801, 1802, 3, 119, 51, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 6, 239, 21, 0, 1804, 496, 1, 0, 0, 0, 1805, 1806, 3, 203, 93, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 6, 240, 36, 0, 1808, 498, 1, 0, 0, 0, 1809, 1810, 3, 199, 91, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 6, 241, 37, 0, 1812, 500, 1, 0, 0, 0, 1813, 1814, 3, 73, 28, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 6, 242, 12, 0, 1816, 502, 1, 0, 0, 0, 1817, 1818, 3, 75, 29, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 6, 243, 12, 0, 1820, 504, 1, 0, 0, 0, 1821, 1822, 3, 77, 30, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 6, 244, 12, 0, 1824, 506, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 759, 769, 773, 776, 785, 787, 798, 817, 822, 831, 838, 843, 845, 856, 864, 867, 869, 874, 879, 885, 892, 897, 903, 906, 914, 918, 1061, 1066, 1073, 1075, 1080, 1085, 1092, 1094, 1110, 1115, 1120, 1122, 1128, 1209, 1214, 1269, 1273, 1278, 1283, 1288, 1290, 1294, 1296, 1387, 1391, 1396, 1553, 1555, 42, 5, 1, 0, 5, 4, 0, 5, 6, 0, 5, 2, 0, 5, 3, 0, 5, 8, 0, 5, 5, 0, 5, 9, 0, 5, 13, 0, 5, 16, 0, 5, 11, 0, 5, 14, 0, 0, 1, 0, 4, 0, 0, 7, 17, 0, 7, 79, 0, 5, 0, 0, 7, 32, 0, 7, 80, 0, 7, 41, 0, 7, 40, 0, 7, 42, 0, 7, 38, 0, 7, 90, 0, 7, 33, 0, 7, 44, 0, 7, 57, 0, 7, 77, 0, 7, 76, 0, 7, 78, 0, 7, 94, 0, 5, 10, 0, 7, 55, 0, 5, 7, 0, 7, 61, 0, 7, 102, 0, 7, 82, 0, 7, 81, 0, 5, 12, 0, 7, 98, 0, 5, 15, 0, 7, 39, 0]
\ No newline at end of file
+[4, 0, 139, 1824, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 4, 27, 757, 8, 27, 11, 27, 12, 27, 758, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 767, 8, 28, 10, 28, 12, 28, 770, 9, 28, 1, 28, 3, 28, 773, 8, 28, 1, 28, 3, 28, 776, 8, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 785, 8, 29, 10, 29, 12, 29, 788, 9, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 4, 30, 796, 8, 30, 11, 30, 12, 30, 797, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 817, 8, 36, 1, 36, 4, 36, 820, 8, 36, 11, 36, 12, 36, 821, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 831, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 3, 41, 838, 8, 41, 1, 42, 1, 42, 1, 42, 5, 42, 843, 8, 42, 10, 42, 12, 42, 846, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 854, 8, 42, 10, 42, 12, 42, 857, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 864, 8, 42, 1, 42, 3, 42, 867, 8, 42, 3, 42, 869, 8, 42, 1, 43, 4, 43, 872, 8, 43, 11, 43, 12, 43, 873, 1, 44, 4, 44, 877, 8, 44, 11, 44, 12, 44, 878, 1, 44, 1, 44, 5, 44, 883, 8, 44, 10, 44, 12, 44, 886, 9, 44, 1, 44, 1, 44, 4, 44, 890, 8, 44, 11, 44, 12, 44, 891, 1, 44, 4, 44, 895, 8, 44, 11, 44, 12, 44, 896, 1, 44, 1, 44, 5, 44, 901, 8, 44, 10, 44, 12, 44, 904, 9, 44, 3, 44, 906, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 4, 44, 912, 8, 44, 11, 44, 12, 44, 913, 1, 44, 1, 44, 3, 44, 918, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1061, 8, 87, 1, 87, 5, 87, 1064, 8, 87, 10, 87, 12, 87, 1067, 9, 87, 1, 87, 1, 87, 4, 87, 1071, 8, 87, 11, 87, 12, 87, 1072, 3, 87, 1075, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 1080, 8, 88, 1, 88, 5, 88, 1083, 8, 88, 10, 88, 12, 88, 1086, 9, 88, 1, 88, 1, 88, 4, 88, 1090, 8, 88, 11, 88, 12, 88, 1091, 3, 88, 1094, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 5, 91, 1108, 8, 91, 10, 91, 12, 91, 1111, 9, 91, 1, 91, 1, 91, 3, 91, 1115, 8, 91, 1, 91, 4, 91, 1118, 8, 91, 11, 91, 12, 91, 1119, 3, 91, 1122, 8, 91, 1, 92, 1, 92, 4, 92, 1126, 8, 92, 11, 92, 12, 92, 1127, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 3, 110, 1209, 8, 110, 1, 111, 4, 111, 1212, 8, 111, 11, 111, 12, 111, 1213, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1269, 8, 124, 1, 125, 1, 125, 3, 125, 1273, 8, 125, 1, 125, 5, 125, 1276, 8, 125, 10, 125, 12, 125, 1279, 9, 125, 1, 125, 1, 125, 3, 125, 1283, 8, 125, 1, 125, 4, 125, 1286, 8, 125, 11, 125, 12, 125, 1287, 3, 125, 1290, 8, 125, 1, 126, 1, 126, 4, 126, 1294, 8, 126, 11, 126, 12, 126, 1295, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 4, 148, 1385, 8, 148, 11, 148, 12, 148, 1386, 1, 148, 1, 148, 3, 148, 1391, 8, 148, 1, 148, 4, 148, 1394, 8, 148, 11, 148, 12, 148, 1395, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 4, 185, 1553, 8, 185, 11, 185, 12, 185, 1554, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 2, 786, 855, 0, 245, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 30, 77, 31, 79, 32, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 101, 33, 103, 34, 105, 35, 107, 36, 109, 37, 111, 38, 113, 39, 115, 40, 117, 41, 119, 42, 121, 43, 123, 44, 125, 45, 127, 46, 129, 47, 131, 48, 133, 49, 135, 50, 137, 51, 139, 52, 141, 53, 143, 54, 145, 55, 147, 56, 149, 57, 151, 58, 153, 59, 155, 60, 157, 61, 159, 62, 161, 63, 163, 64, 165, 65, 167, 66, 169, 67, 171, 68, 173, 69, 175, 70, 177, 71, 179, 72, 181, 73, 183, 74, 185, 75, 187, 76, 189, 0, 191, 77, 193, 78, 195, 79, 197, 80, 199, 81, 201, 0, 203, 82, 205, 83, 207, 84, 209, 85, 211, 0, 213, 0, 215, 86, 217, 87, 219, 88, 221, 0, 223, 0, 225, 0, 227, 0, 229, 0, 231, 0, 233, 0, 235, 89, 237, 0, 239, 90, 241, 0, 243, 0, 245, 91, 247, 92, 249, 93, 251, 0, 253, 0, 255, 0, 257, 0, 259, 0, 261, 0, 263, 0, 265, 0, 267, 0, 269, 94, 271, 95, 273, 96, 275, 97, 277, 0, 279, 0, 281, 0, 283, 0, 285, 0, 287, 0, 289, 0, 291, 0, 293, 98, 295, 0, 297, 99, 299, 100, 301, 101, 303, 0, 305, 0, 307, 0, 309, 0, 311, 0, 313, 102, 315, 0, 317, 103, 319, 104, 321, 105, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 0, 345, 106, 347, 107, 349, 108, 351, 0, 353, 0, 355, 0, 357, 0, 359, 0, 361, 0, 363, 0, 365, 0, 367, 109, 369, 110, 371, 111, 373, 0, 375, 112, 377, 113, 379, 114, 381, 115, 383, 0, 385, 0, 387, 116, 389, 117, 391, 118, 393, 119, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 120, 411, 121, 413, 122, 415, 0, 417, 0, 419, 0, 421, 0, 423, 123, 425, 124, 427, 125, 429, 0, 431, 126, 433, 0, 435, 0, 437, 127, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 128, 451, 129, 453, 130, 455, 0, 457, 0, 459, 0, 461, 131, 463, 132, 465, 133, 467, 0, 469, 0, 471, 0, 473, 134, 475, 135, 477, 136, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 0, 497, 0, 499, 0, 501, 137, 503, 138, 505, 139, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 67, 67, 99, 99, 2, 0, 79, 79, 111, 111, 2, 0, 77, 77, 109, 109, 2, 0, 80, 80, 112, 112, 2, 0, 76, 76, 108, 108, 2, 0, 69, 69, 101, 101, 2, 0, 84, 84, 116, 116, 2, 0, 73, 73, 105, 105, 2, 0, 78, 78, 110, 110, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 82, 82, 114, 114, 2, 0, 72, 72, 104, 104, 2, 0, 86, 86, 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 88, 88, 120, 120, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 2, 0, 74, 74, 106, 106, 1854, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 1, 79, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 1, 103, 1, 0, 0, 0, 1, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 1, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0, 1, 115, 1, 0, 0, 0, 1, 117, 1, 0, 0, 0, 1, 119, 1, 0, 0, 0, 1, 121, 1, 0, 0, 0, 1, 123, 1, 0, 0, 0, 1, 125, 1, 0, 0, 0, 1, 127, 1, 0, 0, 0, 1, 129, 1, 0, 0, 0, 1, 131, 1, 0, 0, 0, 1, 133, 1, 0, 0, 0, 1, 135, 1, 0, 0, 0, 1, 137, 1, 0, 0, 0, 1, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 1, 143, 1, 0, 0, 0, 1, 145, 1, 0, 0, 0, 1, 147, 1, 0, 0, 0, 1, 149, 1, 0, 0, 0, 1, 151, 1, 0, 0, 0, 1, 153, 1, 0, 0, 0, 1, 155, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 1, 159, 1, 0, 0, 0, 1, 161, 1, 0, 0, 0, 1, 163, 1, 0, 0, 0, 1, 165, 1, 0, 0, 0, 1, 167, 1, 0, 0, 0, 1, 169, 1, 0, 0, 0, 1, 171, 1, 0, 0, 0, 1, 173, 1, 0, 0, 0, 1, 175, 1, 0, 0, 0, 1, 177, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 1, 183, 1, 0, 0, 0, 1, 185, 1, 0, 0, 0, 1, 187, 1, 0, 0, 0, 1, 189, 1, 0, 0, 0, 1, 191, 1, 0, 0, 0, 1, 193, 1, 0, 0, 0, 1, 195, 1, 0, 0, 0, 1, 197, 1, 0, 0, 0, 1, 199, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 1, 207, 1, 0, 0, 0, 1, 209, 1, 0, 0, 0, 2, 211, 1, 0, 0, 0, 2, 213, 1, 0, 0, 0, 2, 215, 1, 0, 0, 0, 2, 217, 1, 0, 0, 0, 2, 219, 1, 0, 0, 0, 3, 221, 1, 0, 0, 0, 3, 223, 1, 0, 0, 0, 3, 225, 1, 0, 0, 0, 3, 227, 1, 0, 0, 0, 3, 229, 1, 0, 0, 0, 3, 231, 1, 0, 0, 0, 3, 233, 1, 0, 0, 0, 3, 235, 1, 0, 0, 0, 3, 239, 1, 0, 0, 0, 3, 241, 1, 0, 0, 0, 3, 243, 1, 0, 0, 0, 3, 245, 1, 0, 0, 0, 3, 247, 1, 0, 0, 0, 3, 249, 1, 0, 0, 0, 4, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 255, 1, 0, 0, 0, 4, 257, 1, 0, 0, 0, 4, 259, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 4, 263, 1, 0, 0, 0, 4, 269, 1, 0, 0, 0, 4, 271, 1, 0, 0, 0, 4, 273, 1, 0, 0, 0, 4, 275, 1, 0, 0, 0, 5, 277, 1, 0, 0, 0, 5, 279, 1, 0, 0, 0, 5, 281, 1, 0, 0, 0, 5, 283, 1, 0, 0, 0, 5, 285, 1, 0, 0, 0, 5, 287, 1, 0, 0, 0, 5, 289, 1, 0, 0, 0, 5, 291, 1, 0, 0, 0, 5, 293, 1, 0, 0, 0, 5, 295, 1, 0, 0, 0, 5, 297, 1, 0, 0, 0, 5, 299, 1, 0, 0, 0, 5, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 305, 1, 0, 0, 0, 6, 307, 1, 0, 0, 0, 6, 309, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 6, 315, 1, 0, 0, 0, 6, 317, 1, 0, 0, 0, 6, 319, 1, 0, 0, 0, 6, 321, 1, 0, 0, 0, 7, 323, 1, 0, 0, 0, 7, 325, 1, 0, 0, 0, 7, 327, 1, 0, 0, 0, 7, 329, 1, 0, 0, 0, 7, 331, 1, 0, 0, 0, 7, 333, 1, 0, 0, 0, 7, 335, 1, 0, 0, 0, 7, 337, 1, 0, 0, 0, 7, 339, 1, 0, 0, 0, 7, 341, 1, 0, 0, 0, 7, 343, 1, 0, 0, 0, 7, 345, 1, 0, 0, 0, 7, 347, 1, 0, 0, 0, 7, 349, 1, 0, 0, 0, 8, 351, 1, 0, 0, 0, 8, 353, 1, 0, 0, 0, 8, 355, 1, 0, 0, 0, 8, 357, 1, 0, 0, 0, 8, 359, 1, 0, 0, 0, 8, 361, 1, 0, 0, 0, 8, 363, 1, 0, 0, 0, 8, 365, 1, 0, 0, 0, 8, 367, 1, 0, 0, 0, 8, 369, 1, 0, 0, 0, 8, 371, 1, 0, 0, 0, 9, 373, 1, 0, 0, 0, 9, 375, 1, 0, 0, 0, 9, 377, 1, 0, 0, 0, 9, 379, 1, 0, 0, 0, 9, 381, 1, 0, 0, 0, 10, 383, 1, 0, 0, 0, 10, 385, 1, 0, 0, 0, 10, 387, 1, 0, 0, 0, 10, 389, 1, 0, 0, 0, 10, 391, 1, 0, 0, 0, 10, 393, 1, 0, 0, 0, 11, 395, 1, 0, 0, 0, 11, 397, 1, 0, 0, 0, 11, 399, 1, 0, 0, 0, 11, 401, 1, 0, 0, 0, 11, 403, 1, 0, 0, 0, 11, 405, 1, 0, 0, 0, 11, 407, 1, 0, 0, 0, 11, 409, 1, 0, 0, 0, 11, 411, 1, 0, 0, 0, 11, 413, 1, 0, 0, 0, 12, 415, 1, 0, 0, 0, 12, 417, 1, 0, 0, 0, 12, 419, 1, 0, 0, 0, 12, 421, 1, 0, 0, 0, 12, 423, 1, 0, 0, 0, 12, 425, 1, 0, 0, 0, 12, 427, 1, 0, 0, 0, 13, 429, 1, 0, 0, 0, 13, 431, 1, 0, 0, 0, 13, 433, 1, 0, 0, 0, 13, 435, 1, 0, 0, 0, 13, 437, 1, 0, 0, 0, 13, 439, 1, 0, 0, 0, 13, 441, 1, 0, 0, 0, 13, 443, 1, 0, 0, 0, 13, 445, 1, 0, 0, 0, 13, 447, 1, 0, 0, 0, 13, 449, 1, 0, 0, 0, 13, 451, 1, 0, 0, 0, 13, 453, 1, 0, 0, 0, 14, 455, 1, 0, 0, 0, 14, 457, 1, 0, 0, 0, 14, 459, 1, 0, 0, 0, 14, 461, 1, 0, 0, 0, 14, 463, 1, 0, 0, 0, 14, 465, 1, 0, 0, 0, 15, 467, 1, 0, 0, 0, 15, 469, 1, 0, 0, 0, 15, 471, 1, 0, 0, 0, 15, 473, 1, 0, 0, 0, 15, 475, 1, 0, 0, 0, 15, 477, 1, 0, 0, 0, 15, 479, 1, 0, 0, 0, 15, 481, 1, 0, 0, 0, 15, 483, 1, 0, 0, 0, 15, 485, 1, 0, 0, 0, 16, 487, 1, 0, 0, 0, 16, 489, 1, 0, 0, 0, 16, 491, 1, 0, 0, 0, 16, 493, 1, 0, 0, 0, 16, 495, 1, 0, 0, 0, 16, 497, 1, 0, 0, 0, 16, 499, 1, 0, 0, 0, 16, 501, 1, 0, 0, 0, 16, 503, 1, 0, 0, 0, 16, 505, 1, 0, 0, 0, 17, 507, 1, 0, 0, 0, 19, 520, 1, 0, 0, 0, 21, 530, 1, 0, 0, 0, 23, 537, 1, 0, 0, 0, 25, 546, 1, 0, 0, 0, 27, 553, 1, 0, 0, 0, 29, 563, 1, 0, 0, 0, 31, 570, 1, 0, 0, 0, 33, 577, 1, 0, 0, 0, 35, 584, 1, 0, 0, 0, 37, 592, 1, 0, 0, 0, 39, 604, 1, 0, 0, 0, 41, 613, 1, 0, 0, 0, 43, 619, 1, 0, 0, 0, 45, 628, 1, 0, 0, 0, 47, 635, 1, 0, 0, 0, 49, 642, 1, 0, 0, 0, 51, 650, 1, 0, 0, 0, 53, 658, 1, 0, 0, 0, 55, 667, 1, 0, 0, 0, 57, 682, 1, 0, 0, 0, 59, 697, 1, 0, 0, 0, 61, 709, 1, 0, 0, 0, 63, 720, 1, 0, 0, 0, 65, 730, 1, 0, 0, 0, 67, 738, 1, 0, 0, 0, 69, 746, 1, 0, 0, 0, 71, 756, 1, 0, 0, 0, 73, 762, 1, 0, 0, 0, 75, 779, 1, 0, 0, 0, 77, 795, 1, 0, 0, 0, 79, 801, 1, 0, 0, 0, 81, 805, 1, 0, 0, 0, 83, 807, 1, 0, 0, 0, 85, 809, 1, 0, 0, 0, 87, 812, 1, 0, 0, 0, 89, 814, 1, 0, 0, 0, 91, 823, 1, 0, 0, 0, 93, 825, 1, 0, 0, 0, 95, 830, 1, 0, 0, 0, 97, 832, 1, 0, 0, 0, 99, 837, 1, 0, 0, 0, 101, 868, 1, 0, 0, 0, 103, 871, 1, 0, 0, 0, 105, 917, 1, 0, 0, 0, 107, 919, 1, 0, 0, 0, 109, 923, 1, 0, 0, 0, 111, 927, 1, 0, 0, 0, 113, 929, 1, 0, 0, 0, 115, 932, 1, 0, 0, 0, 117, 935, 1, 0, 0, 0, 119, 937, 1, 0, 0, 0, 121, 939, 1, 0, 0, 0, 123, 944, 1, 0, 0, 0, 125, 946, 1, 0, 0, 0, 127, 952, 1, 0, 0, 0, 129, 958, 1, 0, 0, 0, 131, 961, 1, 0, 0, 0, 133, 964, 1, 0, 0, 0, 135, 969, 1, 0, 0, 0, 137, 974, 1, 0, 0, 0, 139, 976, 1, 0, 0, 0, 141, 980, 1, 0, 0, 0, 143, 985, 1, 0, 0, 0, 145, 991, 1, 0, 0, 0, 147, 994, 1, 0, 0, 0, 149, 997, 1, 0, 0, 0, 151, 999, 1, 0, 0, 0, 153, 1005, 1, 0, 0, 0, 155, 1007, 1, 0, 0, 0, 157, 1012, 1, 0, 0, 0, 159, 1017, 1, 0, 0, 0, 161, 1020, 1, 0, 0, 0, 163, 1023, 1, 0, 0, 0, 165, 1026, 1, 0, 0, 0, 167, 1028, 1, 0, 0, 0, 169, 1031, 1, 0, 0, 0, 171, 1033, 1, 0, 0, 0, 173, 1036, 1, 0, 0, 0, 175, 1038, 1, 0, 0, 0, 177, 1040, 1, 0, 0, 0, 179, 1042, 1, 0, 0, 0, 181, 1044, 1, 0, 0, 0, 183, 1046, 1, 0, 0, 0, 185, 1048, 1, 0, 0, 0, 187, 1050, 1, 0, 0, 0, 189, 1053, 1, 0, 0, 0, 191, 1074, 1, 0, 0, 0, 193, 1093, 1, 0, 0, 0, 195, 1095, 1, 0, 0, 0, 197, 1100, 1, 0, 0, 0, 199, 1121, 1, 0, 0, 0, 201, 1123, 1, 0, 0, 0, 203, 1131, 1, 0, 0, 0, 205, 1133, 1, 0, 0, 0, 207, 1137, 1, 0, 0, 0, 209, 1141, 1, 0, 0, 0, 211, 1145, 1, 0, 0, 0, 213, 1150, 1, 0, 0, 0, 215, 1155, 1, 0, 0, 0, 217, 1159, 1, 0, 0, 0, 219, 1163, 1, 0, 0, 0, 221, 1167, 1, 0, 0, 0, 223, 1172, 1, 0, 0, 0, 225, 1176, 1, 0, 0, 0, 227, 1180, 1, 0, 0, 0, 229, 1184, 1, 0, 0, 0, 231, 1188, 1, 0, 0, 0, 233, 1192, 1, 0, 0, 0, 235, 1196, 1, 0, 0, 0, 237, 1208, 1, 0, 0, 0, 239, 1211, 1, 0, 0, 0, 241, 1215, 1, 0, 0, 0, 243, 1219, 1, 0, 0, 0, 245, 1223, 1, 0, 0, 0, 247, 1227, 1, 0, 0, 0, 249, 1231, 1, 0, 0, 0, 251, 1235, 1, 0, 0, 0, 253, 1240, 1, 0, 0, 0, 255, 1244, 1, 0, 0, 0, 257, 1248, 1, 0, 0, 0, 259, 1252, 1, 0, 0, 0, 261, 1256, 1, 0, 0, 0, 263, 1260, 1, 0, 0, 0, 265, 1268, 1, 0, 0, 0, 267, 1289, 1, 0, 0, 0, 269, 1293, 1, 0, 0, 0, 271, 1297, 1, 0, 0, 0, 273, 1301, 1, 0, 0, 0, 275, 1305, 1, 0, 0, 0, 277, 1309, 1, 0, 0, 0, 279, 1314, 1, 0, 0, 0, 281, 1318, 1, 0, 0, 0, 283, 1322, 1, 0, 0, 0, 285, 1326, 1, 0, 0, 0, 287, 1330, 1, 0, 0, 0, 289, 1334, 1, 0, 0, 0, 291, 1338, 1, 0, 0, 0, 293, 1342, 1, 0, 0, 0, 295, 1345, 1, 0, 0, 0, 297, 1349, 1, 0, 0, 0, 299, 1353, 1, 0, 0, 0, 301, 1357, 1, 0, 0, 0, 303, 1361, 1, 0, 0, 0, 305, 1366, 1, 0, 0, 0, 307, 1371, 1, 0, 0, 0, 309, 1376, 1, 0, 0, 0, 311, 1381, 1, 0, 0, 0, 313, 1390, 1, 0, 0, 0, 315, 1397, 1, 0, 0, 0, 317, 1401, 1, 0, 0, 0, 319, 1405, 1, 0, 0, 0, 321, 1409, 1, 0, 0, 0, 323, 1413, 1, 0, 0, 0, 325, 1419, 1, 0, 0, 0, 327, 1423, 1, 0, 0, 0, 329, 1427, 1, 0, 0, 0, 331, 1431, 1, 0, 0, 0, 333, 1435, 1, 0, 0, 0, 335, 1439, 1, 0, 0, 0, 337, 1443, 1, 0, 0, 0, 339, 1447, 1, 0, 0, 0, 341, 1451, 1, 0, 0, 0, 343, 1455, 1, 0, 0, 0, 345, 1459, 1, 0, 0, 0, 347, 1463, 1, 0, 0, 0, 349, 1467, 1, 0, 0, 0, 351, 1471, 1, 0, 0, 0, 353, 1476, 1, 0, 0, 0, 355, 1480, 1, 0, 0, 0, 357, 1484, 1, 0, 0, 0, 359, 1488, 1, 0, 0, 0, 361, 1492, 1, 0, 0, 0, 363, 1496, 1, 0, 0, 0, 365, 1500, 1, 0, 0, 0, 367, 1504, 1, 0, 0, 0, 369, 1508, 1, 0, 0, 0, 371, 1512, 1, 0, 0, 0, 373, 1516, 1, 0, 0, 0, 375, 1521, 1, 0, 0, 0, 377, 1526, 1, 0, 0, 0, 379, 1530, 1, 0, 0, 0, 381, 1534, 1, 0, 0, 0, 383, 1538, 1, 0, 0, 0, 385, 1543, 1, 0, 0, 0, 387, 1552, 1, 0, 0, 0, 389, 1556, 1, 0, 0, 0, 391, 1560, 1, 0, 0, 0, 393, 1564, 1, 0, 0, 0, 395, 1568, 1, 0, 0, 0, 397, 1573, 1, 0, 0, 0, 399, 1577, 1, 0, 0, 0, 401, 1581, 1, 0, 0, 0, 403, 1585, 1, 0, 0, 0, 405, 1590, 1, 0, 0, 0, 407, 1594, 1, 0, 0, 0, 409, 1598, 1, 0, 0, 0, 411, 1602, 1, 0, 0, 0, 413, 1606, 1, 0, 0, 0, 415, 1610, 1, 0, 0, 0, 417, 1616, 1, 0, 0, 0, 419, 1620, 1, 0, 0, 0, 421, 1624, 1, 0, 0, 0, 423, 1628, 1, 0, 0, 0, 425, 1632, 1, 0, 0, 0, 427, 1636, 1, 0, 0, 0, 429, 1640, 1, 0, 0, 0, 431, 1645, 1, 0, 0, 0, 433, 1650, 1, 0, 0, 0, 435, 1654, 1, 0, 0, 0, 437, 1660, 1, 0, 0, 0, 439, 1669, 1, 0, 0, 0, 441, 1673, 1, 0, 0, 0, 443, 1677, 1, 0, 0, 0, 445, 1681, 1, 0, 0, 0, 447, 1685, 1, 0, 0, 0, 449, 1689, 1, 0, 0, 0, 451, 1693, 1, 0, 0, 0, 453, 1697, 1, 0, 0, 0, 455, 1701, 1, 0, 0, 0, 457, 1706, 1, 0, 0, 0, 459, 1712, 1, 0, 0, 0, 461, 1718, 1, 0, 0, 0, 463, 1722, 1, 0, 0, 0, 465, 1726, 1, 0, 0, 0, 467, 1730, 1, 0, 0, 0, 469, 1736, 1, 0, 0, 0, 471, 1742, 1, 0, 0, 0, 473, 1748, 1, 0, 0, 0, 475, 1752, 1, 0, 0, 0, 477, 1756, 1, 0, 0, 0, 479, 1760, 1, 0, 0, 0, 481, 1766, 1, 0, 0, 0, 483, 1772, 1, 0, 0, 0, 485, 1778, 1, 0, 0, 0, 487, 1783, 1, 0, 0, 0, 489, 1788, 1, 0, 0, 0, 491, 1792, 1, 0, 0, 0, 493, 1796, 1, 0, 0, 0, 495, 1800, 1, 0, 0, 0, 497, 1804, 1, 0, 0, 0, 499, 1808, 1, 0, 0, 0, 501, 1812, 1, 0, 0, 0, 503, 1816, 1, 0, 0, 0, 505, 1820, 1, 0, 0, 0, 507, 508, 7, 0, 0, 0, 508, 509, 7, 1, 0, 0, 509, 510, 7, 2, 0, 0, 510, 511, 7, 3, 0, 0, 511, 512, 7, 4, 0, 0, 512, 513, 7, 5, 0, 0, 513, 514, 7, 6, 0, 0, 514, 515, 7, 7, 0, 0, 515, 516, 7, 1, 0, 0, 516, 517, 7, 8, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 0, 0, 0, 519, 18, 1, 0, 0, 0, 520, 521, 7, 9, 0, 0, 521, 522, 7, 7, 0, 0, 522, 523, 7, 10, 0, 0, 523, 524, 7, 10, 0, 0, 524, 525, 7, 5, 0, 0, 525, 526, 7, 0, 0, 0, 526, 527, 7, 6, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 6, 1, 0, 0, 529, 20, 1, 0, 0, 0, 530, 531, 7, 9, 0, 0, 531, 532, 7, 11, 0, 0, 532, 533, 7, 1, 0, 0, 533, 534, 7, 3, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 6, 2, 1, 0, 536, 22, 1, 0, 0, 0, 537, 538, 7, 5, 0, 0, 538, 539, 7, 8, 0, 0, 539, 540, 7, 11, 0, 0, 540, 541, 7, 7, 0, 0, 541, 542, 7, 0, 0, 0, 542, 543, 7, 12, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 6, 3, 2, 0, 545, 24, 1, 0, 0, 0, 546, 547, 7, 5, 0, 0, 547, 548, 7, 13, 0, 0, 548, 549, 7, 14, 0, 0, 549, 550, 7, 4, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 6, 4, 0, 0, 552, 26, 1, 0, 0, 0, 553, 554, 7, 5, 0, 0, 554, 555, 7, 15, 0, 0, 555, 556, 7, 3, 0, 0, 556, 557, 7, 4, 0, 0, 557, 558, 7, 14, 0, 0, 558, 559, 7, 7, 0, 0, 559, 560, 7, 8, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 6, 5, 3, 0, 562, 28, 1, 0, 0, 0, 563, 564, 7, 16, 0, 0, 564, 565, 7, 11, 0, 0, 565, 566, 7, 1, 0, 0, 566, 567, 7, 2, 0, 0, 567, 568, 1, 0, 0, 0, 568, 569, 6, 6, 4, 0, 569, 30, 1, 0, 0, 0, 570, 571, 7, 17, 0, 0, 571, 572, 7, 11, 0, 0, 572, 573, 7, 1, 0, 0, 573, 574, 7, 18, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 6, 7, 0, 0, 576, 32, 1, 0, 0, 0, 577, 578, 7, 18, 0, 0, 578, 579, 7, 5, 0, 0, 579, 580, 7, 5, 0, 0, 580, 581, 7, 3, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 6, 8, 1, 0, 583, 34, 1, 0, 0, 0, 584, 585, 7, 4, 0, 0, 585, 586, 7, 7, 0, 0, 586, 587, 7, 2, 0, 0, 587, 588, 7, 7, 0, 0, 588, 589, 7, 6, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 6, 9, 0, 0, 591, 36, 1, 0, 0, 0, 592, 593, 7, 2, 0, 0, 593, 594, 7, 13, 0, 0, 594, 595, 5, 95, 0, 0, 595, 596, 7, 5, 0, 0, 596, 597, 7, 15, 0, 0, 597, 598, 7, 3, 0, 0, 598, 599, 7, 14, 0, 0, 599, 600, 7, 8, 0, 0, 600, 601, 7, 9, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 6, 10, 5, 0, 603, 38, 1, 0, 0, 0, 604, 605, 7, 11, 0, 0, 605, 606, 7, 5, 0, 0, 606, 607, 7, 8, 0, 0, 607, 608, 7, 14, 0, 0, 608, 609, 7, 2, 0, 0, 609, 610, 7, 5, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 6, 11, 6, 0, 612, 40, 1, 0, 0, 0, 613, 614, 7, 11, 0, 0, 614, 615, 7, 1, 0, 0, 615, 616, 7, 19, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 6, 12, 0, 0, 618, 42, 1, 0, 0, 0, 619, 620, 7, 10, 0, 0, 620, 621, 7, 14, 0, 0, 621, 622, 7, 2, 0, 0, 622, 623, 7, 3, 0, 0, 623, 624, 7, 4, 0, 0, 624, 625, 7, 5, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 6, 13, 0, 0, 627, 44, 1, 0, 0, 0, 628, 629, 7, 10, 0, 0, 629, 630, 7, 12, 0, 0, 630, 631, 7, 1, 0, 0, 631, 632, 7, 19, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 6, 14, 7, 0, 634, 46, 1, 0, 0, 0, 635, 636, 7, 10, 0, 0, 636, 637, 7, 1, 0, 0, 637, 638, 7, 11, 0, 0, 638, 639, 7, 6, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 6, 15, 0, 0, 641, 48, 1, 0, 0, 0, 642, 643, 7, 10, 0, 0, 643, 644, 7, 6, 0, 0, 644, 645, 7, 14, 0, 0, 645, 646, 7, 6, 0, 0, 646, 647, 7, 10, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 6, 16, 0, 0, 649, 50, 1, 0, 0, 0, 650, 651, 7, 19, 0, 0, 651, 652, 7, 12, 0, 0, 652, 653, 7, 5, 0, 0, 653, 654, 7, 11, 0, 0, 654, 655, 7, 5, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 6, 17, 0, 0, 657, 52, 1, 0, 0, 0, 658, 659, 7, 4, 0, 0, 659, 660, 7, 1, 0, 0, 660, 661, 7, 1, 0, 0, 661, 662, 7, 18, 0, 0, 662, 663, 7, 20, 0, 0, 663, 664, 7, 3, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 6, 18, 8, 0, 666, 54, 1, 0, 0, 0, 667, 668, 7, 0, 0, 0, 668, 669, 7, 12, 0, 0, 669, 670, 7, 14, 0, 0, 670, 671, 7, 8, 0, 0, 671, 672, 7, 17, 0, 0, 672, 673, 7, 5, 0, 0, 673, 674, 5, 95, 0, 0, 674, 675, 7, 3, 0, 0, 675, 676, 7, 1, 0, 0, 676, 677, 7, 7, 0, 0, 677, 678, 7, 8, 0, 0, 678, 679, 7, 6, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 6, 19, 9, 0, 681, 56, 1, 0, 0, 0, 682, 683, 4, 20, 0, 0, 683, 684, 7, 7, 0, 0, 684, 685, 7, 8, 0, 0, 685, 686, 7, 4, 0, 0, 686, 687, 7, 7, 0, 0, 687, 688, 7, 8, 0, 0, 688, 689, 7, 5, 0, 0, 689, 690, 7, 10, 0, 0, 690, 691, 7, 6, 0, 0, 691, 692, 7, 14, 0, 0, 692, 693, 7, 6, 0, 0, 693, 694, 7, 10, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 6, 20, 0, 0, 696, 58, 1, 0, 0, 0, 697, 698, 4, 21, 1, 0, 698, 699, 7, 4, 0, 0, 699, 700, 7, 1, 0, 0, 700, 701, 7, 1, 0, 0, 701, 702, 7, 18, 0, 0, 702, 703, 7, 20, 0, 0, 703, 704, 7, 3, 0, 0, 704, 705, 5, 95, 0, 0, 705, 706, 5, 128020, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 6, 21, 10, 0, 708, 60, 1, 0, 0, 0, 709, 710, 4, 22, 2, 0, 710, 711, 7, 2, 0, 0, 711, 712, 7, 5, 0, 0, 712, 713, 7, 6, 0, 0, 713, 714, 7, 11, 0, 0, 714, 715, 7, 7, 0, 0, 715, 716, 7, 0, 0, 0, 716, 717, 7, 10, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 6, 22, 11, 0, 719, 62, 1, 0, 0, 0, 720, 721, 4, 23, 3, 0, 721, 722, 7, 11, 0, 0, 722, 723, 7, 5, 0, 0, 723, 724, 7, 11, 0, 0, 724, 725, 7, 14, 0, 0, 725, 726, 7, 8, 0, 0, 726, 727, 7, 18, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 6, 23, 0, 0, 729, 64, 1, 0, 0, 0, 730, 731, 4, 24, 4, 0, 731, 732, 7, 16, 0, 0, 732, 733, 7, 20, 0, 0, 733, 734, 7, 4, 0, 0, 734, 735, 7, 4, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 6, 24, 8, 0, 737, 66, 1, 0, 0, 0, 738, 739, 4, 25, 5, 0, 739, 740, 7, 4, 0, 0, 740, 741, 7, 5, 0, 0, 741, 742, 7, 16, 0, 0, 742, 743, 7, 6, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 6, 25, 8, 0, 745, 68, 1, 0, 0, 0, 746, 747, 4, 26, 6, 0, 747, 748, 7, 11, 0, 0, 748, 749, 7, 7, 0, 0, 749, 750, 7, 17, 0, 0, 750, 751, 7, 12, 0, 0, 751, 752, 7, 6, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 6, 26, 8, 0, 754, 70, 1, 0, 0, 0, 755, 757, 8, 21, 0, 0, 756, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 756, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 6, 27, 0, 0, 761, 72, 1, 0, 0, 0, 762, 763, 5, 47, 0, 0, 763, 764, 5, 47, 0, 0, 764, 768, 1, 0, 0, 0, 765, 767, 8, 22, 0, 0, 766, 765, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 772, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 773, 5, 13, 0, 0, 772, 771, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 775, 1, 0, 0, 0, 774, 776, 5, 10, 0, 0, 775, 774, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 6, 28, 12, 0, 778, 74, 1, 0, 0, 0, 779, 780, 5, 47, 0, 0, 780, 781, 5, 42, 0, 0, 781, 786, 1, 0, 0, 0, 782, 785, 3, 75, 29, 0, 783, 785, 9, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 783, 1, 0, 0, 0, 785, 788, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 787, 789, 1, 0, 0, 0, 788, 786, 1, 0, 0, 0, 789, 790, 5, 42, 0, 0, 790, 791, 5, 47, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 6, 29, 12, 0, 793, 76, 1, 0, 0, 0, 794, 796, 7, 23, 0, 0, 795, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 6, 30, 12, 0, 800, 78, 1, 0, 0, 0, 801, 802, 5, 124, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 6, 31, 13, 0, 804, 80, 1, 0, 0, 0, 805, 806, 7, 24, 0, 0, 806, 82, 1, 0, 0, 0, 807, 808, 7, 25, 0, 0, 808, 84, 1, 0, 0, 0, 809, 810, 5, 92, 0, 0, 810, 811, 7, 26, 0, 0, 811, 86, 1, 0, 0, 0, 812, 813, 8, 27, 0, 0, 813, 88, 1, 0, 0, 0, 814, 816, 7, 5, 0, 0, 815, 817, 7, 28, 0, 0, 816, 815, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 819, 1, 0, 0, 0, 818, 820, 3, 81, 32, 0, 819, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 90, 1, 0, 0, 0, 823, 824, 5, 64, 0, 0, 824, 92, 1, 0, 0, 0, 825, 826, 5, 96, 0, 0, 826, 94, 1, 0, 0, 0, 827, 831, 8, 29, 0, 0, 828, 829, 5, 96, 0, 0, 829, 831, 5, 96, 0, 0, 830, 827, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 96, 1, 0, 0, 0, 832, 833, 5, 95, 0, 0, 833, 98, 1, 0, 0, 0, 834, 838, 3, 83, 33, 0, 835, 838, 3, 81, 32, 0, 836, 838, 3, 97, 40, 0, 837, 834, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 837, 836, 1, 0, 0, 0, 838, 100, 1, 0, 0, 0, 839, 844, 5, 34, 0, 0, 840, 843, 3, 85, 34, 0, 841, 843, 3, 87, 35, 0, 842, 840, 1, 0, 0, 0, 842, 841, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 847, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 847, 869, 5, 34, 0, 0, 848, 849, 5, 34, 0, 0, 849, 850, 5, 34, 0, 0, 850, 851, 5, 34, 0, 0, 851, 855, 1, 0, 0, 0, 852, 854, 8, 22, 0, 0, 853, 852, 1, 0, 0, 0, 854, 857, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 858, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 858, 859, 5, 34, 0, 0, 859, 860, 5, 34, 0, 0, 860, 861, 5, 34, 0, 0, 861, 863, 1, 0, 0, 0, 862, 864, 5, 34, 0, 0, 863, 862, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 866, 1, 0, 0, 0, 865, 867, 5, 34, 0, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 869, 1, 0, 0, 0, 868, 839, 1, 0, 0, 0, 868, 848, 1, 0, 0, 0, 869, 102, 1, 0, 0, 0, 870, 872, 3, 81, 32, 0, 871, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 104, 1, 0, 0, 0, 875, 877, 3, 81, 32, 0, 876, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 884, 3, 123, 53, 0, 881, 883, 3, 81, 32, 0, 882, 881, 1, 0, 0, 0, 883, 886, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 918, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 887, 889, 3, 123, 53, 0, 888, 890, 3, 81, 32, 0, 889, 888, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 918, 1, 0, 0, 0, 893, 895, 3, 81, 32, 0, 894, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 905, 1, 0, 0, 0, 898, 902, 3, 123, 53, 0, 899, 901, 3, 81, 32, 0, 900, 899, 1, 0, 0, 0, 901, 904, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 906, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 905, 898, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 3, 89, 36, 0, 908, 918, 1, 0, 0, 0, 909, 911, 3, 123, 53, 0, 910, 912, 3, 81, 32, 0, 911, 910, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 3, 89, 36, 0, 916, 918, 1, 0, 0, 0, 917, 876, 1, 0, 0, 0, 917, 887, 1, 0, 0, 0, 917, 894, 1, 0, 0, 0, 917, 909, 1, 0, 0, 0, 918, 106, 1, 0, 0, 0, 919, 920, 7, 14, 0, 0, 920, 921, 7, 8, 0, 0, 921, 922, 7, 9, 0, 0, 922, 108, 1, 0, 0, 0, 923, 924, 7, 14, 0, 0, 924, 925, 7, 10, 0, 0, 925, 926, 7, 0, 0, 0, 926, 110, 1, 0, 0, 0, 927, 928, 5, 61, 0, 0, 928, 112, 1, 0, 0, 0, 929, 930, 7, 30, 0, 0, 930, 931, 7, 31, 0, 0, 931, 114, 1, 0, 0, 0, 932, 933, 5, 58, 0, 0, 933, 934, 5, 58, 0, 0, 934, 116, 1, 0, 0, 0, 935, 936, 5, 58, 0, 0, 936, 118, 1, 0, 0, 0, 937, 938, 5, 44, 0, 0, 938, 120, 1, 0, 0, 0, 939, 940, 7, 9, 0, 0, 940, 941, 7, 5, 0, 0, 941, 942, 7, 10, 0, 0, 942, 943, 7, 0, 0, 0, 943, 122, 1, 0, 0, 0, 944, 945, 5, 46, 0, 0, 945, 124, 1, 0, 0, 0, 946, 947, 7, 16, 0, 0, 947, 948, 7, 14, 0, 0, 948, 949, 7, 4, 0, 0, 949, 950, 7, 10, 0, 0, 950, 951, 7, 5, 0, 0, 951, 126, 1, 0, 0, 0, 952, 953, 7, 16, 0, 0, 953, 954, 7, 7, 0, 0, 954, 955, 7, 11, 0, 0, 955, 956, 7, 10, 0, 0, 956, 957, 7, 6, 0, 0, 957, 128, 1, 0, 0, 0, 958, 959, 7, 7, 0, 0, 959, 960, 7, 8, 0, 0, 960, 130, 1, 0, 0, 0, 961, 962, 7, 7, 0, 0, 962, 963, 7, 10, 0, 0, 963, 132, 1, 0, 0, 0, 964, 965, 7, 4, 0, 0, 965, 966, 7, 14, 0, 0, 966, 967, 7, 10, 0, 0, 967, 968, 7, 6, 0, 0, 968, 134, 1, 0, 0, 0, 969, 970, 7, 4, 0, 0, 970, 971, 7, 7, 0, 0, 971, 972, 7, 18, 0, 0, 972, 973, 7, 5, 0, 0, 973, 136, 1, 0, 0, 0, 974, 975, 5, 40, 0, 0, 975, 138, 1, 0, 0, 0, 976, 977, 7, 8, 0, 0, 977, 978, 7, 1, 0, 0, 978, 979, 7, 6, 0, 0, 979, 140, 1, 0, 0, 0, 980, 981, 7, 8, 0, 0, 981, 982, 7, 20, 0, 0, 982, 983, 7, 4, 0, 0, 983, 984, 7, 4, 0, 0, 984, 142, 1, 0, 0, 0, 985, 986, 7, 8, 0, 0, 986, 987, 7, 20, 0, 0, 987, 988, 7, 4, 0, 0, 988, 989, 7, 4, 0, 0, 989, 990, 7, 10, 0, 0, 990, 144, 1, 0, 0, 0, 991, 992, 7, 1, 0, 0, 992, 993, 7, 8, 0, 0, 993, 146, 1, 0, 0, 0, 994, 995, 7, 1, 0, 0, 995, 996, 7, 11, 0, 0, 996, 148, 1, 0, 0, 0, 997, 998, 5, 63, 0, 0, 998, 150, 1, 0, 0, 0, 999, 1000, 7, 11, 0, 0, 1000, 1001, 7, 4, 0, 0, 1001, 1002, 7, 7, 0, 0, 1002, 1003, 7, 18, 0, 0, 1003, 1004, 7, 5, 0, 0, 1004, 152, 1, 0, 0, 0, 1005, 1006, 5, 41, 0, 0, 1006, 154, 1, 0, 0, 0, 1007, 1008, 7, 6, 0, 0, 1008, 1009, 7, 11, 0, 0, 1009, 1010, 7, 20, 0, 0, 1010, 1011, 7, 5, 0, 0, 1011, 156, 1, 0, 0, 0, 1012, 1013, 7, 19, 0, 0, 1013, 1014, 7, 7, 0, 0, 1014, 1015, 7, 6, 0, 0, 1015, 1016, 7, 12, 0, 0, 1016, 158, 1, 0, 0, 0, 1017, 1018, 5, 61, 0, 0, 1018, 1019, 5, 61, 0, 0, 1019, 160, 1, 0, 0, 0, 1020, 1021, 5, 61, 0, 0, 1021, 1022, 5, 126, 0, 0, 1022, 162, 1, 0, 0, 0, 1023, 1024, 5, 33, 0, 0, 1024, 1025, 5, 61, 0, 0, 1025, 164, 1, 0, 0, 0, 1026, 1027, 5, 60, 0, 0, 1027, 166, 1, 0, 0, 0, 1028, 1029, 5, 60, 0, 0, 1029, 1030, 5, 61, 0, 0, 1030, 168, 1, 0, 0, 0, 1031, 1032, 5, 62, 0, 0, 1032, 170, 1, 0, 0, 0, 1033, 1034, 5, 62, 0, 0, 1034, 1035, 5, 61, 0, 0, 1035, 172, 1, 0, 0, 0, 1036, 1037, 5, 43, 0, 0, 1037, 174, 1, 0, 0, 0, 1038, 1039, 5, 45, 0, 0, 1039, 176, 1, 0, 0, 0, 1040, 1041, 5, 42, 0, 0, 1041, 178, 1, 0, 0, 0, 1042, 1043, 5, 47, 0, 0, 1043, 180, 1, 0, 0, 0, 1044, 1045, 5, 37, 0, 0, 1045, 182, 1, 0, 0, 0, 1046, 1047, 5, 123, 0, 0, 1047, 184, 1, 0, 0, 0, 1048, 1049, 5, 125, 0, 0, 1049, 186, 1, 0, 0, 0, 1050, 1051, 5, 63, 0, 0, 1051, 1052, 5, 63, 0, 0, 1052, 188, 1, 0, 0, 0, 1053, 1054, 3, 51, 17, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 6, 86, 14, 0, 1056, 190, 1, 0, 0, 0, 1057, 1060, 3, 149, 66, 0, 1058, 1061, 3, 83, 33, 0, 1059, 1061, 3, 97, 40, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1059, 1, 0, 0, 0, 1061, 1065, 1, 0, 0, 0, 1062, 1064, 3, 99, 41, 0, 1063, 1062, 1, 0, 0, 0, 1064, 1067, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1075, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1068, 1070, 3, 149, 66, 0, 1069, 1071, 3, 81, 32, 0, 1070, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 1057, 1, 0, 0, 0, 1074, 1068, 1, 0, 0, 0, 1075, 192, 1, 0, 0, 0, 1076, 1079, 3, 187, 85, 0, 1077, 1080, 3, 83, 33, 0, 1078, 1080, 3, 97, 40, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 1084, 1, 0, 0, 0, 1081, 1083, 3, 99, 41, 0, 1082, 1081, 1, 0, 0, 0, 1083, 1086, 1, 0, 0, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1094, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1087, 1089, 3, 187, 85, 0, 1088, 1090, 3, 81, 32, 0, 1089, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 1, 0, 0, 0, 1093, 1076, 1, 0, 0, 0, 1093, 1087, 1, 0, 0, 0, 1094, 194, 1, 0, 0, 0, 1095, 1096, 5, 91, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 6, 89, 0, 0, 1098, 1099, 6, 89, 0, 0, 1099, 196, 1, 0, 0, 0, 1100, 1101, 5, 93, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 6, 90, 13, 0, 1103, 1104, 6, 90, 13, 0, 1104, 198, 1, 0, 0, 0, 1105, 1109, 3, 83, 33, 0, 1106, 1108, 3, 99, 41, 0, 1107, 1106, 1, 0, 0, 0, 1108, 1111, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1122, 1, 0, 0, 0, 1111, 1109, 1, 0, 0, 0, 1112, 1115, 3, 97, 40, 0, 1113, 1115, 3, 91, 37, 0, 1114, 1112, 1, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1118, 3, 99, 41, 0, 1117, 1116, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1117, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1105, 1, 0, 0, 0, 1121, 1114, 1, 0, 0, 0, 1122, 200, 1, 0, 0, 0, 1123, 1125, 3, 93, 38, 0, 1124, 1126, 3, 95, 39, 0, 1125, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 3, 93, 38, 0, 1130, 202, 1, 0, 0, 0, 1131, 1132, 3, 201, 92, 0, 1132, 204, 1, 0, 0, 0, 1133, 1134, 3, 73, 28, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 6, 94, 12, 0, 1136, 206, 1, 0, 0, 0, 1137, 1138, 3, 75, 29, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 6, 95, 12, 0, 1140, 208, 1, 0, 0, 0, 1141, 1142, 3, 77, 30, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 6, 96, 12, 0, 1144, 210, 1, 0, 0, 0, 1145, 1146, 3, 195, 89, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 6, 97, 15, 0, 1148, 1149, 6, 97, 16, 0, 1149, 212, 1, 0, 0, 0, 1150, 1151, 3, 79, 31, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 6, 98, 17, 0, 1153, 1154, 6, 98, 13, 0, 1154, 214, 1, 0, 0, 0, 1155, 1156, 3, 77, 30, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 6, 99, 12, 0, 1158, 216, 1, 0, 0, 0, 1159, 1160, 3, 73, 28, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 6, 100, 12, 0, 1162, 218, 1, 0, 0, 0, 1163, 1164, 3, 75, 29, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 6, 101, 12, 0, 1166, 220, 1, 0, 0, 0, 1167, 1168, 3, 79, 31, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 6, 102, 17, 0, 1170, 1171, 6, 102, 13, 0, 1171, 222, 1, 0, 0, 0, 1172, 1173, 3, 195, 89, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 6, 103, 15, 0, 1175, 224, 1, 0, 0, 0, 1176, 1177, 3, 197, 90, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 6, 104, 18, 0, 1179, 226, 1, 0, 0, 0, 1180, 1181, 3, 117, 50, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 6, 105, 19, 0, 1183, 228, 1, 0, 0, 0, 1184, 1185, 3, 115, 49, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 6, 106, 20, 0, 1187, 230, 1, 0, 0, 0, 1188, 1189, 3, 119, 51, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 6, 107, 21, 0, 1191, 232, 1, 0, 0, 0, 1192, 1193, 3, 111, 47, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 6, 108, 22, 0, 1195, 234, 1, 0, 0, 0, 1196, 1197, 7, 2, 0, 0, 1197, 1198, 7, 5, 0, 0, 1198, 1199, 7, 6, 0, 0, 1199, 1200, 7, 14, 0, 0, 1200, 1201, 7, 9, 0, 0, 1201, 1202, 7, 14, 0, 0, 1202, 1203, 7, 6, 0, 0, 1203, 1204, 7, 14, 0, 0, 1204, 236, 1, 0, 0, 0, 1205, 1209, 8, 32, 0, 0, 1206, 1207, 5, 47, 0, 0, 1207, 1209, 8, 33, 0, 0, 1208, 1205, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1209, 238, 1, 0, 0, 0, 1210, 1212, 3, 237, 110, 0, 1211, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 240, 1, 0, 0, 0, 1215, 1216, 3, 239, 111, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 6, 112, 23, 0, 1218, 242, 1, 0, 0, 0, 1219, 1220, 3, 101, 42, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 6, 113, 24, 0, 1222, 244, 1, 0, 0, 0, 1223, 1224, 3, 73, 28, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 6, 114, 12, 0, 1226, 246, 1, 0, 0, 0, 1227, 1228, 3, 75, 29, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 6, 115, 12, 0, 1230, 248, 1, 0, 0, 0, 1231, 1232, 3, 77, 30, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 6, 116, 12, 0, 1234, 250, 1, 0, 0, 0, 1235, 1236, 3, 79, 31, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 6, 117, 17, 0, 1238, 1239, 6, 117, 13, 0, 1239, 252, 1, 0, 0, 0, 1240, 1241, 3, 123, 53, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 6, 118, 25, 0, 1243, 254, 1, 0, 0, 0, 1244, 1245, 3, 119, 51, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 6, 119, 21, 0, 1247, 256, 1, 0, 0, 0, 1248, 1249, 3, 149, 66, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 6, 120, 26, 0, 1251, 258, 1, 0, 0, 0, 1252, 1253, 3, 191, 87, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 6, 121, 27, 0, 1255, 260, 1, 0, 0, 0, 1256, 1257, 3, 187, 85, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 6, 122, 28, 0, 1259, 262, 1, 0, 0, 0, 1260, 1261, 3, 193, 88, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 6, 123, 29, 0, 1263, 264, 1, 0, 0, 0, 1264, 1269, 3, 83, 33, 0, 1265, 1269, 3, 81, 32, 0, 1266, 1269, 3, 97, 40, 0, 1267, 1269, 3, 177, 80, 0, 1268, 1264, 1, 0, 0, 0, 1268, 1265, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 266, 1, 0, 0, 0, 1270, 1273, 3, 83, 33, 0, 1271, 1273, 3, 177, 80, 0, 1272, 1270, 1, 0, 0, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1277, 1, 0, 0, 0, 1274, 1276, 3, 265, 124, 0, 1275, 1274, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1290, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1283, 3, 97, 40, 0, 1281, 1283, 3, 91, 37, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1285, 1, 0, 0, 0, 1284, 1286, 3, 265, 124, 0, 1285, 1284, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1272, 1, 0, 0, 0, 1289, 1282, 1, 0, 0, 0, 1290, 268, 1, 0, 0, 0, 1291, 1294, 3, 267, 125, 0, 1292, 1294, 3, 201, 92, 0, 1293, 1291, 1, 0, 0, 0, 1293, 1292, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 270, 1, 0, 0, 0, 1297, 1298, 3, 73, 28, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 6, 127, 12, 0, 1300, 272, 1, 0, 0, 0, 1301, 1302, 3, 75, 29, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 6, 128, 12, 0, 1304, 274, 1, 0, 0, 0, 1305, 1306, 3, 77, 30, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 6, 129, 12, 0, 1308, 276, 1, 0, 0, 0, 1309, 1310, 3, 79, 31, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 6, 130, 17, 0, 1312, 1313, 6, 130, 13, 0, 1313, 278, 1, 0, 0, 0, 1314, 1315, 3, 111, 47, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 6, 131, 22, 0, 1317, 280, 1, 0, 0, 0, 1318, 1319, 3, 119, 51, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 6, 132, 21, 0, 1321, 282, 1, 0, 0, 0, 1322, 1323, 3, 123, 53, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 6, 133, 25, 0, 1325, 284, 1, 0, 0, 0, 1326, 1327, 3, 149, 66, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 6, 134, 26, 0, 1329, 286, 1, 0, 0, 0, 1330, 1331, 3, 191, 87, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 6, 135, 27, 0, 1333, 288, 1, 0, 0, 0, 1334, 1335, 3, 187, 85, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 6, 136, 28, 0, 1337, 290, 1, 0, 0, 0, 1338, 1339, 3, 193, 88, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 6, 137, 29, 0, 1341, 292, 1, 0, 0, 0, 1342, 1343, 7, 14, 0, 0, 1343, 1344, 7, 10, 0, 0, 1344, 294, 1, 0, 0, 0, 1345, 1346, 3, 269, 126, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 6, 139, 30, 0, 1348, 296, 1, 0, 0, 0, 1349, 1350, 3, 73, 28, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1352, 6, 140, 12, 0, 1352, 298, 1, 0, 0, 0, 1353, 1354, 3, 75, 29, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 6, 141, 12, 0, 1356, 300, 1, 0, 0, 0, 1357, 1358, 3, 77, 30, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 6, 142, 12, 0, 1360, 302, 1, 0, 0, 0, 1361, 1362, 3, 79, 31, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 6, 143, 17, 0, 1364, 1365, 6, 143, 13, 0, 1365, 304, 1, 0, 0, 0, 1366, 1367, 3, 195, 89, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 6, 144, 15, 0, 1369, 1370, 6, 144, 31, 0, 1370, 306, 1, 0, 0, 0, 1371, 1372, 3, 145, 64, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1374, 6, 145, 32, 0, 1374, 1375, 6, 145, 33, 0, 1375, 308, 1, 0, 0, 0, 1376, 1377, 3, 157, 70, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 6, 146, 34, 0, 1379, 1380, 6, 146, 33, 0, 1380, 310, 1, 0, 0, 0, 1381, 1382, 8, 34, 0, 0, 1382, 312, 1, 0, 0, 0, 1383, 1385, 3, 311, 147, 0, 1384, 1383, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1384, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 3, 117, 50, 0, 1389, 1391, 1, 0, 0, 0, 1390, 1384, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1393, 1, 0, 0, 0, 1392, 1394, 3, 311, 147, 0, 1393, 1392, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 314, 1, 0, 0, 0, 1397, 1398, 3, 313, 148, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 6, 149, 35, 0, 1400, 316, 1, 0, 0, 0, 1401, 1402, 3, 73, 28, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 6, 150, 12, 0, 1404, 318, 1, 0, 0, 0, 1405, 1406, 3, 75, 29, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1408, 6, 151, 12, 0, 1408, 320, 1, 0, 0, 0, 1409, 1410, 3, 77, 30, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 6, 152, 12, 0, 1412, 322, 1, 0, 0, 0, 1413, 1414, 3, 79, 31, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 6, 153, 17, 0, 1416, 1417, 6, 153, 13, 0, 1417, 1418, 6, 153, 13, 0, 1418, 324, 1, 0, 0, 0, 1419, 1420, 3, 111, 47, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 6, 154, 22, 0, 1422, 326, 1, 0, 0, 0, 1423, 1424, 3, 119, 51, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 6, 155, 21, 0, 1426, 328, 1, 0, 0, 0, 1427, 1428, 3, 123, 53, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 6, 156, 25, 0, 1430, 330, 1, 0, 0, 0, 1431, 1432, 3, 157, 70, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 6, 157, 34, 0, 1434, 332, 1, 0, 0, 0, 1435, 1436, 3, 269, 126, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 6, 158, 30, 0, 1438, 334, 1, 0, 0, 0, 1439, 1440, 3, 203, 93, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 6, 159, 36, 0, 1442, 336, 1, 0, 0, 0, 1443, 1444, 3, 149, 66, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 6, 160, 26, 0, 1446, 338, 1, 0, 0, 0, 1447, 1448, 3, 191, 87, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 6, 161, 27, 0, 1450, 340, 1, 0, 0, 0, 1451, 1452, 3, 187, 85, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 6, 162, 28, 0, 1454, 342, 1, 0, 0, 0, 1455, 1456, 3, 193, 88, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 6, 163, 29, 0, 1458, 344, 1, 0, 0, 0, 1459, 1460, 3, 73, 28, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 6, 164, 12, 0, 1462, 346, 1, 0, 0, 0, 1463, 1464, 3, 75, 29, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 6, 165, 12, 0, 1466, 348, 1, 0, 0, 0, 1467, 1468, 3, 77, 30, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 166, 12, 0, 1470, 350, 1, 0, 0, 0, 1471, 1472, 3, 79, 31, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 6, 167, 17, 0, 1474, 1475, 6, 167, 13, 0, 1475, 352, 1, 0, 0, 0, 1476, 1477, 3, 123, 53, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 6, 168, 25, 0, 1479, 354, 1, 0, 0, 0, 1480, 1481, 3, 149, 66, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 6, 169, 26, 0, 1483, 356, 1, 0, 0, 0, 1484, 1485, 3, 191, 87, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 6, 170, 27, 0, 1487, 358, 1, 0, 0, 0, 1488, 1489, 3, 187, 85, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 6, 171, 28, 0, 1491, 360, 1, 0, 0, 0, 1492, 1493, 3, 193, 88, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 6, 172, 29, 0, 1495, 362, 1, 0, 0, 0, 1496, 1497, 3, 203, 93, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 6, 173, 36, 0, 1499, 364, 1, 0, 0, 0, 1500, 1501, 3, 199, 91, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 6, 174, 37, 0, 1503, 366, 1, 0, 0, 0, 1504, 1505, 3, 73, 28, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 175, 12, 0, 1507, 368, 1, 0, 0, 0, 1508, 1509, 3, 75, 29, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 6, 176, 12, 0, 1511, 370, 1, 0, 0, 0, 1512, 1513, 3, 77, 30, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 6, 177, 12, 0, 1515, 372, 1, 0, 0, 0, 1516, 1517, 3, 79, 31, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 6, 178, 17, 0, 1519, 1520, 6, 178, 13, 0, 1520, 374, 1, 0, 0, 0, 1521, 1522, 7, 7, 0, 0, 1522, 1523, 7, 8, 0, 0, 1523, 1524, 7, 16, 0, 0, 1524, 1525, 7, 1, 0, 0, 1525, 376, 1, 0, 0, 0, 1526, 1527, 3, 73, 28, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 6, 180, 12, 0, 1529, 378, 1, 0, 0, 0, 1530, 1531, 3, 75, 29, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 6, 181, 12, 0, 1533, 380, 1, 0, 0, 0, 1534, 1535, 3, 77, 30, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 6, 182, 12, 0, 1537, 382, 1, 0, 0, 0, 1538, 1539, 3, 197, 90, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 6, 183, 18, 0, 1541, 1542, 6, 183, 13, 0, 1542, 384, 1, 0, 0, 0, 1543, 1544, 3, 117, 50, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 6, 184, 19, 0, 1546, 386, 1, 0, 0, 0, 1547, 1553, 3, 91, 37, 0, 1548, 1553, 3, 81, 32, 0, 1549, 1553, 3, 123, 53, 0, 1550, 1553, 3, 83, 33, 0, 1551, 1553, 3, 97, 40, 0, 1552, 1547, 1, 0, 0, 0, 1552, 1548, 1, 0, 0, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1552, 1551, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1552, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 388, 1, 0, 0, 0, 1556, 1557, 3, 73, 28, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 6, 186, 12, 0, 1559, 390, 1, 0, 0, 0, 1560, 1561, 3, 75, 29, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 6, 187, 12, 0, 1563, 392, 1, 0, 0, 0, 1564, 1565, 3, 77, 30, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 6, 188, 12, 0, 1567, 394, 1, 0, 0, 0, 1568, 1569, 3, 79, 31, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 6, 189, 17, 0, 1571, 1572, 6, 189, 13, 0, 1572, 396, 1, 0, 0, 0, 1573, 1574, 3, 117, 50, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 6, 190, 19, 0, 1576, 398, 1, 0, 0, 0, 1577, 1578, 3, 119, 51, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 6, 191, 21, 0, 1580, 400, 1, 0, 0, 0, 1581, 1582, 3, 123, 53, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 6, 192, 25, 0, 1584, 402, 1, 0, 0, 0, 1585, 1586, 3, 145, 64, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 6, 193, 32, 0, 1588, 1589, 6, 193, 38, 0, 1589, 404, 1, 0, 0, 0, 1590, 1591, 3, 239, 111, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 194, 23, 0, 1593, 406, 1, 0, 0, 0, 1594, 1595, 3, 101, 42, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 195, 24, 0, 1597, 408, 1, 0, 0, 0, 1598, 1599, 3, 73, 28, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 196, 12, 0, 1601, 410, 1, 0, 0, 0, 1602, 1603, 3, 75, 29, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 197, 12, 0, 1605, 412, 1, 0, 0, 0, 1606, 1607, 3, 77, 30, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 198, 12, 0, 1609, 414, 1, 0, 0, 0, 1610, 1611, 3, 79, 31, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 6, 199, 17, 0, 1613, 1614, 6, 199, 13, 0, 1614, 1615, 6, 199, 13, 0, 1615, 416, 1, 0, 0, 0, 1616, 1617, 3, 119, 51, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 6, 200, 21, 0, 1619, 418, 1, 0, 0, 0, 1620, 1621, 3, 123, 53, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 6, 201, 25, 0, 1623, 420, 1, 0, 0, 0, 1624, 1625, 3, 269, 126, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 6, 202, 30, 0, 1627, 422, 1, 0, 0, 0, 1628, 1629, 3, 73, 28, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 6, 203, 12, 0, 1631, 424, 1, 0, 0, 0, 1632, 1633, 3, 75, 29, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1635, 6, 204, 12, 0, 1635, 426, 1, 0, 0, 0, 1636, 1637, 3, 77, 30, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 6, 205, 12, 0, 1639, 428, 1, 0, 0, 0, 1640, 1641, 3, 79, 31, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 6, 206, 17, 0, 1643, 1644, 6, 206, 13, 0, 1644, 430, 1, 0, 0, 0, 1645, 1646, 7, 35, 0, 0, 1646, 1647, 7, 1, 0, 0, 1647, 1648, 7, 7, 0, 0, 1648, 1649, 7, 8, 0, 0, 1649, 432, 1, 0, 0, 0, 1650, 1651, 3, 293, 138, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 6, 208, 39, 0, 1653, 434, 1, 0, 0, 0, 1654, 1655, 3, 145, 64, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 6, 209, 32, 0, 1657, 1658, 6, 209, 13, 0, 1658, 1659, 6, 209, 0, 0, 1659, 436, 1, 0, 0, 0, 1660, 1661, 7, 20, 0, 0, 1661, 1662, 7, 10, 0, 0, 1662, 1663, 7, 7, 0, 0, 1663, 1664, 7, 8, 0, 0, 1664, 1665, 7, 17, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1667, 6, 210, 13, 0, 1667, 1668, 6, 210, 0, 0, 1668, 438, 1, 0, 0, 0, 1669, 1670, 3, 239, 111, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 6, 211, 23, 0, 1672, 440, 1, 0, 0, 0, 1673, 1674, 3, 101, 42, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 6, 212, 24, 0, 1676, 442, 1, 0, 0, 0, 1677, 1678, 3, 117, 50, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 6, 213, 19, 0, 1680, 444, 1, 0, 0, 0, 1681, 1682, 3, 199, 91, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 6, 214, 37, 0, 1684, 446, 1, 0, 0, 0, 1685, 1686, 3, 203, 93, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 6, 215, 36, 0, 1688, 448, 1, 0, 0, 0, 1689, 1690, 3, 73, 28, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 6, 216, 12, 0, 1692, 450, 1, 0, 0, 0, 1693, 1694, 3, 75, 29, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 6, 217, 12, 0, 1696, 452, 1, 0, 0, 0, 1697, 1698, 3, 77, 30, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 6, 218, 12, 0, 1700, 454, 1, 0, 0, 0, 1701, 1702, 3, 79, 31, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 6, 219, 17, 0, 1704, 1705, 6, 219, 13, 0, 1705, 456, 1, 0, 0, 0, 1706, 1707, 3, 239, 111, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 6, 220, 23, 0, 1709, 1710, 6, 220, 13, 0, 1710, 1711, 6, 220, 40, 0, 1711, 458, 1, 0, 0, 0, 1712, 1713, 3, 101, 42, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1715, 6, 221, 24, 0, 1715, 1716, 6, 221, 13, 0, 1716, 1717, 6, 221, 40, 0, 1717, 460, 1, 0, 0, 0, 1718, 1719, 3, 73, 28, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 6, 222, 12, 0, 1721, 462, 1, 0, 0, 0, 1722, 1723, 3, 75, 29, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 6, 223, 12, 0, 1725, 464, 1, 0, 0, 0, 1726, 1727, 3, 77, 30, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 6, 224, 12, 0, 1729, 466, 1, 0, 0, 0, 1730, 1731, 3, 117, 50, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 6, 225, 19, 0, 1733, 1734, 6, 225, 13, 0, 1734, 1735, 6, 225, 11, 0, 1735, 468, 1, 0, 0, 0, 1736, 1737, 3, 115, 49, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 6, 226, 20, 0, 1739, 1740, 6, 226, 13, 0, 1740, 1741, 6, 226, 11, 0, 1741, 470, 1, 0, 0, 0, 1742, 1743, 3, 119, 51, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1745, 6, 227, 21, 0, 1745, 1746, 6, 227, 13, 0, 1746, 1747, 6, 227, 11, 0, 1747, 472, 1, 0, 0, 0, 1748, 1749, 3, 73, 28, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 6, 228, 12, 0, 1751, 474, 1, 0, 0, 0, 1752, 1753, 3, 75, 29, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 6, 229, 12, 0, 1755, 476, 1, 0, 0, 0, 1756, 1757, 3, 77, 30, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 6, 230, 12, 0, 1759, 478, 1, 0, 0, 0, 1760, 1761, 3, 203, 93, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 6, 231, 13, 0, 1763, 1764, 6, 231, 0, 0, 1764, 1765, 6, 231, 36, 0, 1765, 480, 1, 0, 0, 0, 1766, 1767, 3, 199, 91, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 6, 232, 13, 0, 1769, 1770, 6, 232, 0, 0, 1770, 1771, 6, 232, 37, 0, 1771, 482, 1, 0, 0, 0, 1772, 1773, 3, 113, 48, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 6, 233, 13, 0, 1775, 1776, 6, 233, 0, 0, 1776, 1777, 6, 233, 41, 0, 1777, 484, 1, 0, 0, 0, 1778, 1779, 3, 79, 31, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 6, 234, 17, 0, 1781, 1782, 6, 234, 13, 0, 1782, 486, 1, 0, 0, 0, 1783, 1784, 3, 79, 31, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 6, 235, 17, 0, 1786, 1787, 6, 235, 13, 0, 1787, 488, 1, 0, 0, 0, 1788, 1789, 3, 145, 64, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 6, 236, 32, 0, 1791, 490, 1, 0, 0, 0, 1792, 1793, 3, 293, 138, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 6, 237, 39, 0, 1795, 492, 1, 0, 0, 0, 1796, 1797, 3, 123, 53, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 6, 238, 25, 0, 1799, 494, 1, 0, 0, 0, 1800, 1801, 3, 119, 51, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 6, 239, 21, 0, 1803, 496, 1, 0, 0, 0, 1804, 1805, 3, 203, 93, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 6, 240, 36, 0, 1807, 498, 1, 0, 0, 0, 1808, 1809, 3, 199, 91, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 6, 241, 37, 0, 1811, 500, 1, 0, 0, 0, 1812, 1813, 3, 73, 28, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1815, 6, 242, 12, 0, 1815, 502, 1, 0, 0, 0, 1816, 1817, 3, 75, 29, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 6, 243, 12, 0, 1819, 504, 1, 0, 0, 0, 1820, 1821, 3, 77, 30, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 6, 244, 12, 0, 1823, 506, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 758, 768, 772, 775, 784, 786, 797, 816, 821, 830, 837, 842, 844, 855, 863, 866, 868, 873, 878, 884, 891, 896, 902, 905, 913, 917, 1060, 1065, 1072, 1074, 1079, 1084, 1091, 1093, 1109, 1114, 1119, 1121, 1127, 1208, 1213, 1268, 1272, 1277, 1282, 1287, 1289, 1293, 1295, 1386, 1390, 1395, 1552, 1554, 42, 5, 1, 0, 5, 4, 0, 5, 6, 0, 5, 2, 0, 5, 3, 0, 5, 8, 0, 5, 5, 0, 5, 9, 0, 5, 13, 0, 5, 16, 0, 5, 11, 0, 5, 14, 0, 0, 1, 0, 4, 0, 0, 7, 18, 0, 7, 79, 0, 5, 0, 0, 7, 32, 0, 7, 80, 0, 7, 41, 0, 7, 40, 0, 7, 42, 0, 7, 38, 0, 7, 90, 0, 7, 33, 0, 7, 44, 0, 7, 57, 0, 7, 77, 0, 7, 76, 0, 7, 78, 0, 7, 94, 0, 5, 10, 0, 7, 55, 0, 5, 7, 0, 7, 61, 0, 7, 102, 0, 7, 82, 0, 7, 81, 0, 5, 12, 0, 7, 98, 0, 5, 15, 0, 7, 39, 0]
\ No newline at end of file
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
index a0a85ca175068..2bac822262338 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
@@ -26,9 +26,9 @@ public class EsqlBaseLexer extends LexerConfig {
new PredictionContextCache();
public static final int
COMPLETION=1, DISSECT=2, DROP=3, ENRICH=4, EVAL=5, EXPLAIN=6, FROM=7,
- GROK=8, KEEP=9, LIMIT=10, MV_EXPAND=11, RENAME=12, ROW=13, SHOW=14, SORT=15,
- STATS=16, WHERE=17, JOIN_LOOKUP=18, CHANGE_POINT=19, DEV_INLINESTATS=20,
- DEV_LOOKUP=21, DEV_METRICS=22, DEV_RERANK=23, DEV_SAMPLE=24, DEV_JOIN_FULL=25,
+ GROK=8, KEEP=9, LIMIT=10, MV_EXPAND=11, RENAME=12, ROW=13, SAMPLE=14,
+ SHOW=15, SORT=16, STATS=17, WHERE=18, JOIN_LOOKUP=19, CHANGE_POINT=20,
+ DEV_INLINESTATS=21, DEV_LOOKUP=22, DEV_METRICS=23, DEV_RERANK=24, DEV_JOIN_FULL=25,
DEV_JOIN_LEFT=26, DEV_JOIN_RIGHT=27, UNKNOWN_CMD=28, LINE_COMMENT=29,
MULTILINE_COMMENT=30, WS=31, PIPE=32, QUOTED_STRING=33, INTEGER_LITERAL=34,
DECIMAL_LITERAL=35, AND=36, ASC=37, ASSIGN=38, BY=39, CAST_OP=40, COLON=41,
@@ -74,9 +74,9 @@ public class EsqlBaseLexer extends LexerConfig {
private static String[] makeRuleNames() {
return new String[] {
"COMPLETION", "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM",
- "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT",
- "STATS", "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP",
- "DEV_METRICS", "DEV_RERANK", "DEV_SAMPLE", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
+ "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SAMPLE", "SHOW",
+ "SORT", "STATS", "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS",
+ "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
"DEV_JOIN_RIGHT", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT",
"WS", "PIPE", "DIGIT", "LETTER", "ESCAPE_SEQUENCE", "UNESCAPED_CHARS",
"EXPONENT", "ASPERAND", "BACKQUOTE", "BACKQUOTE_BLOCK", "UNDERSCORE",
@@ -138,27 +138,27 @@ private static String[] makeLiteralNames() {
return new String[] {
null, "'completion'", "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'",
"'from'", "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'",
- "'show'", "'sort'", "'stats'", "'where'", "'lookup'", "'change_point'",
+ "'sample'", "'show'", "'sort'", "'stats'", "'where'", "'lookup'", "'change_point'",
+ null, null, null, null, null, null, null, null, null, null, null, "'|'",
+ null, null, null, "'and'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
+ "'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'",
+ "'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'",
+ "')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'",
+ "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", "'??'", null,
+ null, null, "']'", null, null, null, null, null, null, null, null, "'metadata'",
+ null, null, null, null, null, null, null, null, "'as'", null, null, null,
+ null, null, null, null, null, null, null, null, null, null, "'info'",
null, null, null, null, null, null, null, null, null, null, null, null,
- "'|'", null, null, null, "'and'", "'asc'", "'='", "'by'", "'::'", "':'",
- "','", "'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'",
- "'like'", "'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'",
- "'rlike'", "')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'",
- "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'",
- "'??'", null, null, null, "']'", null, null, null, null, null, null,
- null, null, "'metadata'", null, null, null, null, null, null, null, null,
- "'as'", null, null, null, null, null, null, null, null, null, null, null,
- null, null, "'info'", null, null, null, null, null, null, null, null,
- null, null, null, null, null, "'join'", "'USING'"
+ null, "'join'", "'USING'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "COMPLETION", "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM",
- "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT",
- "STATS", "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP",
- "DEV_METRICS", "DEV_RERANK", "DEV_SAMPLE", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
+ "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SAMPLE", "SHOW",
+ "SORT", "STATS", "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS",
+ "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
"DEV_JOIN_RIGHT", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT",
"WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL",
"AND", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC", "DOT",
@@ -247,16 +247,14 @@ public EsqlBaseLexer(CharStream input) {
@Override
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
switch (ruleIndex) {
- case 19:
- return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex);
case 20:
- return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex);
+ return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex);
case 21:
- return DEV_METRICS_sempred((RuleContext)_localctx, predIndex);
+ return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex);
case 22:
- return DEV_RERANK_sempred((RuleContext)_localctx, predIndex);
+ return DEV_METRICS_sempred((RuleContext)_localctx, predIndex);
case 23:
- return DEV_SAMPLE_sempred((RuleContext)_localctx, predIndex);
+ return DEV_RERANK_sempred((RuleContext)_localctx, predIndex);
case 24:
return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex);
case 25:
@@ -294,37 +292,30 @@ private boolean DEV_RERANK_sempred(RuleContext _localctx, int predIndex) {
}
return true;
}
- private boolean DEV_SAMPLE_sempred(RuleContext _localctx, int predIndex) {
- switch (predIndex) {
- case 4:
- return this.isDevVersion();
- }
- return true;
- }
private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
- case 5:
+ case 4:
return this.isDevVersion();
}
return true;
}
private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
- case 6:
+ case 5:
return this.isDevVersion();
}
return true;
}
private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
- case 7:
+ case 6:
return this.isDevVersion();
}
return true;
}
public static final String _serializedATN =
- "\u0004\u0000\u008b\u0721\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
+ "\u0004\u0000\u008b\u0720\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
"\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
"\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
"\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
@@ -414,1102 +405,1102 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
"\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b"+
"\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+
"\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001"+
- "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+
- "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001"+
- "\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+
- "\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001"+
- "\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+
- "\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+
- "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
- "\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
- "\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+
- "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+
- "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+
- "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+
- "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+
- "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001"+
- "\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001"+
- "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+
- "\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
- "\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
- "\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+
- "\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+
- "\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001"+
- "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+
- "\u001a\u0001\u001a\u0001\u001b\u0004\u001b\u02f6\b\u001b\u000b\u001b\f"+
- "\u001b\u02f7\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c"+
- "\u0001\u001c\u0005\u001c\u0300\b\u001c\n\u001c\f\u001c\u0303\t\u001c\u0001"+
- "\u001c\u0003\u001c\u0306\b\u001c\u0001\u001c\u0003\u001c\u0309\b\u001c"+
- "\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d"+
- "\u0001\u001d\u0005\u001d\u0312\b\u001d\n\u001d\f\u001d\u0315\t\u001d\u0001"+
- "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0004"+
- "\u001e\u031d\b\u001e\u000b\u001e\f\u001e\u031e\u0001\u001e\u0001\u001e"+
- "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!"+
- "\u0001!\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001$\u0001$\u0003$\u0332"+
- "\b$\u0001$\u0004$\u0335\b$\u000b$\f$\u0336\u0001%\u0001%\u0001&\u0001"+
- "&\u0001\'\u0001\'\u0001\'\u0003\'\u0340\b\'\u0001(\u0001(\u0001)\u0001"+
- ")\u0001)\u0003)\u0347\b)\u0001*\u0001*\u0001*\u0005*\u034c\b*\n*\f*\u034f"+
- "\t*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0005*\u0357\b*\n*\f*\u035a"+
- "\t*\u0001*\u0001*\u0001*\u0001*\u0001*\u0003*\u0361\b*\u0001*\u0003*\u0364"+
- "\b*\u0003*\u0366\b*\u0001+\u0004+\u0369\b+\u000b+\f+\u036a\u0001,\u0004"+
- ",\u036e\b,\u000b,\f,\u036f\u0001,\u0001,\u0005,\u0374\b,\n,\f,\u0377\t"+
- ",\u0001,\u0001,\u0004,\u037b\b,\u000b,\f,\u037c\u0001,\u0004,\u0380\b"+
- ",\u000b,\f,\u0381\u0001,\u0001,\u0005,\u0386\b,\n,\f,\u0389\t,\u0003,"+
- "\u038b\b,\u0001,\u0001,\u0001,\u0001,\u0004,\u0391\b,\u000b,\f,\u0392"+
- "\u0001,\u0001,\u0003,\u0397\b,\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+
- ".\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u00010\u00011\u00011\u0001"+
- "1\u00012\u00012\u00013\u00013\u00014\u00014\u00014\u00014\u00014\u0001"+
- "5\u00015\u00016\u00016\u00016\u00016\u00016\u00016\u00017\u00017\u0001"+
- "7\u00017\u00017\u00017\u00018\u00018\u00018\u00019\u00019\u00019\u0001"+
- ":\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001;\u0001"+
- "<\u0001<\u0001=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001"+
- ">\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001"+
- "A\u0001A\u0001A\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+
- "C\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001"+
- "F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001"+
- "I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001L\u0001L\u0001M\u0001"+
- "M\u0001M\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001"+
- "R\u0001R\u0001S\u0001S\u0001T\u0001T\u0001U\u0001U\u0001U\u0001V\u0001"+
- "V\u0001V\u0001V\u0001W\u0001W\u0001W\u0003W\u0426\bW\u0001W\u0005W\u0429"+
- "\bW\nW\fW\u042c\tW\u0001W\u0001W\u0004W\u0430\bW\u000bW\fW\u0431\u0003"+
- "W\u0434\bW\u0001X\u0001X\u0001X\u0003X\u0439\bX\u0001X\u0005X\u043c\b"+
- "X\nX\fX\u043f\tX\u0001X\u0001X\u0004X\u0443\bX\u000bX\fX\u0444\u0003X"+
- "\u0447\bX\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001"+
- "Z\u0001Z\u0001[\u0001[\u0005[\u0455\b[\n[\f[\u0458\t[\u0001[\u0001[\u0003"+
- "[\u045c\b[\u0001[\u0004[\u045f\b[\u000b[\f[\u0460\u0003[\u0463\b[\u0001"+
- "\\\u0001\\\u0004\\\u0467\b\\\u000b\\\f\\\u0468\u0001\\\u0001\\\u0001]"+
- "\u0001]\u0001^\u0001^\u0001^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001"+
- "`\u0001`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001"+
- "b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001"+
- "d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001"+
- "f\u0001g\u0001g\u0001g\u0001g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001"+
- "i\u0001i\u0001i\u0001j\u0001j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001"+
- "k\u0001l\u0001l\u0001l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001"+
- "m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0003n\u04ba\bn\u0001o\u0004"+
- "o\u04bd\bo\u000bo\fo\u04be\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001"+
- "q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001"+
- "t\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001u\u0001v\u0001"+
- "v\u0001v\u0001v\u0001w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001"+
- "x\u0001y\u0001y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001{\u0001"+
- "{\u0001{\u0001{\u0001|\u0001|\u0001|\u0001|\u0003|\u04f6\b|\u0001}\u0001"+
- "}\u0003}\u04fa\b}\u0001}\u0005}\u04fd\b}\n}\f}\u0500\t}\u0001}\u0001}"+
- "\u0003}\u0504\b}\u0001}\u0004}\u0507\b}\u000b}\f}\u0508\u0003}\u050b\b"+
- "}\u0001~\u0001~\u0004~\u050f\b~\u000b~\f~\u0510\u0001\u007f\u0001\u007f"+
- "\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0080"+
- "\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0082\u0001\u0082"+
- "\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0083"+
- "\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0085"+
- "\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0086"+
- "\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088"+
- "\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089"+
- "\u0001\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b"+
- "\u0001\u008b\u0001\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c"+
- "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e"+
- "\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f"+
- "\u0001\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090"+
- "\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0092"+
- "\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0093\u0001\u0093"+
- "\u0001\u0094\u0004\u0094\u056a\b\u0094\u000b\u0094\f\u0094\u056b\u0001"+
- "\u0094\u0001\u0094\u0003\u0094\u0570\b\u0094\u0001\u0094\u0004\u0094\u0573"+
- "\b\u0094\u000b\u0094\f\u0094\u0574\u0001\u0095\u0001\u0095\u0001\u0095"+
- "\u0001\u0095\u0001\u0096\u0001\u0096\u0001\u0096\u0001\u0096\u0001\u0097"+
- "\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0098\u0001\u0098\u0001\u0098"+
- "\u0001\u0098\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099"+
- "\u0001\u0099\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b"+
- "\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c"+
- "\u0001\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e"+
- "\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f"+
- "\u0001\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1"+
- "\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2"+
- "\u0001\u00a2\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a4"+
- "\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5"+
- "\u0001\u00a5\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a7"+
- "\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a8\u0001\u00a8"+
- "\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9"+
- "\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab"+
- "\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac"+
- "\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae"+
- "\u0001\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af"+
- "\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1"+
- "\u0001\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2"+
- "\u0001\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3"+
- "\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5"+
- "\u0001\u00b5\u0001\u00b5\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6"+
- "\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8"+
- "\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9"+
- "\u0001\u00b9\u0001\u00b9\u0004\u00b9\u0612\b\u00b9\u000b\u00b9\f\u00b9"+
- "\u0613\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00bb\u0001"+
- "\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001"+
- "\u00bc\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001"+
- "\u00be\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00bf\u0001\u00bf\u0001"+
- "\u00bf\u0001\u00bf\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001"+
- "\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c2\u0001"+
- "\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001"+
- "\u00c3\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c5\u0001"+
- "\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001"+
- "\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001"+
- "\u00c7\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c9\u0001"+
- "\u00c9\u0001\u00c9\u0001\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001"+
- "\u00ca\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001"+
- "\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001"+
- "\u00cd\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001"+
- "\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00d0\u0001"+
- "\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001"+
- "\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+
- "\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+
- "\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001"+
- "\u00d4\u0001\u00d4\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001"+
- "\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d7\u0001\u00d7\u0001"+
- "\u00d7\u0001\u00d7\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001"+
- "\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da\u0001"+
- "\u00da\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001"+
- "\u00db\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001"+
- "\u00dc\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001"+
- "\u00dd\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00df\u0001"+
- "\u00df\u0001\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001"+
- "\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001"+
- "\u00e1\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001"+
- "\u00e2\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001"+
- "\u00e3\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e5\u0001"+
- "\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001"+
- "\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001"+
- "\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001"+
- "\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001"+
- "\u00e9\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001"+
- "\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00ec\u0001"+
- "\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001"+
- "\u00ed\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ef\u0001"+
- "\u00ef\u0001\u00ef\u0001\u00ef\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001"+
- "\u00f0\u0001\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f2\u0001"+
- "\u00f2\u0001\u00f2\u0001\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001"+
- "\u00f3\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0002\u0313\u0358"+
- "\u0000\u00f5\u0011\u0001\u0013\u0002\u0015\u0003\u0017\u0004\u0019\u0005"+
- "\u001b\u0006\u001d\u0007\u001f\b!\t#\n%\u000b\'\f)\r+\u000e-\u000f/\u0010"+
- "1\u00113\u00125\u00137\u00149\u0015;\u0016=\u0017?\u0018A\u0019C\u001a"+
- "E\u001bG\u001cI\u001dK\u001eM\u001fO Q\u0000S\u0000U\u0000W\u0000Y\u0000"+
- "[\u0000]\u0000_\u0000a\u0000c\u0000e!g\"i#k$m%o&q\'s(u)w*y+{,}-\u007f"+
- ".\u0081/\u00830\u00851\u00872\u00893\u008b4\u008d5\u008f6\u00917\u0093"+
- "8\u00959\u0097:\u0099;\u009b<\u009d=\u009f>\u00a1?\u00a3@\u00a5A\u00a7"+
- "B\u00a9C\u00abD\u00adE\u00afF\u00b1G\u00b3H\u00b5I\u00b7J\u00b9K\u00bb"+
- "L\u00bd\u0000\u00bfM\u00c1N\u00c3O\u00c5P\u00c7Q\u00c9\u0000\u00cbR\u00cd"+
- "S\u00cfT\u00d1U\u00d3\u0000\u00d5\u0000\u00d7V\u00d9W\u00dbX\u00dd\u0000"+
- "\u00df\u0000\u00e1\u0000\u00e3\u0000\u00e5\u0000\u00e7\u0000\u00e9\u0000"+
- "\u00ebY\u00ed\u0000\u00efZ\u00f1\u0000\u00f3\u0000\u00f5[\u00f7\\\u00f9"+
- "]\u00fb\u0000\u00fd\u0000\u00ff\u0000\u0101\u0000\u0103\u0000\u0105\u0000"+
- "\u0107\u0000\u0109\u0000\u010b\u0000\u010d^\u010f_\u0111`\u0113a\u0115"+
- "\u0000\u0117\u0000\u0119\u0000\u011b\u0000\u011d\u0000\u011f\u0000\u0121"+
- "\u0000\u0123\u0000\u0125b\u0127\u0000\u0129c\u012bd\u012de\u012f\u0000"+
- "\u0131\u0000\u0133\u0000\u0135\u0000\u0137\u0000\u0139f\u013b\u0000\u013d"+
- "g\u013fh\u0141i\u0143\u0000\u0145\u0000\u0147\u0000\u0149\u0000\u014b"+
- "\u0000\u014d\u0000\u014f\u0000\u0151\u0000\u0153\u0000\u0155\u0000\u0157"+
- "\u0000\u0159j\u015bk\u015dl\u015f\u0000\u0161\u0000\u0163\u0000\u0165"+
- "\u0000\u0167\u0000\u0169\u0000\u016b\u0000\u016d\u0000\u016fm\u0171n\u0173"+
- "o\u0175\u0000\u0177p\u0179q\u017br\u017ds\u017f\u0000\u0181\u0000\u0183"+
- "t\u0185u\u0187v\u0189w\u018b\u0000\u018d\u0000\u018f\u0000\u0191\u0000"+
- "\u0193\u0000\u0195\u0000\u0197\u0000\u0199x\u019by\u019dz\u019f\u0000"+
- "\u01a1\u0000\u01a3\u0000\u01a5\u0000\u01a7{\u01a9|\u01ab}\u01ad\u0000"+
- "\u01af~\u01b1\u0000\u01b3\u0000\u01b5\u007f\u01b7\u0000\u01b9\u0000\u01bb"+
- "\u0000\u01bd\u0000\u01bf\u0000\u01c1\u0080\u01c3\u0081\u01c5\u0082\u01c7"+
- "\u0000\u01c9\u0000\u01cb\u0000\u01cd\u0083\u01cf\u0084\u01d1\u0085\u01d3"+
- "\u0000\u01d5\u0000\u01d7\u0000\u01d9\u0086\u01db\u0087\u01dd\u0088\u01df"+
- "\u0000\u01e1\u0000\u01e3\u0000\u01e5\u0000\u01e7\u0000\u01e9\u0000\u01eb"+
- "\u0000\u01ed\u0000\u01ef\u0000\u01f1\u0000\u01f3\u0000\u01f5\u0089\u01f7"+
- "\u008a\u01f9\u008b\u0011\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+
- "\b\t\n\u000b\f\r\u000e\u000f\u0010$\u0002\u0000CCcc\u0002\u0000OOoo\u0002"+
- "\u0000MMmm\u0002\u0000PPpp\u0002\u0000LLll\u0002\u0000EEee\u0002\u0000"+
- "TTtt\u0002\u0000IIii\u0002\u0000NNnn\u0002\u0000DDdd\u0002\u0000SSss\u0002"+
- "\u0000RRrr\u0002\u0000HHhh\u0002\u0000VVvv\u0002\u0000AAaa\u0002\u0000"+
- "XXxx\u0002\u0000FFff\u0002\u0000GGgg\u0002\u0000KKkk\u0002\u0000WWww\u0002"+
- "\u0000UUuu\u0006\u0000\t\n\r\r //[[]]\u0002\u0000\n\n\r\r\u0003\u0000"+
- "\t\n\r\r \u0001\u000009\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004"+
- "\u0000\n\n\r\r\"\"\\\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002"+
- "\u0000YYyy\u000b\u0000\t\n\r\r \"\",,//::==[[]]||\u0002\u0000**//\u000b"+
- "\u0000\t\n\r\r \"#,,//::<<>?\\\\||\u0002\u0000JJjj\u073f\u0000\u0011"+
- "\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015"+
- "\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019"+
- "\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d"+
- "\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001"+
- "\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000"+
- "\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000"+
- "\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/"+
- "\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000"+
- "\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000"+
- "\u00009\u0001\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000="+
- "\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000"+
- "\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000"+
- "\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0000K"+
- "\u0001\u0000\u0000\u0000\u0000M\u0001\u0000\u0000\u0000\u0001O\u0001\u0000"+
- "\u0000\u0000\u0001e\u0001\u0000\u0000\u0000\u0001g\u0001\u0000\u0000\u0000"+
- "\u0001i\u0001\u0000\u0000\u0000\u0001k\u0001\u0000\u0000\u0000\u0001m"+
- "\u0001\u0000\u0000\u0000\u0001o\u0001\u0000\u0000\u0000\u0001q\u0001\u0000"+
- "\u0000\u0000\u0001s\u0001\u0000\u0000\u0000\u0001u\u0001\u0000\u0000\u0000"+
- "\u0001w\u0001\u0000\u0000\u0000\u0001y\u0001\u0000\u0000\u0000\u0001{"+
- "\u0001\u0000\u0000\u0000\u0001}\u0001\u0000\u0000\u0000\u0001\u007f\u0001"+
- "\u0000\u0000\u0000\u0001\u0081\u0001\u0000\u0000\u0000\u0001\u0083\u0001"+
- "\u0000\u0000\u0000\u0001\u0085\u0001\u0000\u0000\u0000\u0001\u0087\u0001"+
- "\u0000\u0000\u0000\u0001\u0089\u0001\u0000\u0000\u0000\u0001\u008b\u0001"+
- "\u0000\u0000\u0000\u0001\u008d\u0001\u0000\u0000\u0000\u0001\u008f\u0001"+
- "\u0000\u0000\u0000\u0001\u0091\u0001\u0000\u0000\u0000\u0001\u0093\u0001"+
- "\u0000\u0000\u0000\u0001\u0095\u0001\u0000\u0000\u0000\u0001\u0097\u0001"+
- "\u0000\u0000\u0000\u0001\u0099\u0001\u0000\u0000\u0000\u0001\u009b\u0001"+
- "\u0000\u0000\u0000\u0001\u009d\u0001\u0000\u0000\u0000\u0001\u009f\u0001"+
- "\u0000\u0000\u0000\u0001\u00a1\u0001\u0000\u0000\u0000\u0001\u00a3\u0001"+
- "\u0000\u0000\u0000\u0001\u00a5\u0001\u0000\u0000\u0000\u0001\u00a7\u0001"+
- "\u0000\u0000\u0000\u0001\u00a9\u0001\u0000\u0000\u0000\u0001\u00ab\u0001"+
- "\u0000\u0000\u0000\u0001\u00ad\u0001\u0000\u0000\u0000\u0001\u00af\u0001"+
- "\u0000\u0000\u0000\u0001\u00b1\u0001\u0000\u0000\u0000\u0001\u00b3\u0001"+
- "\u0000\u0000\u0000\u0001\u00b5\u0001\u0000\u0000\u0000\u0001\u00b7\u0001"+
- "\u0000\u0000\u0000\u0001\u00b9\u0001\u0000\u0000\u0000\u0001\u00bb\u0001"+
- "\u0000\u0000\u0000\u0001\u00bd\u0001\u0000\u0000\u0000\u0001\u00bf\u0001"+
- "\u0000\u0000\u0000\u0001\u00c1\u0001\u0000\u0000\u0000\u0001\u00c3\u0001"+
- "\u0000\u0000\u0000\u0001\u00c5\u0001\u0000\u0000\u0000\u0001\u00c7\u0001"+
- "\u0000\u0000\u0000\u0001\u00cb\u0001\u0000\u0000\u0000\u0001\u00cd\u0001"+
- "\u0000\u0000\u0000\u0001\u00cf\u0001\u0000\u0000\u0000\u0001\u00d1\u0001"+
- "\u0000\u0000\u0000\u0002\u00d3\u0001\u0000\u0000\u0000\u0002\u00d5\u0001"+
- "\u0000\u0000\u0000\u0002\u00d7\u0001\u0000\u0000\u0000\u0002\u00d9\u0001"+
- "\u0000\u0000\u0000\u0002\u00db\u0001\u0000\u0000\u0000\u0003\u00dd\u0001"+
- "\u0000\u0000\u0000\u0003\u00df\u0001\u0000\u0000\u0000\u0003\u00e1\u0001"+
- "\u0000\u0000\u0000\u0003\u00e3\u0001\u0000\u0000\u0000\u0003\u00e5\u0001"+
- "\u0000\u0000\u0000\u0003\u00e7\u0001\u0000\u0000\u0000\u0003\u00e9\u0001"+
- "\u0000\u0000\u0000\u0003\u00eb\u0001\u0000\u0000\u0000\u0003\u00ef\u0001"+
- "\u0000\u0000\u0000\u0003\u00f1\u0001\u0000\u0000\u0000\u0003\u00f3\u0001"+
- "\u0000\u0000\u0000\u0003\u00f5\u0001\u0000\u0000\u0000\u0003\u00f7\u0001"+
- "\u0000\u0000\u0000\u0003\u00f9\u0001\u0000\u0000\u0000\u0004\u00fb\u0001"+
- "\u0000\u0000\u0000\u0004\u00fd\u0001\u0000\u0000\u0000\u0004\u00ff\u0001"+
- "\u0000\u0000\u0000\u0004\u0101\u0001\u0000\u0000\u0000\u0004\u0103\u0001"+
- "\u0000\u0000\u0000\u0004\u0105\u0001\u0000\u0000\u0000\u0004\u0107\u0001"+
- "\u0000\u0000\u0000\u0004\u010d\u0001\u0000\u0000\u0000\u0004\u010f\u0001"+
- "\u0000\u0000\u0000\u0004\u0111\u0001\u0000\u0000\u0000\u0004\u0113\u0001"+
- "\u0000\u0000\u0000\u0005\u0115\u0001\u0000\u0000\u0000\u0005\u0117\u0001"+
- "\u0000\u0000\u0000\u0005\u0119\u0001\u0000\u0000\u0000\u0005\u011b\u0001"+
- "\u0000\u0000\u0000\u0005\u011d\u0001\u0000\u0000\u0000\u0005\u011f\u0001"+
- "\u0000\u0000\u0000\u0005\u0121\u0001\u0000\u0000\u0000\u0005\u0123\u0001"+
- "\u0000\u0000\u0000\u0005\u0125\u0001\u0000\u0000\u0000\u0005\u0127\u0001"+
- "\u0000\u0000\u0000\u0005\u0129\u0001\u0000\u0000\u0000\u0005\u012b\u0001"+
- "\u0000\u0000\u0000\u0005\u012d\u0001\u0000\u0000\u0000\u0006\u012f\u0001"+
- "\u0000\u0000\u0000\u0006\u0131\u0001\u0000\u0000\u0000\u0006\u0133\u0001"+
- "\u0000\u0000\u0000\u0006\u0135\u0001\u0000\u0000\u0000\u0006\u0139\u0001"+
- "\u0000\u0000\u0000\u0006\u013b\u0001\u0000\u0000\u0000\u0006\u013d\u0001"+
- "\u0000\u0000\u0000\u0006\u013f\u0001\u0000\u0000\u0000\u0006\u0141\u0001"+
- "\u0000\u0000\u0000\u0007\u0143\u0001\u0000\u0000\u0000\u0007\u0145\u0001"+
- "\u0000\u0000\u0000\u0007\u0147\u0001\u0000\u0000\u0000\u0007\u0149\u0001"+
- "\u0000\u0000\u0000\u0007\u014b\u0001\u0000\u0000\u0000\u0007\u014d\u0001"+
- "\u0000\u0000\u0000\u0007\u014f\u0001\u0000\u0000\u0000\u0007\u0151\u0001"+
- "\u0000\u0000\u0000\u0007\u0153\u0001\u0000\u0000\u0000\u0007\u0155\u0001"+
- "\u0000\u0000\u0000\u0007\u0157\u0001\u0000\u0000\u0000\u0007\u0159\u0001"+
- "\u0000\u0000\u0000\u0007\u015b\u0001\u0000\u0000\u0000\u0007\u015d\u0001"+
- "\u0000\u0000\u0000\b\u015f\u0001\u0000\u0000\u0000\b\u0161\u0001\u0000"+
- "\u0000\u0000\b\u0163\u0001\u0000\u0000\u0000\b\u0165\u0001\u0000\u0000"+
- "\u0000\b\u0167\u0001\u0000\u0000\u0000\b\u0169\u0001\u0000\u0000\u0000"+
- "\b\u016b\u0001\u0000\u0000\u0000\b\u016d\u0001\u0000\u0000\u0000\b\u016f"+
- "\u0001\u0000\u0000\u0000\b\u0171\u0001\u0000\u0000\u0000\b\u0173\u0001"+
- "\u0000\u0000\u0000\t\u0175\u0001\u0000\u0000\u0000\t\u0177\u0001\u0000"+
- "\u0000\u0000\t\u0179\u0001\u0000\u0000\u0000\t\u017b\u0001\u0000\u0000"+
- "\u0000\t\u017d\u0001\u0000\u0000\u0000\n\u017f\u0001\u0000\u0000\u0000"+
- "\n\u0181\u0001\u0000\u0000\u0000\n\u0183\u0001\u0000\u0000\u0000\n\u0185"+
- "\u0001\u0000\u0000\u0000\n\u0187\u0001\u0000\u0000\u0000\n\u0189\u0001"+
- "\u0000\u0000\u0000\u000b\u018b\u0001\u0000\u0000\u0000\u000b\u018d\u0001"+
- "\u0000\u0000\u0000\u000b\u018f\u0001\u0000\u0000\u0000\u000b\u0191\u0001"+
- "\u0000\u0000\u0000\u000b\u0193\u0001\u0000\u0000\u0000\u000b\u0195\u0001"+
- "\u0000\u0000\u0000\u000b\u0197\u0001\u0000\u0000\u0000\u000b\u0199\u0001"+
- "\u0000\u0000\u0000\u000b\u019b\u0001\u0000\u0000\u0000\u000b\u019d\u0001"+
- "\u0000\u0000\u0000\f\u019f\u0001\u0000\u0000\u0000\f\u01a1\u0001\u0000"+
- "\u0000\u0000\f\u01a3\u0001\u0000\u0000\u0000\f\u01a5\u0001\u0000\u0000"+
- "\u0000\f\u01a7\u0001\u0000\u0000\u0000\f\u01a9\u0001\u0000\u0000\u0000"+
- "\f\u01ab\u0001\u0000\u0000\u0000\r\u01ad\u0001\u0000\u0000\u0000\r\u01af"+
- "\u0001\u0000\u0000\u0000\r\u01b1\u0001\u0000\u0000\u0000\r\u01b3\u0001"+
- "\u0000\u0000\u0000\r\u01b5\u0001\u0000\u0000\u0000\r\u01b7\u0001\u0000"+
- "\u0000\u0000\r\u01b9\u0001\u0000\u0000\u0000\r\u01bb\u0001\u0000\u0000"+
- "\u0000\r\u01bd\u0001\u0000\u0000\u0000\r\u01bf\u0001\u0000\u0000\u0000"+
- "\r\u01c1\u0001\u0000\u0000\u0000\r\u01c3\u0001\u0000\u0000\u0000\r\u01c5"+
- "\u0001\u0000\u0000\u0000\u000e\u01c7\u0001\u0000\u0000\u0000\u000e\u01c9"+
- "\u0001\u0000\u0000\u0000\u000e\u01cb\u0001\u0000\u0000\u0000\u000e\u01cd"+
- "\u0001\u0000\u0000\u0000\u000e\u01cf\u0001\u0000\u0000\u0000\u000e\u01d1"+
- "\u0001\u0000\u0000\u0000\u000f\u01d3\u0001\u0000\u0000\u0000\u000f\u01d5"+
- "\u0001\u0000\u0000\u0000\u000f\u01d7\u0001\u0000\u0000\u0000\u000f\u01d9"+
- "\u0001\u0000\u0000\u0000\u000f\u01db\u0001\u0000\u0000\u0000\u000f\u01dd"+
- "\u0001\u0000\u0000\u0000\u000f\u01df\u0001\u0000\u0000\u0000\u000f\u01e1"+
- "\u0001\u0000\u0000\u0000\u000f\u01e3\u0001\u0000\u0000\u0000\u000f\u01e5"+
- "\u0001\u0000\u0000\u0000\u0010\u01e7\u0001\u0000\u0000\u0000\u0010\u01e9"+
- "\u0001\u0000\u0000\u0000\u0010\u01eb\u0001\u0000\u0000\u0000\u0010\u01ed"+
- "\u0001\u0000\u0000\u0000\u0010\u01ef\u0001\u0000\u0000\u0000\u0010\u01f1"+
- "\u0001\u0000\u0000\u0000\u0010\u01f3\u0001\u0000\u0000\u0000\u0010\u01f5"+
- "\u0001\u0000\u0000\u0000\u0010\u01f7\u0001\u0000\u0000\u0000\u0010\u01f9"+
- "\u0001\u0000\u0000\u0000\u0011\u01fb\u0001\u0000\u0000\u0000\u0013\u0208"+
- "\u0001\u0000\u0000\u0000\u0015\u0212\u0001\u0000\u0000\u0000\u0017\u0219"+
- "\u0001\u0000\u0000\u0000\u0019\u0222\u0001\u0000\u0000\u0000\u001b\u0229"+
- "\u0001\u0000\u0000\u0000\u001d\u0233\u0001\u0000\u0000\u0000\u001f\u023a"+
- "\u0001\u0000\u0000\u0000!\u0241\u0001\u0000\u0000\u0000#\u0248\u0001\u0000"+
- "\u0000\u0000%\u0250\u0001\u0000\u0000\u0000\'\u025c\u0001\u0000\u0000"+
- "\u0000)\u0265\u0001\u0000\u0000\u0000+\u026b\u0001\u0000\u0000\u0000-"+
- "\u0272\u0001\u0000\u0000\u0000/\u0279\u0001\u0000\u0000\u00001\u0281\u0001"+
- "\u0000\u0000\u00003\u0289\u0001\u0000\u0000\u00005\u0292\u0001\u0000\u0000"+
- "\u00007\u02a1\u0001\u0000\u0000\u00009\u02b0\u0001\u0000\u0000\u0000;"+
- "\u02bc\u0001\u0000\u0000\u0000=\u02c7\u0001\u0000\u0000\u0000?\u02d1\u0001"+
- "\u0000\u0000\u0000A\u02db\u0001\u0000\u0000\u0000C\u02e3\u0001\u0000\u0000"+
- "\u0000E\u02eb\u0001\u0000\u0000\u0000G\u02f5\u0001\u0000\u0000\u0000I"+
- "\u02fb\u0001\u0000\u0000\u0000K\u030c\u0001\u0000\u0000\u0000M\u031c\u0001"+
- "\u0000\u0000\u0000O\u0322\u0001\u0000\u0000\u0000Q\u0326\u0001\u0000\u0000"+
- "\u0000S\u0328\u0001\u0000\u0000\u0000U\u032a\u0001\u0000\u0000\u0000W"+
- "\u032d\u0001\u0000\u0000\u0000Y\u032f\u0001\u0000\u0000\u0000[\u0338\u0001"+
- "\u0000\u0000\u0000]\u033a\u0001\u0000\u0000\u0000_\u033f\u0001\u0000\u0000"+
- "\u0000a\u0341\u0001\u0000\u0000\u0000c\u0346\u0001\u0000\u0000\u0000e"+
- "\u0365\u0001\u0000\u0000\u0000g\u0368\u0001\u0000\u0000\u0000i\u0396\u0001"+
- "\u0000\u0000\u0000k\u0398\u0001\u0000\u0000\u0000m\u039c\u0001\u0000\u0000"+
- "\u0000o\u03a0\u0001\u0000\u0000\u0000q\u03a2\u0001\u0000\u0000\u0000s"+
- "\u03a5\u0001\u0000\u0000\u0000u\u03a8\u0001\u0000\u0000\u0000w\u03aa\u0001"+
- "\u0000\u0000\u0000y\u03ac\u0001\u0000\u0000\u0000{\u03b1\u0001\u0000\u0000"+
- "\u0000}\u03b3\u0001\u0000\u0000\u0000\u007f\u03b9\u0001\u0000\u0000\u0000"+
- "\u0081\u03bf\u0001\u0000\u0000\u0000\u0083\u03c2\u0001\u0000\u0000\u0000"+
- "\u0085\u03c5\u0001\u0000\u0000\u0000\u0087\u03ca\u0001\u0000\u0000\u0000"+
- "\u0089\u03cf\u0001\u0000\u0000\u0000\u008b\u03d1\u0001\u0000\u0000\u0000"+
- "\u008d\u03d5\u0001\u0000\u0000\u0000\u008f\u03da\u0001\u0000\u0000\u0000"+
- "\u0091\u03e0\u0001\u0000\u0000\u0000\u0093\u03e3\u0001\u0000\u0000\u0000"+
- "\u0095\u03e6\u0001\u0000\u0000\u0000\u0097\u03e8\u0001\u0000\u0000\u0000"+
- "\u0099\u03ee\u0001\u0000\u0000\u0000\u009b\u03f0\u0001\u0000\u0000\u0000"+
- "\u009d\u03f5\u0001\u0000\u0000\u0000\u009f\u03fa\u0001\u0000\u0000\u0000"+
- "\u00a1\u03fd\u0001\u0000\u0000\u0000\u00a3\u0400\u0001\u0000\u0000\u0000"+
- "\u00a5\u0403\u0001\u0000\u0000\u0000\u00a7\u0405\u0001\u0000\u0000\u0000"+
- "\u00a9\u0408\u0001\u0000\u0000\u0000\u00ab\u040a\u0001\u0000\u0000\u0000"+
- "\u00ad\u040d\u0001\u0000\u0000\u0000\u00af\u040f\u0001\u0000\u0000\u0000"+
- "\u00b1\u0411\u0001\u0000\u0000\u0000\u00b3\u0413\u0001\u0000\u0000\u0000"+
- "\u00b5\u0415\u0001\u0000\u0000\u0000\u00b7\u0417\u0001\u0000\u0000\u0000"+
- "\u00b9\u0419\u0001\u0000\u0000\u0000\u00bb\u041b\u0001\u0000\u0000\u0000"+
- "\u00bd\u041e\u0001\u0000\u0000\u0000\u00bf\u0433\u0001\u0000\u0000\u0000"+
- "\u00c1\u0446\u0001\u0000\u0000\u0000\u00c3\u0448\u0001\u0000\u0000\u0000"+
- "\u00c5\u044d\u0001\u0000\u0000\u0000\u00c7\u0462\u0001\u0000\u0000\u0000"+
- "\u00c9\u0464\u0001\u0000\u0000\u0000\u00cb\u046c\u0001\u0000\u0000\u0000"+
- "\u00cd\u046e\u0001\u0000\u0000\u0000\u00cf\u0472\u0001\u0000\u0000\u0000"+
- "\u00d1\u0476\u0001\u0000\u0000\u0000\u00d3\u047a\u0001\u0000\u0000\u0000"+
- "\u00d5\u047f\u0001\u0000\u0000\u0000\u00d7\u0484\u0001\u0000\u0000\u0000"+
- "\u00d9\u0488\u0001\u0000\u0000\u0000\u00db\u048c\u0001\u0000\u0000\u0000"+
- "\u00dd\u0490\u0001\u0000\u0000\u0000\u00df\u0495\u0001\u0000\u0000\u0000"+
- "\u00e1\u0499\u0001\u0000\u0000\u0000\u00e3\u049d\u0001\u0000\u0000\u0000"+
- "\u00e5\u04a1\u0001\u0000\u0000\u0000\u00e7\u04a5\u0001\u0000\u0000\u0000"+
- "\u00e9\u04a9\u0001\u0000\u0000\u0000\u00eb\u04ad\u0001\u0000\u0000\u0000"+
- "\u00ed\u04b9\u0001\u0000\u0000\u0000\u00ef\u04bc\u0001\u0000\u0000\u0000"+
- "\u00f1\u04c0\u0001\u0000\u0000\u0000\u00f3\u04c4\u0001\u0000\u0000\u0000"+
- "\u00f5\u04c8\u0001\u0000\u0000\u0000\u00f7\u04cc\u0001\u0000\u0000\u0000"+
- "\u00f9\u04d0\u0001\u0000\u0000\u0000\u00fb\u04d4\u0001\u0000\u0000\u0000"+
- "\u00fd\u04d9\u0001\u0000\u0000\u0000\u00ff\u04dd\u0001\u0000\u0000\u0000"+
- "\u0101\u04e1\u0001\u0000\u0000\u0000\u0103\u04e5\u0001\u0000\u0000\u0000"+
- "\u0105\u04e9\u0001\u0000\u0000\u0000\u0107\u04ed\u0001\u0000\u0000\u0000"+
- "\u0109\u04f5\u0001\u0000\u0000\u0000\u010b\u050a\u0001\u0000\u0000\u0000"+
- "\u010d\u050e\u0001\u0000\u0000\u0000\u010f\u0512\u0001\u0000\u0000\u0000"+
- "\u0111\u0516\u0001\u0000\u0000\u0000\u0113\u051a\u0001\u0000\u0000\u0000"+
- "\u0115\u051e\u0001\u0000\u0000\u0000\u0117\u0523\u0001\u0000\u0000\u0000"+
- "\u0119\u0527\u0001\u0000\u0000\u0000\u011b\u052b\u0001\u0000\u0000\u0000"+
- "\u011d\u052f\u0001\u0000\u0000\u0000\u011f\u0533\u0001\u0000\u0000\u0000"+
- "\u0121\u0537\u0001\u0000\u0000\u0000\u0123\u053b\u0001\u0000\u0000\u0000"+
- "\u0125\u053f\u0001\u0000\u0000\u0000\u0127\u0542\u0001\u0000\u0000\u0000"+
- "\u0129\u0546\u0001\u0000\u0000\u0000\u012b\u054a\u0001\u0000\u0000\u0000"+
- "\u012d\u054e\u0001\u0000\u0000\u0000\u012f\u0552\u0001\u0000\u0000\u0000"+
- "\u0131\u0557\u0001\u0000\u0000\u0000\u0133\u055c\u0001\u0000\u0000\u0000"+
- "\u0135\u0561\u0001\u0000\u0000\u0000\u0137\u0566\u0001\u0000\u0000\u0000"+
- "\u0139\u056f\u0001\u0000\u0000\u0000\u013b\u0576\u0001\u0000\u0000\u0000"+
- "\u013d\u057a\u0001\u0000\u0000\u0000\u013f\u057e\u0001\u0000\u0000\u0000"+
- "\u0141\u0582\u0001\u0000\u0000\u0000\u0143\u0586\u0001\u0000\u0000\u0000"+
- "\u0145\u058c\u0001\u0000\u0000\u0000\u0147\u0590\u0001\u0000\u0000\u0000"+
- "\u0149\u0594\u0001\u0000\u0000\u0000\u014b\u0598\u0001\u0000\u0000\u0000"+
- "\u014d\u059c\u0001\u0000\u0000\u0000\u014f\u05a0\u0001\u0000\u0000\u0000"+
- "\u0151\u05a4\u0001\u0000\u0000\u0000\u0153\u05a8\u0001\u0000\u0000\u0000"+
- "\u0155\u05ac\u0001\u0000\u0000\u0000\u0157\u05b0\u0001\u0000\u0000\u0000"+
- "\u0159\u05b4\u0001\u0000\u0000\u0000\u015b\u05b8\u0001\u0000\u0000\u0000"+
- "\u015d\u05bc\u0001\u0000\u0000\u0000\u015f\u05c0\u0001\u0000\u0000\u0000"+
- "\u0161\u05c5\u0001\u0000\u0000\u0000\u0163\u05c9\u0001\u0000\u0000\u0000"+
- "\u0165\u05cd\u0001\u0000\u0000\u0000\u0167\u05d1\u0001\u0000\u0000\u0000"+
- "\u0169\u05d5\u0001\u0000\u0000\u0000\u016b\u05d9\u0001\u0000\u0000\u0000"+
- "\u016d\u05dd\u0001\u0000\u0000\u0000\u016f\u05e1\u0001\u0000\u0000\u0000"+
- "\u0171\u05e5\u0001\u0000\u0000\u0000\u0173\u05e9\u0001\u0000\u0000\u0000"+
- "\u0175\u05ed\u0001\u0000\u0000\u0000\u0177\u05f2\u0001\u0000\u0000\u0000"+
- "\u0179\u05f7\u0001\u0000\u0000\u0000\u017b\u05fb\u0001\u0000\u0000\u0000"+
- "\u017d\u05ff\u0001\u0000\u0000\u0000\u017f\u0603\u0001\u0000\u0000\u0000"+
- "\u0181\u0608\u0001\u0000\u0000\u0000\u0183\u0611\u0001\u0000\u0000\u0000"+
- "\u0185\u0615\u0001\u0000\u0000\u0000\u0187\u0619\u0001\u0000\u0000\u0000"+
- "\u0189\u061d\u0001\u0000\u0000\u0000\u018b\u0621\u0001\u0000\u0000\u0000"+
- "\u018d\u0626\u0001\u0000\u0000\u0000\u018f\u062a\u0001\u0000\u0000\u0000"+
- "\u0191\u062e\u0001\u0000\u0000\u0000\u0193\u0632\u0001\u0000\u0000\u0000"+
- "\u0195\u0637\u0001\u0000\u0000\u0000\u0197\u063b\u0001\u0000\u0000\u0000"+
- "\u0199\u063f\u0001\u0000\u0000\u0000\u019b\u0643\u0001\u0000\u0000\u0000"+
- "\u019d\u0647\u0001\u0000\u0000\u0000\u019f\u064b\u0001\u0000\u0000\u0000"+
- "\u01a1\u0651\u0001\u0000\u0000\u0000\u01a3\u0655\u0001\u0000\u0000\u0000"+
- "\u01a5\u0659\u0001\u0000\u0000\u0000\u01a7\u065d\u0001\u0000\u0000\u0000"+
- "\u01a9\u0661\u0001\u0000\u0000\u0000\u01ab\u0665\u0001\u0000\u0000\u0000"+
- "\u01ad\u0669\u0001\u0000\u0000\u0000\u01af\u066e\u0001\u0000\u0000\u0000"+
- "\u01b1\u0673\u0001\u0000\u0000\u0000\u01b3\u0677\u0001\u0000\u0000\u0000"+
- "\u01b5\u067d\u0001\u0000\u0000\u0000\u01b7\u0686\u0001\u0000\u0000\u0000"+
- "\u01b9\u068a\u0001\u0000\u0000\u0000\u01bb\u068e\u0001\u0000\u0000\u0000"+
- "\u01bd\u0692\u0001\u0000\u0000\u0000\u01bf\u0696\u0001\u0000\u0000\u0000"+
- "\u01c1\u069a\u0001\u0000\u0000\u0000\u01c3\u069e\u0001\u0000\u0000\u0000"+
- "\u01c5\u06a2\u0001\u0000\u0000\u0000\u01c7\u06a6\u0001\u0000\u0000\u0000"+
- "\u01c9\u06ab\u0001\u0000\u0000\u0000\u01cb\u06b1\u0001\u0000\u0000\u0000"+
- "\u01cd\u06b7\u0001\u0000\u0000\u0000\u01cf\u06bb\u0001\u0000\u0000\u0000"+
- "\u01d1\u06bf\u0001\u0000\u0000\u0000\u01d3\u06c3\u0001\u0000\u0000\u0000"+
- "\u01d5\u06c9\u0001\u0000\u0000\u0000\u01d7\u06cf\u0001\u0000\u0000\u0000"+
- "\u01d9\u06d5\u0001\u0000\u0000\u0000\u01db\u06d9\u0001\u0000\u0000\u0000"+
- "\u01dd\u06dd\u0001\u0000\u0000\u0000\u01df\u06e1\u0001\u0000\u0000\u0000"+
- "\u01e1\u06e7\u0001\u0000\u0000\u0000\u01e3\u06ed\u0001\u0000\u0000\u0000"+
- "\u01e5\u06f3\u0001\u0000\u0000\u0000\u01e7\u06f8\u0001\u0000\u0000\u0000"+
- "\u01e9\u06fd\u0001\u0000\u0000\u0000\u01eb\u0701\u0001\u0000\u0000\u0000"+
- "\u01ed\u0705\u0001\u0000\u0000\u0000\u01ef\u0709\u0001\u0000\u0000\u0000"+
- "\u01f1\u070d\u0001\u0000\u0000\u0000\u01f3\u0711\u0001\u0000\u0000\u0000"+
- "\u01f5\u0715\u0001\u0000\u0000\u0000\u01f7\u0719\u0001\u0000\u0000\u0000"+
- "\u01f9\u071d\u0001\u0000\u0000\u0000\u01fb\u01fc\u0007\u0000\u0000\u0000"+
- "\u01fc\u01fd\u0007\u0001\u0000\u0000\u01fd\u01fe\u0007\u0002\u0000\u0000"+
- "\u01fe\u01ff\u0007\u0003\u0000\u0000\u01ff\u0200\u0007\u0004\u0000\u0000"+
- "\u0200\u0201\u0007\u0005\u0000\u0000\u0201\u0202\u0007\u0006\u0000\u0000"+
- "\u0202\u0203\u0007\u0007\u0000\u0000\u0203\u0204\u0007\u0001\u0000\u0000"+
- "\u0204\u0205\u0007\b\u0000\u0000\u0205\u0206\u0001\u0000\u0000\u0000\u0206"+
- "\u0207\u0006\u0000\u0000\u0000\u0207\u0012\u0001\u0000\u0000\u0000\u0208"+
- "\u0209\u0007\t\u0000\u0000\u0209\u020a\u0007\u0007\u0000\u0000\u020a\u020b"+
- "\u0007\n\u0000\u0000\u020b\u020c\u0007\n\u0000\u0000\u020c\u020d\u0007"+
- "\u0005\u0000\u0000\u020d\u020e\u0007\u0000\u0000\u0000\u020e\u020f\u0007"+
- "\u0006\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000\u0210\u0211\u0006"+
- "\u0001\u0000\u0000\u0211\u0014\u0001\u0000\u0000\u0000\u0212\u0213\u0007"+
- "\t\u0000\u0000\u0213\u0214\u0007\u000b\u0000\u0000\u0214\u0215\u0007\u0001"+
- "\u0000\u0000\u0215\u0216\u0007\u0003\u0000\u0000\u0216\u0217\u0001\u0000"+
- "\u0000\u0000\u0217\u0218\u0006\u0002\u0001\u0000\u0218\u0016\u0001\u0000"+
- "\u0000\u0000\u0219\u021a\u0007\u0005\u0000\u0000\u021a\u021b\u0007\b\u0000"+
- "\u0000\u021b\u021c\u0007\u000b\u0000\u0000\u021c\u021d\u0007\u0007\u0000"+
- "\u0000\u021d\u021e\u0007\u0000\u0000\u0000\u021e\u021f\u0007\f\u0000\u0000"+
- "\u021f\u0220\u0001\u0000\u0000\u0000\u0220\u0221\u0006\u0003\u0002\u0000"+
- "\u0221\u0018\u0001\u0000\u0000\u0000\u0222\u0223\u0007\u0005\u0000\u0000"+
- "\u0223\u0224\u0007\r\u0000\u0000\u0224\u0225\u0007\u000e\u0000\u0000\u0225"+
- "\u0226\u0007\u0004\u0000\u0000\u0226\u0227\u0001\u0000\u0000\u0000\u0227"+
- "\u0228\u0006\u0004\u0000\u0000\u0228\u001a\u0001\u0000\u0000\u0000\u0229"+
- "\u022a\u0007\u0005\u0000\u0000\u022a\u022b\u0007\u000f\u0000\u0000\u022b"+
- "\u022c\u0007\u0003\u0000\u0000\u022c\u022d\u0007\u0004\u0000\u0000\u022d"+
- "\u022e\u0007\u000e\u0000\u0000\u022e\u022f\u0007\u0007\u0000\u0000\u022f"+
- "\u0230\u0007\b\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231\u0232"+
- "\u0006\u0005\u0003\u0000\u0232\u001c\u0001\u0000\u0000\u0000\u0233\u0234"+
- "\u0007\u0010\u0000\u0000\u0234\u0235\u0007\u000b\u0000\u0000\u0235\u0236"+
- "\u0007\u0001\u0000\u0000\u0236\u0237\u0007\u0002\u0000\u0000\u0237\u0238"+
- "\u0001\u0000\u0000\u0000\u0238\u0239\u0006\u0006\u0004\u0000\u0239\u001e"+
- "\u0001\u0000\u0000\u0000\u023a\u023b\u0007\u0011\u0000\u0000\u023b\u023c"+
- "\u0007\u000b\u0000\u0000\u023c\u023d\u0007\u0001\u0000\u0000\u023d\u023e"+
- "\u0007\u0012\u0000\u0000\u023e\u023f\u0001\u0000\u0000\u0000\u023f\u0240"+
- "\u0006\u0007\u0000\u0000\u0240 \u0001\u0000\u0000\u0000\u0241\u0242\u0007"+
- "\u0012\u0000\u0000\u0242\u0243\u0007\u0005\u0000\u0000\u0243\u0244\u0007"+
- "\u0005\u0000\u0000\u0244\u0245\u0007\u0003\u0000\u0000\u0245\u0246\u0001"+
- "\u0000\u0000\u0000\u0246\u0247\u0006\b\u0001\u0000\u0247\"\u0001\u0000"+
- "\u0000\u0000\u0248\u0249\u0007\u0004\u0000\u0000\u0249\u024a\u0007\u0007"+
- "\u0000\u0000\u024a\u024b\u0007\u0002\u0000\u0000\u024b\u024c\u0007\u0007"+
- "\u0000\u0000\u024c\u024d\u0007\u0006\u0000\u0000\u024d\u024e\u0001\u0000"+
- "\u0000\u0000\u024e\u024f\u0006\t\u0000\u0000\u024f$\u0001\u0000\u0000"+
- "\u0000\u0250\u0251\u0007\u0002\u0000\u0000\u0251\u0252\u0007\r\u0000\u0000"+
- "\u0252\u0253\u0005_\u0000\u0000\u0253\u0254\u0007\u0005\u0000\u0000\u0254"+
- "\u0255\u0007\u000f\u0000\u0000\u0255\u0256\u0007\u0003\u0000\u0000\u0256"+
- "\u0257\u0007\u000e\u0000\u0000\u0257\u0258\u0007\b\u0000\u0000\u0258\u0259"+
- "\u0007\t\u0000\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025a\u025b\u0006"+
- "\n\u0005\u0000\u025b&\u0001\u0000\u0000\u0000\u025c\u025d\u0007\u000b"+
- "\u0000\u0000\u025d\u025e\u0007\u0005\u0000\u0000\u025e\u025f\u0007\b\u0000"+
- "\u0000\u025f\u0260\u0007\u000e\u0000\u0000\u0260\u0261\u0007\u0002\u0000"+
- "\u0000\u0261\u0262\u0007\u0005\u0000\u0000\u0262\u0263\u0001\u0000\u0000"+
- "\u0000\u0263\u0264\u0006\u000b\u0006\u0000\u0264(\u0001\u0000\u0000\u0000"+
- "\u0265\u0266\u0007\u000b\u0000\u0000\u0266\u0267\u0007\u0001\u0000\u0000"+
- "\u0267\u0268\u0007\u0013\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000"+
- "\u0269\u026a\u0006\f\u0000\u0000\u026a*\u0001\u0000\u0000\u0000\u026b"+
- "\u026c\u0007\n\u0000\u0000\u026c\u026d\u0007\f\u0000\u0000\u026d\u026e"+
- "\u0007\u0001\u0000\u0000\u026e\u026f\u0007\u0013\u0000\u0000\u026f\u0270"+
- "\u0001\u0000\u0000\u0000\u0270\u0271\u0006\r\u0007\u0000\u0271,\u0001"+
- "\u0000\u0000\u0000\u0272\u0273\u0007\n\u0000\u0000\u0273\u0274\u0007\u0001"+
- "\u0000\u0000\u0274\u0275\u0007\u000b\u0000\u0000\u0275\u0276\u0007\u0006"+
- "\u0000\u0000\u0276\u0277\u0001\u0000\u0000\u0000\u0277\u0278\u0006\u000e"+
- "\u0000\u0000\u0278.\u0001\u0000\u0000\u0000\u0279\u027a\u0007\n\u0000"+
- "\u0000\u027a\u027b\u0007\u0006\u0000\u0000\u027b\u027c\u0007\u000e\u0000"+
- "\u0000\u027c\u027d\u0007\u0006\u0000\u0000\u027d\u027e\u0007\n\u0000\u0000"+
- "\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280\u0006\u000f\u0000\u0000"+
- "\u02800\u0001\u0000\u0000\u0000\u0281\u0282\u0007\u0013\u0000\u0000\u0282"+
- "\u0283\u0007\f\u0000\u0000\u0283\u0284\u0007\u0005\u0000\u0000\u0284\u0285"+
- "\u0007\u000b\u0000\u0000\u0285\u0286\u0007\u0005\u0000\u0000\u0286\u0287"+
- "\u0001\u0000\u0000\u0000\u0287\u0288\u0006\u0010\u0000\u0000\u02882\u0001"+
- "\u0000\u0000\u0000\u0289\u028a\u0007\u0004\u0000\u0000\u028a\u028b\u0007"+
- "\u0001\u0000\u0000\u028b\u028c\u0007\u0001\u0000\u0000\u028c\u028d\u0007"+
- "\u0012\u0000\u0000\u028d\u028e\u0007\u0014\u0000\u0000\u028e\u028f\u0007"+
- "\u0003\u0000\u0000\u028f\u0290\u0001\u0000\u0000\u0000\u0290\u0291\u0006"+
- "\u0011\b\u0000\u02914\u0001\u0000\u0000\u0000\u0292\u0293\u0007\u0000"+
- "\u0000\u0000\u0293\u0294\u0007\f\u0000\u0000\u0294\u0295\u0007\u000e\u0000"+
- "\u0000\u0295\u0296\u0007\b\u0000\u0000\u0296\u0297\u0007\u0011\u0000\u0000"+
- "\u0297\u0298\u0007\u0005\u0000\u0000\u0298\u0299\u0005_\u0000\u0000\u0299"+
- "\u029a\u0007\u0003\u0000\u0000\u029a\u029b\u0007\u0001\u0000\u0000\u029b"+
- "\u029c\u0007\u0007\u0000\u0000\u029c\u029d\u0007\b\u0000\u0000\u029d\u029e"+
- "\u0007\u0006\u0000\u0000\u029e\u029f\u0001\u0000\u0000\u0000\u029f\u02a0"+
- "\u0006\u0012\t\u0000\u02a06\u0001\u0000\u0000\u0000\u02a1\u02a2\u0004"+
- "\u0013\u0000\u0000\u02a2\u02a3\u0007\u0007\u0000\u0000\u02a3\u02a4\u0007"+
- "\b\u0000\u0000\u02a4\u02a5\u0007\u0004\u0000\u0000\u02a5\u02a6\u0007\u0007"+
- "\u0000\u0000\u02a6\u02a7\u0007\b\u0000\u0000\u02a7\u02a8\u0007\u0005\u0000"+
- "\u0000\u02a8\u02a9\u0007\n\u0000\u0000\u02a9\u02aa\u0007\u0006\u0000\u0000"+
- "\u02aa\u02ab\u0007\u000e\u0000\u0000\u02ab\u02ac\u0007\u0006\u0000\u0000"+
- "\u02ac\u02ad\u0007\n\u0000\u0000\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae"+
- "\u02af\u0006\u0013\u0000\u0000\u02af8\u0001\u0000\u0000\u0000\u02b0\u02b1"+
- "\u0004\u0014\u0001\u0000\u02b1\u02b2\u0007\u0004\u0000\u0000\u02b2\u02b3"+
- "\u0007\u0001\u0000\u0000\u02b3\u02b4\u0007\u0001\u0000\u0000\u02b4\u02b5"+
- "\u0007\u0012\u0000\u0000\u02b5\u02b6\u0007\u0014\u0000\u0000\u02b6\u02b7"+
- "\u0007\u0003\u0000\u0000\u02b7\u02b8\u0005_\u0000\u0000\u02b8\u02b9\u0005"+
- "\u8001\uf414\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000\u02ba\u02bb"+
- "\u0006\u0014\n\u0000\u02bb:\u0001\u0000\u0000\u0000\u02bc\u02bd\u0004"+
- "\u0015\u0002\u0000\u02bd\u02be\u0007\u0002\u0000\u0000\u02be\u02bf\u0007"+
- "\u0005\u0000\u0000\u02bf\u02c0\u0007\u0006\u0000\u0000\u02c0\u02c1\u0007"+
- "\u000b\u0000\u0000\u02c1\u02c2\u0007\u0007\u0000\u0000\u02c2\u02c3\u0007"+
- "\u0000\u0000\u0000\u02c3\u02c4\u0007\n\u0000\u0000\u02c4\u02c5\u0001\u0000"+
- "\u0000\u0000\u02c5\u02c6\u0006\u0015\u000b\u0000\u02c6<\u0001\u0000\u0000"+
- "\u0000\u02c7\u02c8\u0004\u0016\u0003\u0000\u02c8\u02c9\u0007\u000b\u0000"+
- "\u0000\u02c9\u02ca\u0007\u0005\u0000\u0000\u02ca\u02cb\u0007\u000b\u0000"+
- "\u0000\u02cb\u02cc\u0007\u000e\u0000\u0000\u02cc\u02cd\u0007\b\u0000\u0000"+
- "\u02cd\u02ce\u0007\u0012\u0000\u0000\u02ce\u02cf\u0001\u0000\u0000\u0000"+
- "\u02cf\u02d0\u0006\u0016\u0000\u0000\u02d0>\u0001\u0000\u0000\u0000\u02d1"+
- "\u02d2\u0004\u0017\u0004\u0000\u02d2\u02d3\u0007\n\u0000\u0000\u02d3\u02d4"+
- "\u0007\u000e\u0000\u0000\u02d4\u02d5\u0007\u0002\u0000\u0000\u02d5\u02d6"+
- "\u0007\u0003\u0000\u0000\u02d6\u02d7\u0007\u0004\u0000\u0000\u02d7\u02d8"+
- "\u0007\u0005\u0000\u0000\u02d8\u02d9\u0001\u0000\u0000\u0000\u02d9\u02da"+
- "\u0006\u0017\u0000\u0000\u02da@\u0001\u0000\u0000\u0000\u02db\u02dc\u0004"+
- "\u0018\u0005\u0000\u02dc\u02dd\u0007\u0010\u0000\u0000\u02dd\u02de\u0007"+
- "\u0014\u0000\u0000\u02de\u02df\u0007\u0004\u0000\u0000\u02df\u02e0\u0007"+
- "\u0004\u0000\u0000\u02e0\u02e1\u0001\u0000\u0000\u0000\u02e1\u02e2\u0006"+
- "\u0018\b\u0000\u02e2B\u0001\u0000\u0000\u0000\u02e3\u02e4\u0004\u0019"+
- "\u0006\u0000\u02e4\u02e5\u0007\u0004\u0000\u0000\u02e5\u02e6\u0007\u0005"+
- "\u0000\u0000\u02e6\u02e7\u0007\u0010\u0000\u0000\u02e7\u02e8\u0007\u0006"+
- "\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ea\u0006\u0019"+
- "\b\u0000\u02eaD\u0001\u0000\u0000\u0000\u02eb\u02ec\u0004\u001a\u0007"+
- "\u0000\u02ec\u02ed\u0007\u000b\u0000\u0000\u02ed\u02ee\u0007\u0007\u0000"+
- "\u0000\u02ee\u02ef\u0007\u0011\u0000\u0000\u02ef\u02f0\u0007\f\u0000\u0000"+
- "\u02f0\u02f1\u0007\u0006\u0000\u0000\u02f1\u02f2\u0001\u0000\u0000\u0000"+
- "\u02f2\u02f3\u0006\u001a\b\u0000\u02f3F\u0001\u0000\u0000\u0000\u02f4"+
- "\u02f6\b\u0015\u0000\u0000\u02f5\u02f4\u0001\u0000\u0000\u0000\u02f6\u02f7"+
- "\u0001\u0000\u0000\u0000\u02f7\u02f5\u0001\u0000\u0000\u0000\u02f7\u02f8"+
- "\u0001\u0000\u0000\u0000\u02f8\u02f9\u0001\u0000\u0000\u0000\u02f9\u02fa"+
- "\u0006\u001b\u0000\u0000\u02faH\u0001\u0000\u0000\u0000\u02fb\u02fc\u0005"+
- "/\u0000\u0000\u02fc\u02fd\u0005/\u0000\u0000\u02fd\u0301\u0001\u0000\u0000"+
- "\u0000\u02fe\u0300\b\u0016\u0000\u0000\u02ff\u02fe\u0001\u0000\u0000\u0000"+
- "\u0300\u0303\u0001\u0000\u0000\u0000\u0301\u02ff\u0001\u0000\u0000\u0000"+
- "\u0301\u0302\u0001\u0000\u0000\u0000\u0302\u0305\u0001\u0000\u0000\u0000"+
- "\u0303\u0301\u0001\u0000\u0000\u0000\u0304\u0306\u0005\r\u0000\u0000\u0305"+
- "\u0304\u0001\u0000\u0000\u0000\u0305\u0306\u0001\u0000\u0000\u0000\u0306"+
- "\u0308\u0001\u0000\u0000\u0000\u0307\u0309\u0005\n\u0000\u0000\u0308\u0307"+
- "\u0001\u0000\u0000\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0309\u030a"+
- "\u0001\u0000\u0000\u0000\u030a\u030b\u0006\u001c\f\u0000\u030bJ\u0001"+
- "\u0000\u0000\u0000\u030c\u030d\u0005/\u0000\u0000\u030d\u030e\u0005*\u0000"+
- "\u0000\u030e\u0313\u0001\u0000\u0000\u0000\u030f\u0312\u0003K\u001d\u0000"+
- "\u0310\u0312\t\u0000\u0000\u0000\u0311\u030f\u0001\u0000\u0000\u0000\u0311"+
- "\u0310\u0001\u0000\u0000\u0000\u0312\u0315\u0001\u0000\u0000\u0000\u0313"+
- "\u0314\u0001\u0000\u0000\u0000\u0313\u0311\u0001\u0000\u0000\u0000\u0314"+
- "\u0316\u0001\u0000\u0000\u0000\u0315\u0313\u0001\u0000\u0000\u0000\u0316"+
- "\u0317\u0005*\u0000\u0000\u0317\u0318\u0005/\u0000\u0000\u0318\u0319\u0001"+
- "\u0000\u0000\u0000\u0319\u031a\u0006\u001d\f\u0000\u031aL\u0001\u0000"+
- "\u0000\u0000\u031b\u031d\u0007\u0017\u0000\u0000\u031c\u031b\u0001\u0000"+
- "\u0000\u0000\u031d\u031e\u0001\u0000\u0000\u0000\u031e\u031c\u0001\u0000"+
- "\u0000\u0000\u031e\u031f\u0001\u0000\u0000\u0000\u031f\u0320\u0001\u0000"+
- "\u0000\u0000\u0320\u0321\u0006\u001e\f\u0000\u0321N\u0001\u0000\u0000"+
- "\u0000\u0322\u0323\u0005|\u0000\u0000\u0323\u0324\u0001\u0000\u0000\u0000"+
- "\u0324\u0325\u0006\u001f\r\u0000\u0325P\u0001\u0000\u0000\u0000\u0326"+
- "\u0327\u0007\u0018\u0000\u0000\u0327R\u0001\u0000\u0000\u0000\u0328\u0329"+
- "\u0007\u0019\u0000\u0000\u0329T\u0001\u0000\u0000\u0000\u032a\u032b\u0005"+
- "\\\u0000\u0000\u032b\u032c\u0007\u001a\u0000\u0000\u032cV\u0001\u0000"+
- "\u0000\u0000\u032d\u032e\b\u001b\u0000\u0000\u032eX\u0001\u0000\u0000"+
- "\u0000\u032f\u0331\u0007\u0005\u0000\u0000\u0330\u0332\u0007\u001c\u0000"+
- "\u0000\u0331\u0330\u0001\u0000\u0000\u0000\u0331\u0332\u0001\u0000\u0000"+
- "\u0000\u0332\u0334\u0001\u0000\u0000\u0000\u0333\u0335\u0003Q \u0000\u0334"+
- "\u0333\u0001\u0000\u0000\u0000\u0335\u0336\u0001\u0000\u0000\u0000\u0336"+
- "\u0334\u0001\u0000\u0000\u0000\u0336\u0337\u0001\u0000\u0000\u0000\u0337"+
- "Z\u0001\u0000\u0000\u0000\u0338\u0339\u0005@\u0000\u0000\u0339\\\u0001"+
- "\u0000\u0000\u0000\u033a\u033b\u0005`\u0000\u0000\u033b^\u0001\u0000\u0000"+
- "\u0000\u033c\u0340\b\u001d\u0000\u0000\u033d\u033e\u0005`\u0000\u0000"+
- "\u033e\u0340\u0005`\u0000\u0000\u033f\u033c\u0001\u0000\u0000\u0000\u033f"+
- "\u033d\u0001\u0000\u0000\u0000\u0340`\u0001\u0000\u0000\u0000\u0341\u0342"+
- "\u0005_\u0000\u0000\u0342b\u0001\u0000\u0000\u0000\u0343\u0347\u0003S"+
- "!\u0000\u0344\u0347\u0003Q \u0000\u0345\u0347\u0003a(\u0000\u0346\u0343"+
- "\u0001\u0000\u0000\u0000\u0346\u0344\u0001\u0000\u0000\u0000\u0346\u0345"+
- "\u0001\u0000\u0000\u0000\u0347d\u0001\u0000\u0000\u0000\u0348\u034d\u0005"+
- "\"\u0000\u0000\u0349\u034c\u0003U\"\u0000\u034a\u034c\u0003W#\u0000\u034b"+
- "\u0349\u0001\u0000\u0000\u0000\u034b\u034a\u0001\u0000\u0000\u0000\u034c"+
- "\u034f\u0001\u0000\u0000\u0000\u034d\u034b\u0001\u0000\u0000\u0000\u034d"+
- "\u034e\u0001\u0000\u0000\u0000\u034e\u0350\u0001\u0000\u0000\u0000\u034f"+
- "\u034d\u0001\u0000\u0000\u0000\u0350\u0366\u0005\"\u0000\u0000\u0351\u0352"+
- "\u0005\"\u0000\u0000\u0352\u0353\u0005\"\u0000\u0000\u0353\u0354\u0005"+
- "\"\u0000\u0000\u0354\u0358\u0001\u0000\u0000\u0000\u0355\u0357\b\u0016"+
- "\u0000\u0000\u0356\u0355\u0001\u0000\u0000\u0000\u0357\u035a\u0001\u0000"+
- "\u0000\u0000\u0358\u0359\u0001\u0000\u0000\u0000\u0358\u0356\u0001\u0000"+
- "\u0000\u0000\u0359\u035b\u0001\u0000\u0000\u0000\u035a\u0358\u0001\u0000"+
- "\u0000\u0000\u035b\u035c\u0005\"\u0000\u0000\u035c\u035d\u0005\"\u0000"+
- "\u0000\u035d\u035e\u0005\"\u0000\u0000\u035e\u0360\u0001\u0000\u0000\u0000"+
- "\u035f\u0361\u0005\"\u0000\u0000\u0360\u035f\u0001\u0000\u0000\u0000\u0360"+
- "\u0361\u0001\u0000\u0000\u0000\u0361\u0363\u0001\u0000\u0000\u0000\u0362"+
- "\u0364\u0005\"\u0000\u0000\u0363\u0362\u0001\u0000\u0000\u0000\u0363\u0364"+
- "\u0001\u0000\u0000\u0000\u0364\u0366\u0001\u0000\u0000\u0000\u0365\u0348"+
- "\u0001\u0000\u0000\u0000\u0365\u0351\u0001\u0000\u0000\u0000\u0366f\u0001"+
- "\u0000\u0000\u0000\u0367\u0369\u0003Q \u0000\u0368\u0367\u0001\u0000\u0000"+
- "\u0000\u0369\u036a\u0001\u0000\u0000\u0000\u036a\u0368\u0001\u0000\u0000"+
- "\u0000\u036a\u036b\u0001\u0000\u0000\u0000\u036bh\u0001\u0000\u0000\u0000"+
- "\u036c\u036e\u0003Q \u0000\u036d\u036c\u0001\u0000\u0000\u0000\u036e\u036f"+
- "\u0001\u0000\u0000\u0000\u036f\u036d\u0001\u0000\u0000\u0000\u036f\u0370"+
- "\u0001\u0000\u0000\u0000\u0370\u0371\u0001\u0000\u0000\u0000\u0371\u0375"+
- "\u0003{5\u0000\u0372\u0374\u0003Q \u0000\u0373\u0372\u0001\u0000\u0000"+
- "\u0000\u0374\u0377\u0001\u0000\u0000\u0000\u0375\u0373\u0001\u0000\u0000"+
- "\u0000\u0375\u0376\u0001\u0000\u0000\u0000\u0376\u0397\u0001\u0000\u0000"+
- "\u0000\u0377\u0375\u0001\u0000\u0000\u0000\u0378\u037a\u0003{5\u0000\u0379"+
- "\u037b\u0003Q \u0000\u037a\u0379\u0001\u0000\u0000\u0000\u037b\u037c\u0001"+
- "\u0000\u0000\u0000\u037c\u037a\u0001\u0000\u0000\u0000\u037c\u037d\u0001"+
- "\u0000\u0000\u0000\u037d\u0397\u0001\u0000\u0000\u0000\u037e\u0380\u0003"+
- "Q \u0000\u037f\u037e\u0001\u0000\u0000\u0000\u0380\u0381\u0001\u0000\u0000"+
- "\u0000\u0381\u037f\u0001\u0000\u0000\u0000\u0381\u0382\u0001\u0000\u0000"+
- "\u0000\u0382\u038a\u0001\u0000\u0000\u0000\u0383\u0387\u0003{5\u0000\u0384"+
- "\u0386\u0003Q \u0000\u0385\u0384\u0001\u0000\u0000\u0000\u0386\u0389\u0001"+
- "\u0000\u0000\u0000\u0387\u0385\u0001\u0000\u0000\u0000\u0387\u0388\u0001"+
- "\u0000\u0000\u0000\u0388\u038b\u0001\u0000\u0000\u0000\u0389\u0387\u0001"+
- "\u0000\u0000\u0000\u038a\u0383\u0001\u0000\u0000\u0000\u038a\u038b\u0001"+
- "\u0000\u0000\u0000\u038b\u038c\u0001\u0000\u0000\u0000\u038c\u038d\u0003"+
- "Y$\u0000\u038d\u0397\u0001\u0000\u0000\u0000\u038e\u0390\u0003{5\u0000"+
- "\u038f\u0391\u0003Q \u0000\u0390\u038f\u0001\u0000\u0000\u0000\u0391\u0392"+
- "\u0001\u0000\u0000\u0000\u0392\u0390\u0001\u0000\u0000\u0000\u0392\u0393"+
- "\u0001\u0000\u0000\u0000\u0393\u0394\u0001\u0000\u0000\u0000\u0394\u0395"+
- "\u0003Y$\u0000\u0395\u0397\u0001\u0000\u0000\u0000\u0396\u036d\u0001\u0000"+
- "\u0000\u0000\u0396\u0378\u0001\u0000\u0000\u0000\u0396\u037f\u0001\u0000"+
- "\u0000\u0000\u0396\u038e\u0001\u0000\u0000\u0000\u0397j\u0001\u0000\u0000"+
- "\u0000\u0398\u0399\u0007\u000e\u0000\u0000\u0399\u039a\u0007\b\u0000\u0000"+
- "\u039a\u039b\u0007\t\u0000\u0000\u039bl\u0001\u0000\u0000\u0000\u039c"+
- "\u039d\u0007\u000e\u0000\u0000\u039d\u039e\u0007\n\u0000\u0000\u039e\u039f"+
- "\u0007\u0000\u0000\u0000\u039fn\u0001\u0000\u0000\u0000\u03a0\u03a1\u0005"+
- "=\u0000\u0000\u03a1p\u0001\u0000\u0000\u0000\u03a2\u03a3\u0007\u001e\u0000"+
- "\u0000\u03a3\u03a4\u0007\u001f\u0000\u0000\u03a4r\u0001\u0000\u0000\u0000"+
- "\u03a5\u03a6\u0005:\u0000\u0000\u03a6\u03a7\u0005:\u0000\u0000\u03a7t"+
- "\u0001\u0000\u0000\u0000\u03a8\u03a9\u0005:\u0000\u0000\u03a9v\u0001\u0000"+
- "\u0000\u0000\u03aa\u03ab\u0005,\u0000\u0000\u03abx\u0001\u0000\u0000\u0000"+
- "\u03ac\u03ad\u0007\t\u0000\u0000\u03ad\u03ae\u0007\u0005\u0000\u0000\u03ae"+
- "\u03af\u0007\n\u0000\u0000\u03af\u03b0\u0007\u0000\u0000\u0000\u03b0z"+
- "\u0001\u0000\u0000\u0000\u03b1\u03b2\u0005.\u0000\u0000\u03b2|\u0001\u0000"+
- "\u0000\u0000\u03b3\u03b4\u0007\u0010\u0000\u0000\u03b4\u03b5\u0007\u000e"+
- "\u0000\u0000\u03b5\u03b6\u0007\u0004\u0000\u0000\u03b6\u03b7\u0007\n\u0000"+
- "\u0000\u03b7\u03b8\u0007\u0005\u0000\u0000\u03b8~\u0001\u0000\u0000\u0000"+
- "\u03b9\u03ba\u0007\u0010\u0000\u0000\u03ba\u03bb\u0007\u0007\u0000\u0000"+
- "\u03bb\u03bc\u0007\u000b\u0000\u0000\u03bc\u03bd\u0007\n\u0000\u0000\u03bd"+
- "\u03be\u0007\u0006\u0000\u0000\u03be\u0080\u0001\u0000\u0000\u0000\u03bf"+
- "\u03c0\u0007\u0007\u0000\u0000\u03c0\u03c1\u0007\b\u0000\u0000\u03c1\u0082"+
- "\u0001\u0000\u0000\u0000\u03c2\u03c3\u0007\u0007\u0000\u0000\u03c3\u03c4"+
- "\u0007\n\u0000\u0000\u03c4\u0084\u0001\u0000\u0000\u0000\u03c5\u03c6\u0007"+
- "\u0004\u0000\u0000\u03c6\u03c7\u0007\u000e\u0000\u0000\u03c7\u03c8\u0007"+
- "\n\u0000\u0000\u03c8\u03c9\u0007\u0006\u0000\u0000\u03c9\u0086\u0001\u0000"+
- "\u0000\u0000\u03ca\u03cb\u0007\u0004\u0000\u0000\u03cb\u03cc\u0007\u0007"+
- "\u0000\u0000\u03cc\u03cd\u0007\u0012\u0000\u0000\u03cd\u03ce\u0007\u0005"+
- "\u0000\u0000\u03ce\u0088\u0001\u0000\u0000\u0000\u03cf\u03d0\u0005(\u0000"+
- "\u0000\u03d0\u008a\u0001\u0000\u0000\u0000\u03d1\u03d2\u0007\b\u0000\u0000"+
- "\u03d2\u03d3\u0007\u0001\u0000\u0000\u03d3\u03d4\u0007\u0006\u0000\u0000"+
- "\u03d4\u008c\u0001\u0000\u0000\u0000\u03d5\u03d6\u0007\b\u0000\u0000\u03d6"+
- "\u03d7\u0007\u0014\u0000\u0000\u03d7\u03d8\u0007\u0004\u0000\u0000\u03d8"+
- "\u03d9\u0007\u0004\u0000\u0000\u03d9\u008e\u0001\u0000\u0000\u0000\u03da"+
- "\u03db\u0007\b\u0000\u0000\u03db\u03dc\u0007\u0014\u0000\u0000\u03dc\u03dd"+
- "\u0007\u0004\u0000\u0000\u03dd\u03de\u0007\u0004\u0000\u0000\u03de\u03df"+
- "\u0007\n\u0000\u0000\u03df\u0090\u0001\u0000\u0000\u0000\u03e0\u03e1\u0007"+
- "\u0001\u0000\u0000\u03e1\u03e2\u0007\b\u0000\u0000\u03e2\u0092\u0001\u0000"+
- "\u0000\u0000\u03e3\u03e4\u0007\u0001\u0000\u0000\u03e4\u03e5\u0007\u000b"+
- "\u0000\u0000\u03e5\u0094\u0001\u0000\u0000\u0000\u03e6\u03e7\u0005?\u0000"+
- "\u0000\u03e7\u0096\u0001\u0000\u0000\u0000\u03e8\u03e9\u0007\u000b\u0000"+
- "\u0000\u03e9\u03ea\u0007\u0004\u0000\u0000\u03ea\u03eb\u0007\u0007\u0000"+
- "\u0000\u03eb\u03ec\u0007\u0012\u0000\u0000\u03ec\u03ed\u0007\u0005\u0000"+
- "\u0000\u03ed\u0098\u0001\u0000\u0000\u0000\u03ee\u03ef\u0005)\u0000\u0000"+
- "\u03ef\u009a\u0001\u0000\u0000\u0000\u03f0\u03f1\u0007\u0006\u0000\u0000"+
- "\u03f1\u03f2\u0007\u000b\u0000\u0000\u03f2\u03f3\u0007\u0014\u0000\u0000"+
- "\u03f3\u03f4\u0007\u0005\u0000\u0000\u03f4\u009c\u0001\u0000\u0000\u0000"+
- "\u03f5\u03f6\u0007\u0013\u0000\u0000\u03f6\u03f7\u0007\u0007\u0000\u0000"+
- "\u03f7\u03f8\u0007\u0006\u0000\u0000\u03f8\u03f9\u0007\f\u0000\u0000\u03f9"+
- "\u009e\u0001\u0000\u0000\u0000\u03fa\u03fb\u0005=\u0000\u0000\u03fb\u03fc"+
- "\u0005=\u0000\u0000\u03fc\u00a0\u0001\u0000\u0000\u0000\u03fd\u03fe\u0005"+
- "=\u0000\u0000\u03fe\u03ff\u0005~\u0000\u0000\u03ff\u00a2\u0001\u0000\u0000"+
- "\u0000\u0400\u0401\u0005!\u0000\u0000\u0401\u0402\u0005=\u0000\u0000\u0402"+
- "\u00a4\u0001\u0000\u0000\u0000\u0403\u0404\u0005<\u0000\u0000\u0404\u00a6"+
- "\u0001\u0000\u0000\u0000\u0405\u0406\u0005<\u0000\u0000\u0406\u0407\u0005"+
- "=\u0000\u0000\u0407\u00a8\u0001\u0000\u0000\u0000\u0408\u0409\u0005>\u0000"+
- "\u0000\u0409\u00aa\u0001\u0000\u0000\u0000\u040a\u040b\u0005>\u0000\u0000"+
- "\u040b\u040c\u0005=\u0000\u0000\u040c\u00ac\u0001\u0000\u0000\u0000\u040d"+
- "\u040e\u0005+\u0000\u0000\u040e\u00ae\u0001\u0000\u0000\u0000\u040f\u0410"+
- "\u0005-\u0000\u0000\u0410\u00b0\u0001\u0000\u0000\u0000\u0411\u0412\u0005"+
- "*\u0000\u0000\u0412\u00b2\u0001\u0000\u0000\u0000\u0413\u0414\u0005/\u0000"+
- "\u0000\u0414\u00b4\u0001\u0000\u0000\u0000\u0415\u0416\u0005%\u0000\u0000"+
- "\u0416\u00b6\u0001\u0000\u0000\u0000\u0417\u0418\u0005{\u0000\u0000\u0418"+
- "\u00b8\u0001\u0000\u0000\u0000\u0419\u041a\u0005}\u0000\u0000\u041a\u00ba"+
- "\u0001\u0000\u0000\u0000\u041b\u041c\u0005?\u0000\u0000\u041c\u041d\u0005"+
- "?\u0000\u0000\u041d\u00bc\u0001\u0000\u0000\u0000\u041e\u041f\u00031\u0010"+
- "\u0000\u041f\u0420\u0001\u0000\u0000\u0000\u0420\u0421\u0006V\u000e\u0000"+
- "\u0421\u00be\u0001\u0000\u0000\u0000\u0422\u0425\u0003\u0095B\u0000\u0423"+
- "\u0426\u0003S!\u0000\u0424\u0426\u0003a(\u0000\u0425\u0423\u0001\u0000"+
- "\u0000\u0000\u0425\u0424\u0001\u0000\u0000\u0000\u0426\u042a\u0001\u0000"+
- "\u0000\u0000\u0427\u0429\u0003c)\u0000\u0428\u0427\u0001\u0000\u0000\u0000"+
- "\u0429\u042c\u0001\u0000\u0000\u0000\u042a\u0428\u0001\u0000\u0000\u0000"+
- "\u042a\u042b\u0001\u0000\u0000\u0000\u042b\u0434\u0001\u0000\u0000\u0000"+
- "\u042c\u042a\u0001\u0000\u0000\u0000\u042d\u042f\u0003\u0095B\u0000\u042e"+
- "\u0430\u0003Q \u0000\u042f\u042e\u0001\u0000\u0000\u0000\u0430\u0431\u0001"+
- "\u0000\u0000\u0000\u0431\u042f\u0001\u0000\u0000\u0000\u0431\u0432\u0001"+
- "\u0000\u0000\u0000\u0432\u0434\u0001\u0000\u0000\u0000\u0433\u0422\u0001"+
- "\u0000\u0000\u0000\u0433\u042d\u0001\u0000\u0000\u0000\u0434\u00c0\u0001"+
- "\u0000\u0000\u0000\u0435\u0438\u0003\u00bbU\u0000\u0436\u0439\u0003S!"+
- "\u0000\u0437\u0439\u0003a(\u0000\u0438\u0436\u0001\u0000\u0000\u0000\u0438"+
- "\u0437\u0001\u0000\u0000\u0000\u0439\u043d\u0001\u0000\u0000\u0000\u043a"+
- "\u043c\u0003c)\u0000\u043b\u043a\u0001\u0000\u0000\u0000\u043c\u043f\u0001"+
- "\u0000\u0000\u0000\u043d\u043b\u0001\u0000\u0000\u0000\u043d\u043e\u0001"+
- "\u0000\u0000\u0000\u043e\u0447\u0001\u0000\u0000\u0000\u043f\u043d\u0001"+
- "\u0000\u0000\u0000\u0440\u0442\u0003\u00bbU\u0000\u0441\u0443\u0003Q "+
- "\u0000\u0442\u0441\u0001\u0000\u0000\u0000\u0443\u0444\u0001\u0000\u0000"+
- "\u0000\u0444\u0442\u0001\u0000\u0000\u0000\u0444\u0445\u0001\u0000\u0000"+
- "\u0000\u0445\u0447\u0001\u0000\u0000\u0000\u0446\u0435\u0001\u0000\u0000"+
- "\u0000\u0446\u0440\u0001\u0000\u0000\u0000\u0447\u00c2\u0001\u0000\u0000"+
- "\u0000\u0448\u0449\u0005[\u0000\u0000\u0449\u044a\u0001\u0000\u0000\u0000"+
- "\u044a\u044b\u0006Y\u0000\u0000\u044b\u044c\u0006Y\u0000\u0000\u044c\u00c4"+
- "\u0001\u0000\u0000\u0000\u044d\u044e\u0005]\u0000\u0000\u044e\u044f\u0001"+
- "\u0000\u0000\u0000\u044f\u0450\u0006Z\r\u0000\u0450\u0451\u0006Z\r\u0000"+
- "\u0451\u00c6\u0001\u0000\u0000\u0000\u0452\u0456\u0003S!\u0000\u0453\u0455"+
- "\u0003c)\u0000\u0454\u0453\u0001\u0000\u0000\u0000\u0455\u0458\u0001\u0000"+
- "\u0000\u0000\u0456\u0454\u0001\u0000\u0000\u0000\u0456\u0457\u0001\u0000"+
- "\u0000\u0000\u0457\u0463\u0001\u0000\u0000\u0000\u0458\u0456\u0001\u0000"+
- "\u0000\u0000\u0459\u045c\u0003a(\u0000\u045a\u045c\u0003[%\u0000\u045b"+
- "\u0459\u0001\u0000\u0000\u0000\u045b\u045a\u0001\u0000\u0000\u0000\u045c"+
- "\u045e\u0001\u0000\u0000\u0000\u045d\u045f\u0003c)\u0000\u045e\u045d\u0001"+
- "\u0000\u0000\u0000\u045f\u0460\u0001\u0000\u0000\u0000\u0460\u045e\u0001"+
- "\u0000\u0000\u0000\u0460\u0461\u0001\u0000\u0000\u0000\u0461\u0463\u0001"+
- "\u0000\u0000\u0000\u0462\u0452\u0001\u0000\u0000\u0000\u0462\u045b\u0001"+
- "\u0000\u0000\u0000\u0463\u00c8\u0001\u0000\u0000\u0000\u0464\u0466\u0003"+
- "]&\u0000\u0465\u0467\u0003_\'\u0000\u0466\u0465\u0001\u0000\u0000\u0000"+
- "\u0467\u0468\u0001\u0000\u0000\u0000\u0468\u0466\u0001\u0000\u0000\u0000"+
- "\u0468\u0469\u0001\u0000\u0000\u0000\u0469\u046a\u0001\u0000\u0000\u0000"+
- "\u046a\u046b\u0003]&\u0000\u046b\u00ca\u0001\u0000\u0000\u0000\u046c\u046d"+
- "\u0003\u00c9\\\u0000\u046d\u00cc\u0001\u0000\u0000\u0000\u046e\u046f\u0003"+
- "I\u001c\u0000\u046f\u0470\u0001\u0000\u0000\u0000\u0470\u0471\u0006^\f"+
- "\u0000\u0471\u00ce\u0001\u0000\u0000\u0000\u0472\u0473\u0003K\u001d\u0000"+
- "\u0473\u0474\u0001\u0000\u0000\u0000\u0474\u0475\u0006_\f\u0000\u0475"+
- "\u00d0\u0001\u0000\u0000\u0000\u0476\u0477\u0003M\u001e\u0000\u0477\u0478"+
- "\u0001\u0000\u0000\u0000\u0478\u0479\u0006`\f\u0000\u0479\u00d2\u0001"+
- "\u0000\u0000\u0000\u047a\u047b\u0003\u00c3Y\u0000\u047b\u047c\u0001\u0000"+
- "\u0000\u0000\u047c\u047d\u0006a\u000f\u0000\u047d\u047e\u0006a\u0010\u0000"+
- "\u047e\u00d4\u0001\u0000\u0000\u0000\u047f\u0480\u0003O\u001f\u0000\u0480"+
- "\u0481\u0001\u0000\u0000\u0000\u0481\u0482\u0006b\u0011\u0000\u0482\u0483"+
- "\u0006b\r\u0000\u0483\u00d6\u0001\u0000\u0000\u0000\u0484\u0485\u0003"+
- "M\u001e\u0000\u0485\u0486\u0001\u0000\u0000\u0000\u0486\u0487\u0006c\f"+
- "\u0000\u0487\u00d8\u0001\u0000\u0000\u0000\u0488\u0489\u0003I\u001c\u0000"+
- "\u0489\u048a\u0001\u0000\u0000\u0000\u048a\u048b\u0006d\f\u0000\u048b"+
- "\u00da\u0001\u0000\u0000\u0000\u048c\u048d\u0003K\u001d\u0000\u048d\u048e"+
- "\u0001\u0000\u0000\u0000\u048e\u048f\u0006e\f\u0000\u048f\u00dc\u0001"+
- "\u0000\u0000\u0000\u0490\u0491\u0003O\u001f\u0000\u0491\u0492\u0001\u0000"+
- "\u0000\u0000\u0492\u0493\u0006f\u0011\u0000\u0493\u0494\u0006f\r\u0000"+
- "\u0494\u00de\u0001\u0000\u0000\u0000\u0495\u0496\u0003\u00c3Y\u0000\u0496"+
- "\u0497\u0001\u0000\u0000\u0000\u0497\u0498\u0006g\u000f\u0000\u0498\u00e0"+
- "\u0001\u0000\u0000\u0000\u0499\u049a\u0003\u00c5Z\u0000\u049a\u049b\u0001"+
- "\u0000\u0000\u0000\u049b\u049c\u0006h\u0012\u0000\u049c\u00e2\u0001\u0000"+
- "\u0000\u0000\u049d\u049e\u0003u2\u0000\u049e\u049f\u0001\u0000\u0000\u0000"+
- "\u049f\u04a0\u0006i\u0013\u0000\u04a0\u00e4\u0001\u0000\u0000\u0000\u04a1"+
- "\u04a2\u0003s1\u0000\u04a2\u04a3\u0001\u0000\u0000\u0000\u04a3\u04a4\u0006"+
- "j\u0014\u0000\u04a4\u00e6\u0001\u0000\u0000\u0000\u04a5\u04a6\u0003w3"+
- "\u0000\u04a6\u04a7\u0001\u0000\u0000\u0000\u04a7\u04a8\u0006k\u0015\u0000"+
- "\u04a8\u00e8\u0001\u0000\u0000\u0000\u04a9\u04aa\u0003o/\u0000\u04aa\u04ab"+
- "\u0001\u0000\u0000\u0000\u04ab\u04ac\u0006l\u0016\u0000\u04ac\u00ea\u0001"+
- "\u0000\u0000\u0000\u04ad\u04ae\u0007\u0002\u0000\u0000\u04ae\u04af\u0007"+
- "\u0005\u0000\u0000\u04af\u04b0\u0007\u0006\u0000\u0000\u04b0\u04b1\u0007"+
- "\u000e\u0000\u0000\u04b1\u04b2\u0007\t\u0000\u0000\u04b2\u04b3\u0007\u000e"+
- "\u0000\u0000\u04b3\u04b4\u0007\u0006\u0000\u0000\u04b4\u04b5\u0007\u000e"+
- "\u0000\u0000\u04b5\u00ec\u0001\u0000\u0000\u0000\u04b6\u04ba\b \u0000"+
- "\u0000\u04b7\u04b8\u0005/\u0000\u0000\u04b8\u04ba\b!\u0000\u0000\u04b9"+
- "\u04b6\u0001\u0000\u0000\u0000\u04b9\u04b7\u0001\u0000\u0000\u0000\u04ba"+
- "\u00ee\u0001\u0000\u0000\u0000\u04bb\u04bd\u0003\u00edn\u0000\u04bc\u04bb"+
- "\u0001\u0000\u0000\u0000\u04bd\u04be\u0001\u0000\u0000\u0000\u04be\u04bc"+
- "\u0001\u0000\u0000\u0000\u04be\u04bf\u0001\u0000\u0000\u0000\u04bf\u00f0"+
- "\u0001\u0000\u0000\u0000\u04c0\u04c1\u0003\u00efo\u0000\u04c1\u04c2\u0001"+
- "\u0000\u0000\u0000\u04c2\u04c3\u0006p\u0017\u0000\u04c3\u00f2\u0001\u0000"+
- "\u0000\u0000\u04c4\u04c5\u0003e*\u0000\u04c5\u04c6\u0001\u0000\u0000\u0000"+
- "\u04c6\u04c7\u0006q\u0018\u0000\u04c7\u00f4\u0001\u0000\u0000\u0000\u04c8"+
- "\u04c9\u0003I\u001c\u0000\u04c9\u04ca\u0001\u0000\u0000\u0000\u04ca\u04cb"+
- "\u0006r\f\u0000\u04cb\u00f6\u0001\u0000\u0000\u0000\u04cc\u04cd\u0003"+
- "K\u001d\u0000\u04cd\u04ce\u0001\u0000\u0000\u0000\u04ce\u04cf\u0006s\f"+
- "\u0000\u04cf\u00f8\u0001\u0000\u0000\u0000\u04d0\u04d1\u0003M\u001e\u0000"+
- "\u04d1\u04d2\u0001\u0000\u0000\u0000\u04d2\u04d3\u0006t\f\u0000\u04d3"+
- "\u00fa\u0001\u0000\u0000\u0000\u04d4\u04d5\u0003O\u001f\u0000\u04d5\u04d6"+
- "\u0001\u0000\u0000\u0000\u04d6\u04d7\u0006u\u0011\u0000\u04d7\u04d8\u0006"+
- "u\r\u0000\u04d8\u00fc\u0001\u0000\u0000\u0000\u04d9\u04da\u0003{5\u0000"+
- "\u04da\u04db\u0001\u0000\u0000\u0000\u04db\u04dc\u0006v\u0019\u0000\u04dc"+
- "\u00fe\u0001\u0000\u0000\u0000\u04dd\u04de\u0003w3\u0000\u04de\u04df\u0001"+
- "\u0000\u0000\u0000\u04df\u04e0\u0006w\u0015\u0000\u04e0\u0100\u0001\u0000"+
- "\u0000\u0000\u04e1\u04e2\u0003\u0095B\u0000\u04e2\u04e3\u0001\u0000\u0000"+
- "\u0000\u04e3\u04e4\u0006x\u001a\u0000\u04e4\u0102\u0001\u0000\u0000\u0000"+
- "\u04e5\u04e6\u0003\u00bfW\u0000\u04e6\u04e7\u0001\u0000\u0000\u0000\u04e7"+
- "\u04e8\u0006y\u001b\u0000\u04e8\u0104\u0001\u0000\u0000\u0000\u04e9\u04ea"+
- "\u0003\u00bbU\u0000\u04ea\u04eb\u0001\u0000\u0000\u0000\u04eb\u04ec\u0006"+
- "z\u001c\u0000\u04ec\u0106\u0001\u0000\u0000\u0000\u04ed\u04ee\u0003\u00c1"+
- "X\u0000\u04ee\u04ef\u0001\u0000\u0000\u0000\u04ef\u04f0\u0006{\u001d\u0000"+
- "\u04f0\u0108\u0001\u0000\u0000\u0000\u04f1\u04f6\u0003S!\u0000\u04f2\u04f6"+
- "\u0003Q \u0000\u04f3\u04f6\u0003a(\u0000\u04f4\u04f6\u0003\u00b1P\u0000"+
- "\u04f5\u04f1\u0001\u0000\u0000\u0000\u04f5\u04f2\u0001\u0000\u0000\u0000"+
- "\u04f5\u04f3\u0001\u0000\u0000\u0000\u04f5\u04f4\u0001\u0000\u0000\u0000"+
- "\u04f6\u010a\u0001\u0000\u0000\u0000\u04f7\u04fa\u0003S!\u0000\u04f8\u04fa"+
- "\u0003\u00b1P\u0000\u04f9\u04f7\u0001\u0000\u0000\u0000\u04f9\u04f8\u0001"+
- "\u0000\u0000\u0000\u04fa\u04fe\u0001\u0000\u0000\u0000\u04fb\u04fd\u0003"+
- "\u0109|\u0000\u04fc\u04fb\u0001\u0000\u0000\u0000\u04fd\u0500\u0001\u0000"+
- "\u0000\u0000\u04fe\u04fc\u0001\u0000\u0000\u0000\u04fe\u04ff\u0001\u0000"+
- "\u0000\u0000\u04ff\u050b\u0001\u0000\u0000\u0000\u0500\u04fe\u0001\u0000"+
- "\u0000\u0000\u0501\u0504\u0003a(\u0000\u0502\u0504\u0003[%\u0000\u0503"+
- "\u0501\u0001\u0000\u0000\u0000\u0503\u0502\u0001\u0000\u0000\u0000\u0504"+
- "\u0506\u0001\u0000\u0000\u0000\u0505\u0507\u0003\u0109|\u0000\u0506\u0505"+
- "\u0001\u0000\u0000\u0000\u0507\u0508\u0001\u0000\u0000\u0000\u0508\u0506"+
- "\u0001\u0000\u0000\u0000\u0508\u0509\u0001\u0000\u0000\u0000\u0509\u050b"+
- "\u0001\u0000\u0000\u0000\u050a\u04f9\u0001\u0000\u0000\u0000\u050a\u0503"+
- "\u0001\u0000\u0000\u0000\u050b\u010c\u0001\u0000\u0000\u0000\u050c\u050f"+
- "\u0003\u010b}\u0000\u050d\u050f\u0003\u00c9\\\u0000\u050e\u050c\u0001"+
- "\u0000\u0000\u0000\u050e\u050d\u0001\u0000\u0000\u0000\u050f\u0510\u0001"+
- "\u0000\u0000\u0000\u0510\u050e\u0001\u0000\u0000\u0000\u0510\u0511\u0001"+
- "\u0000\u0000\u0000\u0511\u010e\u0001\u0000\u0000\u0000\u0512\u0513\u0003"+
- "I\u001c\u0000\u0513\u0514\u0001\u0000\u0000\u0000\u0514\u0515\u0006\u007f"+
- "\f\u0000\u0515\u0110\u0001\u0000\u0000\u0000\u0516\u0517\u0003K\u001d"+
- "\u0000\u0517\u0518\u0001\u0000\u0000\u0000\u0518\u0519\u0006\u0080\f\u0000"+
- "\u0519\u0112\u0001\u0000\u0000\u0000\u051a\u051b\u0003M\u001e\u0000\u051b"+
- "\u051c\u0001\u0000\u0000\u0000\u051c\u051d\u0006\u0081\f\u0000\u051d\u0114"+
- "\u0001\u0000\u0000\u0000\u051e\u051f\u0003O\u001f\u0000\u051f\u0520\u0001"+
- "\u0000\u0000\u0000\u0520\u0521\u0006\u0082\u0011\u0000\u0521\u0522\u0006"+
- "\u0082\r\u0000\u0522\u0116\u0001\u0000\u0000\u0000\u0523\u0524\u0003o"+
- "/\u0000\u0524\u0525\u0001\u0000\u0000\u0000\u0525\u0526\u0006\u0083\u0016"+
- "\u0000\u0526\u0118\u0001\u0000\u0000\u0000\u0527\u0528\u0003w3\u0000\u0528"+
- "\u0529\u0001\u0000\u0000\u0000\u0529\u052a\u0006\u0084\u0015\u0000\u052a"+
- "\u011a\u0001\u0000\u0000\u0000\u052b\u052c\u0003{5\u0000\u052c\u052d\u0001"+
- "\u0000\u0000\u0000\u052d\u052e\u0006\u0085\u0019\u0000\u052e\u011c\u0001"+
- "\u0000\u0000\u0000\u052f\u0530\u0003\u0095B\u0000\u0530\u0531\u0001\u0000"+
- "\u0000\u0000\u0531\u0532\u0006\u0086\u001a\u0000\u0532\u011e\u0001\u0000"+
- "\u0000\u0000\u0533\u0534\u0003\u00bfW\u0000\u0534\u0535\u0001\u0000\u0000"+
- "\u0000\u0535\u0536\u0006\u0087\u001b\u0000\u0536\u0120\u0001\u0000\u0000"+
- "\u0000\u0537\u0538\u0003\u00bbU\u0000\u0538\u0539\u0001\u0000\u0000\u0000"+
- "\u0539\u053a\u0006\u0088\u001c\u0000\u053a\u0122\u0001\u0000\u0000\u0000"+
- "\u053b\u053c\u0003\u00c1X\u0000\u053c\u053d\u0001\u0000\u0000\u0000\u053d"+
- "\u053e\u0006\u0089\u001d\u0000\u053e\u0124\u0001\u0000\u0000\u0000\u053f"+
- "\u0540\u0007\u000e\u0000\u0000\u0540\u0541\u0007\n\u0000\u0000\u0541\u0126"+
- "\u0001\u0000\u0000\u0000\u0542\u0543\u0003\u010d~\u0000\u0543\u0544\u0001"+
- "\u0000\u0000\u0000\u0544\u0545\u0006\u008b\u001e\u0000\u0545\u0128\u0001"+
- "\u0000\u0000\u0000\u0546\u0547\u0003I\u001c\u0000\u0547\u0548\u0001\u0000"+
- "\u0000\u0000\u0548\u0549\u0006\u008c\f\u0000\u0549\u012a\u0001\u0000\u0000"+
- "\u0000\u054a\u054b\u0003K\u001d\u0000\u054b\u054c\u0001\u0000\u0000\u0000"+
- "\u054c\u054d\u0006\u008d\f\u0000\u054d\u012c\u0001\u0000\u0000\u0000\u054e"+
- "\u054f\u0003M\u001e\u0000\u054f\u0550\u0001\u0000\u0000\u0000\u0550\u0551"+
- "\u0006\u008e\f\u0000\u0551\u012e\u0001\u0000\u0000\u0000\u0552\u0553\u0003"+
- "O\u001f\u0000\u0553\u0554\u0001\u0000\u0000\u0000\u0554\u0555\u0006\u008f"+
- "\u0011\u0000\u0555\u0556\u0006\u008f\r\u0000\u0556\u0130\u0001\u0000\u0000"+
- "\u0000\u0557\u0558\u0003\u00c3Y\u0000\u0558\u0559\u0001\u0000\u0000\u0000"+
- "\u0559\u055a\u0006\u0090\u000f\u0000\u055a\u055b\u0006\u0090\u001f\u0000"+
- "\u055b\u0132\u0001\u0000\u0000\u0000\u055c\u055d\u0003\u0091@\u0000\u055d"+
- "\u055e\u0001\u0000\u0000\u0000\u055e\u055f\u0006\u0091 \u0000\u055f\u0560"+
- "\u0006\u0091!\u0000\u0560\u0134\u0001\u0000\u0000\u0000\u0561\u0562\u0003"+
- "\u009dF\u0000\u0562\u0563\u0001\u0000\u0000\u0000\u0563\u0564\u0006\u0092"+
- "\"\u0000\u0564\u0565\u0006\u0092!\u0000\u0565\u0136\u0001\u0000\u0000"+
- "\u0000\u0566\u0567\b\"\u0000\u0000\u0567\u0138\u0001\u0000\u0000\u0000"+
- "\u0568\u056a\u0003\u0137\u0093\u0000\u0569\u0568\u0001\u0000\u0000\u0000"+
- "\u056a\u056b\u0001\u0000\u0000\u0000\u056b\u0569\u0001\u0000\u0000\u0000"+
- "\u056b\u056c\u0001\u0000\u0000\u0000\u056c\u056d\u0001\u0000\u0000\u0000"+
- "\u056d\u056e\u0003u2\u0000\u056e\u0570\u0001\u0000\u0000\u0000\u056f\u0569"+
- "\u0001\u0000\u0000\u0000\u056f\u0570\u0001\u0000\u0000\u0000\u0570\u0572"+
- "\u0001\u0000\u0000\u0000\u0571\u0573\u0003\u0137\u0093\u0000\u0572\u0571"+
- "\u0001\u0000\u0000\u0000\u0573\u0574\u0001\u0000\u0000\u0000\u0574\u0572"+
- "\u0001\u0000\u0000\u0000\u0574\u0575\u0001\u0000\u0000\u0000\u0575\u013a"+
- "\u0001\u0000\u0000\u0000\u0576\u0577\u0003\u0139\u0094\u0000\u0577\u0578"+
- "\u0001\u0000\u0000\u0000\u0578\u0579\u0006\u0095#\u0000\u0579\u013c\u0001"+
- "\u0000\u0000\u0000\u057a\u057b\u0003I\u001c\u0000\u057b\u057c\u0001\u0000"+
- "\u0000\u0000\u057c\u057d\u0006\u0096\f\u0000\u057d\u013e\u0001\u0000\u0000"+
- "\u0000\u057e\u057f\u0003K\u001d\u0000\u057f\u0580\u0001\u0000\u0000\u0000"+
- "\u0580\u0581\u0006\u0097\f\u0000\u0581\u0140\u0001\u0000\u0000\u0000\u0582"+
- "\u0583\u0003M\u001e\u0000\u0583\u0584\u0001\u0000\u0000\u0000\u0584\u0585"+
- "\u0006\u0098\f\u0000\u0585\u0142\u0001\u0000\u0000\u0000\u0586\u0587\u0003"+
- "O\u001f\u0000\u0587\u0588\u0001\u0000\u0000\u0000\u0588\u0589\u0006\u0099"+
- "\u0011\u0000\u0589\u058a\u0006\u0099\r\u0000\u058a\u058b\u0006\u0099\r"+
- "\u0000\u058b\u0144\u0001\u0000\u0000\u0000\u058c\u058d\u0003o/\u0000\u058d"+
- "\u058e\u0001\u0000\u0000\u0000\u058e\u058f\u0006\u009a\u0016\u0000\u058f"+
- "\u0146\u0001\u0000\u0000\u0000\u0590\u0591\u0003w3\u0000\u0591\u0592\u0001"+
- "\u0000\u0000\u0000\u0592\u0593\u0006\u009b\u0015\u0000\u0593\u0148\u0001"+
- "\u0000\u0000\u0000\u0594\u0595\u0003{5\u0000\u0595\u0596\u0001\u0000\u0000"+
- "\u0000\u0596\u0597\u0006\u009c\u0019\u0000\u0597\u014a\u0001\u0000\u0000"+
- "\u0000\u0598\u0599\u0003\u009dF\u0000\u0599\u059a\u0001\u0000\u0000\u0000"+
- "\u059a\u059b\u0006\u009d\"\u0000\u059b\u014c\u0001\u0000\u0000\u0000\u059c"+
- "\u059d\u0003\u010d~\u0000\u059d\u059e\u0001\u0000\u0000\u0000\u059e\u059f"+
- "\u0006\u009e\u001e\u0000\u059f\u014e\u0001\u0000\u0000\u0000\u05a0\u05a1"+
- "\u0003\u00cb]\u0000\u05a1\u05a2\u0001\u0000\u0000\u0000\u05a2\u05a3\u0006"+
- "\u009f$\u0000\u05a3\u0150\u0001\u0000\u0000\u0000\u05a4\u05a5\u0003\u0095"+
- "B\u0000\u05a5\u05a6\u0001\u0000\u0000\u0000\u05a6\u05a7\u0006\u00a0\u001a"+
- "\u0000\u05a7\u0152\u0001\u0000\u0000\u0000\u05a8\u05a9\u0003\u00bfW\u0000"+
- "\u05a9\u05aa\u0001\u0000\u0000\u0000\u05aa\u05ab\u0006\u00a1\u001b\u0000"+
- "\u05ab\u0154\u0001\u0000\u0000\u0000\u05ac\u05ad\u0003\u00bbU\u0000\u05ad"+
- "\u05ae\u0001\u0000\u0000\u0000\u05ae\u05af\u0006\u00a2\u001c\u0000\u05af"+
- "\u0156\u0001\u0000\u0000\u0000\u05b0\u05b1\u0003\u00c1X\u0000\u05b1\u05b2"+
- "\u0001\u0000\u0000\u0000\u05b2\u05b3\u0006\u00a3\u001d\u0000\u05b3\u0158"+
- "\u0001\u0000\u0000\u0000\u05b4\u05b5\u0003I\u001c\u0000\u05b5\u05b6\u0001"+
- "\u0000\u0000\u0000\u05b6\u05b7\u0006\u00a4\f\u0000\u05b7\u015a\u0001\u0000"+
- "\u0000\u0000\u05b8\u05b9\u0003K\u001d\u0000\u05b9\u05ba\u0001\u0000\u0000"+
- "\u0000\u05ba\u05bb\u0006\u00a5\f\u0000\u05bb\u015c\u0001\u0000\u0000\u0000"+
- "\u05bc\u05bd\u0003M\u001e\u0000\u05bd\u05be\u0001\u0000\u0000\u0000\u05be"+
- "\u05bf\u0006\u00a6\f\u0000\u05bf\u015e\u0001\u0000\u0000\u0000\u05c0\u05c1"+
- "\u0003O\u001f\u0000\u05c1\u05c2\u0001\u0000\u0000\u0000\u05c2\u05c3\u0006"+
- "\u00a7\u0011\u0000\u05c3\u05c4\u0006\u00a7\r\u0000\u05c4\u0160\u0001\u0000"+
- "\u0000\u0000\u05c5\u05c6\u0003{5\u0000\u05c6\u05c7\u0001\u0000\u0000\u0000"+
- "\u05c7\u05c8\u0006\u00a8\u0019\u0000\u05c8\u0162\u0001\u0000\u0000\u0000"+
- "\u05c9\u05ca\u0003\u0095B\u0000\u05ca\u05cb\u0001\u0000\u0000\u0000\u05cb"+
- "\u05cc\u0006\u00a9\u001a\u0000\u05cc\u0164\u0001\u0000\u0000\u0000\u05cd"+
- "\u05ce\u0003\u00bfW\u0000\u05ce\u05cf\u0001\u0000\u0000\u0000\u05cf\u05d0"+
- "\u0006\u00aa\u001b\u0000\u05d0\u0166\u0001\u0000\u0000\u0000\u05d1\u05d2"+
- "\u0003\u00bbU\u0000\u05d2\u05d3\u0001\u0000\u0000\u0000\u05d3\u05d4\u0006"+
- "\u00ab\u001c\u0000\u05d4\u0168\u0001\u0000\u0000\u0000\u05d5\u05d6\u0003"+
- "\u00c1X\u0000\u05d6\u05d7\u0001\u0000\u0000\u0000\u05d7\u05d8\u0006\u00ac"+
- "\u001d\u0000\u05d8\u016a\u0001\u0000\u0000\u0000\u05d9\u05da\u0003\u00cb"+
- "]\u0000\u05da\u05db\u0001\u0000\u0000\u0000\u05db\u05dc\u0006\u00ad$\u0000"+
- "\u05dc\u016c\u0001\u0000\u0000\u0000\u05dd\u05de\u0003\u00c7[\u0000\u05de"+
- "\u05df\u0001\u0000\u0000\u0000\u05df\u05e0\u0006\u00ae%\u0000\u05e0\u016e"+
- "\u0001\u0000\u0000\u0000\u05e1\u05e2\u0003I\u001c\u0000\u05e2\u05e3\u0001"+
- "\u0000\u0000\u0000\u05e3\u05e4\u0006\u00af\f\u0000\u05e4\u0170\u0001\u0000"+
- "\u0000\u0000\u05e5\u05e6\u0003K\u001d\u0000\u05e6\u05e7\u0001\u0000\u0000"+
- "\u0000\u05e7\u05e8\u0006\u00b0\f\u0000\u05e8\u0172\u0001\u0000\u0000\u0000"+
- "\u05e9\u05ea\u0003M\u001e\u0000\u05ea\u05eb\u0001\u0000\u0000\u0000\u05eb"+
- "\u05ec\u0006\u00b1\f\u0000\u05ec\u0174\u0001\u0000\u0000\u0000\u05ed\u05ee"+
- "\u0003O\u001f\u0000\u05ee\u05ef\u0001\u0000\u0000\u0000\u05ef\u05f0\u0006"+
- "\u00b2\u0011\u0000\u05f0\u05f1\u0006\u00b2\r\u0000\u05f1\u0176\u0001\u0000"+
- "\u0000\u0000\u05f2\u05f3\u0007\u0007\u0000\u0000\u05f3\u05f4\u0007\b\u0000"+
- "\u0000\u05f4\u05f5\u0007\u0010\u0000\u0000\u05f5\u05f6\u0007\u0001\u0000"+
- "\u0000\u05f6\u0178\u0001\u0000\u0000\u0000\u05f7\u05f8\u0003I\u001c\u0000"+
- "\u05f8\u05f9\u0001\u0000\u0000\u0000\u05f9\u05fa\u0006\u00b4\f\u0000\u05fa"+
- "\u017a\u0001\u0000\u0000\u0000\u05fb\u05fc\u0003K\u001d\u0000\u05fc\u05fd"+
- "\u0001\u0000\u0000\u0000\u05fd\u05fe\u0006\u00b5\f\u0000\u05fe\u017c\u0001"+
- "\u0000\u0000\u0000\u05ff\u0600\u0003M\u001e\u0000\u0600\u0601\u0001\u0000"+
- "\u0000\u0000\u0601\u0602\u0006\u00b6\f\u0000\u0602\u017e\u0001\u0000\u0000"+
- "\u0000\u0603\u0604\u0003\u00c5Z\u0000\u0604\u0605\u0001\u0000\u0000\u0000"+
- "\u0605\u0606\u0006\u00b7\u0012\u0000\u0606\u0607\u0006\u00b7\r\u0000\u0607"+
- "\u0180\u0001\u0000\u0000\u0000\u0608\u0609\u0003u2\u0000\u0609\u060a\u0001"+
- "\u0000\u0000\u0000\u060a\u060b\u0006\u00b8\u0013\u0000\u060b\u0182\u0001"+
- "\u0000\u0000\u0000\u060c\u0612\u0003[%\u0000\u060d\u0612\u0003Q \u0000"+
- "\u060e\u0612\u0003{5\u0000\u060f\u0612\u0003S!\u0000\u0610\u0612\u0003"+
- "a(\u0000\u0611\u060c\u0001\u0000\u0000\u0000\u0611\u060d\u0001\u0000\u0000"+
- "\u0000\u0611\u060e\u0001\u0000\u0000\u0000\u0611\u060f\u0001\u0000\u0000"+
- "\u0000\u0611\u0610\u0001\u0000\u0000\u0000\u0612\u0613\u0001\u0000\u0000"+
- "\u0000\u0613\u0611\u0001\u0000\u0000\u0000\u0613\u0614\u0001\u0000\u0000"+
- "\u0000\u0614\u0184\u0001\u0000\u0000\u0000\u0615\u0616\u0003I\u001c\u0000"+
- "\u0616\u0617\u0001\u0000\u0000\u0000\u0617\u0618\u0006\u00ba\f\u0000\u0618"+
- "\u0186\u0001\u0000\u0000\u0000\u0619\u061a\u0003K\u001d\u0000\u061a\u061b"+
- "\u0001\u0000\u0000\u0000\u061b\u061c\u0006\u00bb\f\u0000\u061c\u0188\u0001"+
- "\u0000\u0000\u0000\u061d\u061e\u0003M\u001e\u0000\u061e\u061f\u0001\u0000"+
- "\u0000\u0000\u061f\u0620\u0006\u00bc\f\u0000\u0620\u018a\u0001\u0000\u0000"+
- "\u0000\u0621\u0622\u0003O\u001f\u0000\u0622\u0623\u0001\u0000\u0000\u0000"+
- "\u0623\u0624\u0006\u00bd\u0011\u0000\u0624\u0625\u0006\u00bd\r\u0000\u0625"+
- "\u018c\u0001\u0000\u0000\u0000\u0626\u0627\u0003u2\u0000\u0627\u0628\u0001"+
- "\u0000\u0000\u0000\u0628\u0629\u0006\u00be\u0013\u0000\u0629\u018e\u0001"+
- "\u0000\u0000\u0000\u062a\u062b\u0003w3\u0000\u062b\u062c\u0001\u0000\u0000"+
- "\u0000\u062c\u062d\u0006\u00bf\u0015\u0000\u062d\u0190\u0001\u0000\u0000"+
- "\u0000\u062e\u062f\u0003{5\u0000\u062f\u0630\u0001\u0000\u0000\u0000\u0630"+
- "\u0631\u0006\u00c0\u0019\u0000\u0631\u0192\u0001\u0000\u0000\u0000\u0632"+
- "\u0633\u0003\u0091@\u0000\u0633\u0634\u0001\u0000\u0000\u0000\u0634\u0635"+
- "\u0006\u00c1 \u0000\u0635\u0636\u0006\u00c1&\u0000\u0636\u0194\u0001\u0000"+
- "\u0000\u0000\u0637\u0638\u0003\u00efo\u0000\u0638\u0639\u0001\u0000\u0000"+
- "\u0000\u0639\u063a\u0006\u00c2\u0017\u0000\u063a\u0196\u0001\u0000\u0000"+
- "\u0000\u063b\u063c\u0003e*\u0000\u063c\u063d\u0001\u0000\u0000\u0000\u063d"+
- "\u063e\u0006\u00c3\u0018\u0000\u063e\u0198\u0001\u0000\u0000\u0000\u063f"+
- "\u0640\u0003I\u001c\u0000\u0640\u0641\u0001\u0000\u0000\u0000\u0641\u0642"+
- "\u0006\u00c4\f\u0000\u0642\u019a\u0001\u0000\u0000\u0000\u0643\u0644\u0003"+
- "K\u001d\u0000\u0644\u0645\u0001\u0000\u0000\u0000\u0645\u0646\u0006\u00c5"+
- "\f\u0000\u0646\u019c\u0001\u0000\u0000\u0000\u0647\u0648\u0003M\u001e"+
- "\u0000\u0648\u0649\u0001\u0000\u0000\u0000\u0649\u064a\u0006\u00c6\f\u0000"+
- "\u064a\u019e\u0001\u0000\u0000\u0000\u064b\u064c\u0003O\u001f\u0000\u064c"+
- "\u064d\u0001\u0000\u0000\u0000\u064d\u064e\u0006\u00c7\u0011\u0000\u064e"+
- "\u064f\u0006\u00c7\r\u0000\u064f\u0650\u0006\u00c7\r\u0000\u0650\u01a0"+
- "\u0001\u0000\u0000\u0000\u0651\u0652\u0003w3\u0000\u0652\u0653\u0001\u0000"+
- "\u0000\u0000\u0653\u0654\u0006\u00c8\u0015\u0000\u0654\u01a2\u0001\u0000"+
- "\u0000\u0000\u0655\u0656\u0003{5\u0000\u0656\u0657\u0001\u0000\u0000\u0000"+
- "\u0657\u0658\u0006\u00c9\u0019\u0000\u0658\u01a4\u0001\u0000\u0000\u0000"+
- "\u0659\u065a\u0003\u010d~\u0000\u065a\u065b\u0001\u0000\u0000\u0000\u065b"+
- "\u065c\u0006\u00ca\u001e\u0000\u065c\u01a6\u0001\u0000\u0000\u0000\u065d"+
- "\u065e\u0003I\u001c\u0000\u065e\u065f\u0001\u0000\u0000\u0000\u065f\u0660"+
- "\u0006\u00cb\f\u0000\u0660\u01a8\u0001\u0000\u0000\u0000\u0661\u0662\u0003"+
- "K\u001d\u0000\u0662\u0663\u0001\u0000\u0000\u0000\u0663\u0664\u0006\u00cc"+
- "\f\u0000\u0664\u01aa\u0001\u0000\u0000\u0000\u0665\u0666\u0003M\u001e"+
- "\u0000\u0666\u0667\u0001\u0000\u0000\u0000\u0667\u0668\u0006\u00cd\f\u0000"+
- "\u0668\u01ac\u0001\u0000\u0000\u0000\u0669\u066a\u0003O\u001f\u0000\u066a"+
- "\u066b\u0001\u0000\u0000\u0000\u066b\u066c\u0006\u00ce\u0011\u0000\u066c"+
- "\u066d\u0006\u00ce\r\u0000\u066d\u01ae\u0001\u0000\u0000\u0000\u066e\u066f"+
- "\u0007#\u0000\u0000\u066f\u0670\u0007\u0001\u0000\u0000\u0670\u0671\u0007"+
- "\u0007\u0000\u0000\u0671\u0672\u0007\b\u0000\u0000\u0672\u01b0\u0001\u0000"+
- "\u0000\u0000\u0673\u0674\u0003\u0125\u008a\u0000\u0674\u0675\u0001\u0000"+
- "\u0000\u0000\u0675\u0676\u0006\u00d0\'\u0000\u0676\u01b2\u0001\u0000\u0000"+
- "\u0000\u0677\u0678\u0003\u0091@\u0000\u0678\u0679\u0001\u0000\u0000\u0000"+
- "\u0679\u067a\u0006\u00d1 \u0000\u067a\u067b\u0006\u00d1\r\u0000\u067b"+
- "\u067c\u0006\u00d1\u0000\u0000\u067c\u01b4\u0001\u0000\u0000\u0000\u067d"+
- "\u067e\u0007\u0014\u0000\u0000\u067e\u067f\u0007\n\u0000\u0000\u067f\u0680"+
- "\u0007\u0007\u0000\u0000\u0680\u0681\u0007\b\u0000\u0000\u0681\u0682\u0007"+
- "\u0011\u0000\u0000\u0682\u0683\u0001\u0000\u0000\u0000\u0683\u0684\u0006"+
- "\u00d2\r\u0000\u0684\u0685\u0006\u00d2\u0000\u0000\u0685\u01b6\u0001\u0000"+
- "\u0000\u0000\u0686\u0687\u0003\u00efo\u0000\u0687\u0688\u0001\u0000\u0000"+
- "\u0000\u0688\u0689\u0006\u00d3\u0017\u0000\u0689\u01b8\u0001\u0000\u0000"+
- "\u0000\u068a\u068b\u0003e*\u0000\u068b\u068c\u0001\u0000\u0000\u0000\u068c"+
- "\u068d\u0006\u00d4\u0018\u0000\u068d\u01ba\u0001\u0000\u0000\u0000\u068e"+
- "\u068f\u0003u2\u0000\u068f\u0690\u0001\u0000\u0000\u0000\u0690\u0691\u0006"+
- "\u00d5\u0013\u0000\u0691\u01bc\u0001\u0000\u0000\u0000\u0692\u0693\u0003"+
- "\u00c7[\u0000\u0693\u0694\u0001\u0000\u0000\u0000\u0694\u0695\u0006\u00d6"+
- "%\u0000\u0695\u01be\u0001\u0000\u0000\u0000\u0696\u0697\u0003\u00cb]\u0000"+
- "\u0697\u0698\u0001\u0000\u0000\u0000\u0698\u0699\u0006\u00d7$\u0000\u0699"+
- "\u01c0\u0001\u0000\u0000\u0000\u069a\u069b\u0003I\u001c\u0000\u069b\u069c"+
- "\u0001\u0000\u0000\u0000\u069c\u069d\u0006\u00d8\f\u0000\u069d\u01c2\u0001"+
- "\u0000\u0000\u0000\u069e\u069f\u0003K\u001d\u0000\u069f\u06a0\u0001\u0000"+
- "\u0000\u0000\u06a0\u06a1\u0006\u00d9\f\u0000\u06a1\u01c4\u0001\u0000\u0000"+
- "\u0000\u06a2\u06a3\u0003M\u001e\u0000\u06a3\u06a4\u0001\u0000\u0000\u0000"+
- "\u06a4\u06a5\u0006\u00da\f\u0000\u06a5\u01c6\u0001\u0000\u0000\u0000\u06a6"+
- "\u06a7\u0003O\u001f\u0000\u06a7\u06a8\u0001\u0000\u0000\u0000\u06a8\u06a9"+
- "\u0006\u00db\u0011\u0000\u06a9\u06aa\u0006\u00db\r\u0000\u06aa\u01c8\u0001"+
- "\u0000\u0000\u0000\u06ab\u06ac\u0003\u00efo\u0000\u06ac\u06ad\u0001\u0000"+
- "\u0000\u0000\u06ad\u06ae\u0006\u00dc\u0017\u0000\u06ae\u06af\u0006\u00dc"+
- "\r\u0000\u06af\u06b0\u0006\u00dc(\u0000\u06b0\u01ca\u0001\u0000\u0000"+
- "\u0000\u06b1\u06b2\u0003e*\u0000\u06b2\u06b3\u0001\u0000\u0000\u0000\u06b3"+
- "\u06b4\u0006\u00dd\u0018\u0000\u06b4\u06b5\u0006\u00dd\r\u0000\u06b5\u06b6"+
- "\u0006\u00dd(\u0000\u06b6\u01cc\u0001\u0000\u0000\u0000\u06b7\u06b8\u0003"+
- "I\u001c\u0000\u06b8\u06b9\u0001\u0000\u0000\u0000\u06b9\u06ba\u0006\u00de"+
- "\f\u0000\u06ba\u01ce\u0001\u0000\u0000\u0000\u06bb\u06bc\u0003K\u001d"+
- "\u0000\u06bc\u06bd\u0001\u0000\u0000\u0000\u06bd\u06be\u0006\u00df\f\u0000"+
- "\u06be\u01d0\u0001\u0000\u0000\u0000\u06bf\u06c0\u0003M\u001e\u0000\u06c0"+
- "\u06c1\u0001\u0000\u0000\u0000\u06c1\u06c2\u0006\u00e0\f\u0000\u06c2\u01d2"+
- "\u0001\u0000\u0000\u0000\u06c3\u06c4\u0003u2\u0000\u06c4\u06c5\u0001\u0000"+
- "\u0000\u0000\u06c5\u06c6\u0006\u00e1\u0013\u0000\u06c6\u06c7\u0006\u00e1"+
- "\r\u0000\u06c7\u06c8\u0006\u00e1\u000b\u0000\u06c8\u01d4\u0001\u0000\u0000"+
- "\u0000\u06c9\u06ca\u0003s1\u0000\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb"+
- "\u06cc\u0006\u00e2\u0014\u0000\u06cc\u06cd\u0006\u00e2\r\u0000\u06cd\u06ce"+
- "\u0006\u00e2\u000b\u0000\u06ce\u01d6\u0001\u0000\u0000\u0000\u06cf\u06d0"+
- "\u0003w3\u0000\u06d0\u06d1\u0001\u0000\u0000\u0000\u06d1\u06d2\u0006\u00e3"+
- "\u0015\u0000\u06d2\u06d3\u0006\u00e3\r\u0000\u06d3\u06d4\u0006\u00e3\u000b"+
- "\u0000\u06d4\u01d8\u0001\u0000\u0000\u0000\u06d5\u06d6\u0003I\u001c\u0000"+
- "\u06d6\u06d7\u0001\u0000\u0000\u0000\u06d7\u06d8\u0006\u00e4\f\u0000\u06d8"+
- "\u01da\u0001\u0000\u0000\u0000\u06d9\u06da\u0003K\u001d\u0000\u06da\u06db"+
- "\u0001\u0000\u0000\u0000\u06db\u06dc\u0006\u00e5\f\u0000\u06dc\u01dc\u0001"+
- "\u0000\u0000\u0000\u06dd\u06de\u0003M\u001e\u0000\u06de\u06df\u0001\u0000"+
- "\u0000\u0000\u06df\u06e0\u0006\u00e6\f\u0000\u06e0\u01de\u0001\u0000\u0000"+
- "\u0000\u06e1\u06e2\u0003\u00cb]\u0000\u06e2\u06e3\u0001\u0000\u0000\u0000"+
- "\u06e3\u06e4\u0006\u00e7\r\u0000\u06e4\u06e5\u0006\u00e7\u0000\u0000\u06e5"+
- "\u06e6\u0006\u00e7$\u0000\u06e6\u01e0\u0001\u0000\u0000\u0000\u06e7\u06e8"+
- "\u0003\u00c7[\u0000\u06e8\u06e9\u0001\u0000\u0000\u0000\u06e9\u06ea\u0006"+
- "\u00e8\r\u0000\u06ea\u06eb\u0006\u00e8\u0000\u0000\u06eb\u06ec\u0006\u00e8"+
- "%\u0000\u06ec\u01e2\u0001\u0000\u0000\u0000\u06ed\u06ee\u0003q0\u0000"+
- "\u06ee\u06ef\u0001\u0000\u0000\u0000\u06ef\u06f0\u0006\u00e9\r\u0000\u06f0"+
- "\u06f1\u0006\u00e9\u0000\u0000\u06f1\u06f2\u0006\u00e9)\u0000\u06f2\u01e4"+
- "\u0001\u0000\u0000\u0000\u06f3\u06f4\u0003O\u001f\u0000\u06f4\u06f5\u0001"+
- "\u0000\u0000\u0000\u06f5\u06f6\u0006\u00ea\u0011\u0000\u06f6\u06f7\u0006"+
- "\u00ea\r\u0000\u06f7\u01e6\u0001\u0000\u0000\u0000\u06f8\u06f9\u0003O"+
- "\u001f\u0000\u06f9\u06fa\u0001\u0000\u0000\u0000\u06fa\u06fb\u0006\u00eb"+
- "\u0011\u0000\u06fb\u06fc\u0006\u00eb\r\u0000\u06fc\u01e8\u0001\u0000\u0000"+
- "\u0000\u06fd\u06fe\u0003\u0091@\u0000\u06fe\u06ff\u0001\u0000\u0000\u0000"+
- "\u06ff\u0700\u0006\u00ec \u0000\u0700\u01ea\u0001\u0000\u0000\u0000\u0701"+
- "\u0702\u0003\u0125\u008a\u0000\u0702\u0703\u0001\u0000\u0000\u0000\u0703"+
- "\u0704\u0006\u00ed\'\u0000\u0704\u01ec\u0001\u0000\u0000\u0000\u0705\u0706"+
- "\u0003{5\u0000\u0706\u0707\u0001\u0000\u0000\u0000\u0707\u0708\u0006\u00ee"+
- "\u0019\u0000\u0708\u01ee\u0001\u0000\u0000\u0000\u0709\u070a\u0003w3\u0000"+
- "\u070a\u070b\u0001\u0000\u0000\u0000\u070b\u070c\u0006\u00ef\u0015\u0000"+
- "\u070c\u01f0\u0001\u0000\u0000\u0000\u070d\u070e\u0003\u00cb]\u0000\u070e"+
- "\u070f\u0001\u0000\u0000\u0000\u070f\u0710\u0006\u00f0$\u0000\u0710\u01f2"+
- "\u0001\u0000\u0000\u0000\u0711\u0712\u0003\u00c7[\u0000\u0712\u0713\u0001"+
- "\u0000\u0000\u0000\u0713\u0714\u0006\u00f1%\u0000\u0714\u01f4\u0001\u0000"+
- "\u0000\u0000\u0715\u0716\u0003I\u001c\u0000\u0716\u0717\u0001\u0000\u0000"+
- "\u0000\u0717\u0718\u0006\u00f2\f\u0000\u0718\u01f6\u0001\u0000\u0000\u0000"+
- "\u0719\u071a\u0003K\u001d\u0000\u071a\u071b\u0001\u0000\u0000\u0000\u071b"+
- "\u071c\u0006\u00f3\f\u0000\u071c\u01f8\u0001\u0000\u0000\u0000\u071d\u071e"+
- "\u0003M\u001e\u0000\u071e\u071f\u0001\u0000\u0000\u0000\u071f\u0720\u0006"+
- "\u00f4\f\u0000\u0720\u01fa\u0001\u0000\u0000\u0000G\u0000\u0001\u0002"+
- "\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u02f7"+
- "\u0301\u0305\u0308\u0311\u0313\u031e\u0331\u0336\u033f\u0346\u034b\u034d"+
- "\u0358\u0360\u0363\u0365\u036a\u036f\u0375\u037c\u0381\u0387\u038a\u0392"+
- "\u0396\u0425\u042a\u0431\u0433\u0438\u043d\u0444\u0446\u0456\u045b\u0460"+
- "\u0462\u0468\u04b9\u04be\u04f5\u04f9\u04fe\u0503\u0508\u050a\u050e\u0510"+
- "\u056b\u056f\u0574\u0611\u0613*\u0005\u0001\u0000\u0005\u0004\u0000\u0005"+
+ "\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e"+
+ "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+
+ "\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f"+
+ "\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010"+
+ "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011"+
+ "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012"+
+ "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+
+ "\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014"+
+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
+ "\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+
+ "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+
+ "\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
+ "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
+ "\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+
+ "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018"+
+ "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+
+ "\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+
+ "\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a"+
+ "\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+
+ "\u0001\u001b\u0004\u001b\u02f5\b\u001b\u000b\u001b\f\u001b\u02f6\u0001"+
+ "\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005"+
+ "\u001c\u02ff\b\u001c\n\u001c\f\u001c\u0302\t\u001c\u0001\u001c\u0003\u001c"+
+ "\u0305\b\u001c\u0001\u001c\u0003\u001c\u0308\b\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0005"+
+ "\u001d\u0311\b\u001d\n\u001d\f\u001d\u0314\t\u001d\u0001\u001d\u0001\u001d"+
+ "\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0004\u001e\u031c\b\u001e"+
+ "\u000b\u001e\f\u001e\u031d\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f"+
+ "\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0001!\u0001\"\u0001\"\u0001"+
+ "\"\u0001#\u0001#\u0001$\u0001$\u0003$\u0331\b$\u0001$\u0004$\u0334\b$"+
+ "\u000b$\f$\u0335\u0001%\u0001%\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0003"+
+ "\'\u033f\b\'\u0001(\u0001(\u0001)\u0001)\u0001)\u0003)\u0346\b)\u0001"+
+ "*\u0001*\u0001*\u0005*\u034b\b*\n*\f*\u034e\t*\u0001*\u0001*\u0001*\u0001"+
+ "*\u0001*\u0001*\u0005*\u0356\b*\n*\f*\u0359\t*\u0001*\u0001*\u0001*\u0001"+
+ "*\u0001*\u0003*\u0360\b*\u0001*\u0003*\u0363\b*\u0003*\u0365\b*\u0001"+
+ "+\u0004+\u0368\b+\u000b+\f+\u0369\u0001,\u0004,\u036d\b,\u000b,\f,\u036e"+
+ "\u0001,\u0001,\u0005,\u0373\b,\n,\f,\u0376\t,\u0001,\u0001,\u0004,\u037a"+
+ "\b,\u000b,\f,\u037b\u0001,\u0004,\u037f\b,\u000b,\f,\u0380\u0001,\u0001"+
+ ",\u0005,\u0385\b,\n,\f,\u0388\t,\u0003,\u038a\b,\u0001,\u0001,\u0001,"+
+ "\u0001,\u0004,\u0390\b,\u000b,\f,\u0391\u0001,\u0001,\u0003,\u0396\b,"+
+ "\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001.\u0001/\u0001"+
+ "/\u00010\u00010\u00010\u00011\u00011\u00011\u00012\u00012\u00013\u0001"+
+ "3\u00014\u00014\u00014\u00014\u00014\u00015\u00015\u00016\u00016\u0001"+
+ "6\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u00017\u00017\u0001"+
+ "8\u00018\u00018\u00019\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0001"+
+ ":\u0001;\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001"+
+ "=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001"+
+ "?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001B\u0001"+
+ "B\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001E\u0001"+
+ "E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001F\u0001G\u0001"+
+ "G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001I\u0001I\u0001J\u0001J\u0001"+
+ "K\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001M\u0001N\u0001N\u0001"+
+ "O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001R\u0001S\u0001S\u0001"+
+ "T\u0001T\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0001V\u0001W\u0001"+
+ "W\u0001W\u0003W\u0425\bW\u0001W\u0005W\u0428\bW\nW\fW\u042b\tW\u0001W"+
+ "\u0001W\u0004W\u042f\bW\u000bW\fW\u0430\u0003W\u0433\bW\u0001X\u0001X"+
+ "\u0001X\u0003X\u0438\bX\u0001X\u0005X\u043b\bX\nX\fX\u043e\tX\u0001X\u0001"+
+ "X\u0004X\u0442\bX\u000bX\fX\u0443\u0003X\u0446\bX\u0001Y\u0001Y\u0001"+
+ "Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0005"+
+ "[\u0454\b[\n[\f[\u0457\t[\u0001[\u0001[\u0003[\u045b\b[\u0001[\u0004["+
+ "\u045e\b[\u000b[\f[\u045f\u0003[\u0462\b[\u0001\\\u0001\\\u0004\\\u0466"+
+ "\b\\\u000b\\\f\\\u0467\u0001\\\u0001\\\u0001]\u0001]\u0001^\u0001^\u0001"+
+ "^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001"+
+ "a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001b\u0001"+
+ "c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001"+
+ "e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001"+
+ "g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001j\u0001"+
+ "j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+
+ "l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001"+
+ "n\u0001n\u0001n\u0003n\u04b9\bn\u0001o\u0004o\u04bc\bo\u000bo\fo\u04bd"+
+ "\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0001r\u0001"+
+ "r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001"+
+ "t\u0001u\u0001u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001v\u0001"+
+ "w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001"+
+ "y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001{\u0001"+
+ "|\u0001|\u0001|\u0001|\u0003|\u04f5\b|\u0001}\u0001}\u0003}\u04f9\b}\u0001"+
+ "}\u0005}\u04fc\b}\n}\f}\u04ff\t}\u0001}\u0001}\u0003}\u0503\b}\u0001}"+
+ "\u0004}\u0506\b}\u000b}\f}\u0507\u0003}\u050a\b}\u0001~\u0001~\u0004~"+
+ "\u050e\b~\u000b~\f~\u050f\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u007f"+
+ "\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081"+
+ "\u0001\u0081\u0001\u0081\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0082"+
+ "\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0084"+
+ "\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0085\u0001\u0085\u0001\u0085"+
+ "\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0087"+
+ "\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088\u0001\u0088\u0001\u0088"+
+ "\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u008a"+
+ "\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b"+
+ "\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008d\u0001\u008d"+
+ "\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e"+
+ "\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u0090"+
+ "\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0091\u0001\u0091"+
+ "\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0092\u0001\u0092\u0001\u0092"+
+ "\u0001\u0092\u0001\u0092\u0001\u0093\u0001\u0093\u0001\u0094\u0004\u0094"+
+ "\u0569\b\u0094\u000b\u0094\f\u0094\u056a\u0001\u0094\u0001\u0094\u0003"+
+ "\u0094\u056f\b\u0094\u0001\u0094\u0004\u0094\u0572\b\u0094\u000b\u0094"+
+ "\f\u0094\u0573\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0096"+
+ "\u0001\u0096\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001\u0097"+
+ "\u0001\u0097\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0099"+
+ "\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u009a"+
+ "\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b\u0001\u009b\u0001\u009b"+
+ "\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009d"+
+ "\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0001\u009e\u0001\u009e"+
+ "\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u00a0"+
+ "\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001\u00a1\u0001\u00a1"+
+ "\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a3"+
+ "\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4"+
+ "\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a6"+
+ "\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a7\u0001\u00a7\u0001\u00a7"+
+ "\u0001\u00a7\u0001\u00a7\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a8"+
+ "\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00aa\u0001\u00aa"+
+ "\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab"+
+ "\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ad\u0001\u00ad"+
+ "\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001\u00ae\u0001\u00ae"+
+ "\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00b0\u0001\u00b0"+
+ "\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1"+
+ "\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b3"+
+ "\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b4\u0001\u00b4"+
+ "\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b5"+
+ "\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7"+
+ "\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8\u0001\u00b8\u0001\u00b8"+
+ "\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9"+
+ "\u0004\u00b9\u0611\b\u00b9\u000b\u00b9\f\u00b9\u0612\u0001\u00ba\u0001"+
+ "\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00bb\u0001\u00bb\u0001\u00bb\u0001"+
+ "\u00bb\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bd\u0001"+
+ "\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00be\u0001\u00be\u0001"+
+ "\u00be\u0001\u00be\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001"+
+ "\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c1\u0001\u00c1\u0001"+
+ "\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001"+
+ "\u00c2\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c4\u0001"+
+ "\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001"+
+ "\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001\u00c7\u0001"+
+ "\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c8\u0001"+
+ "\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c9\u0001\u00c9\u0001\u00c9\u0001"+
+ "\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00cb\u0001"+
+ "\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001"+
+ "\u00cc\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00ce\u0001"+
+ "\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00cf\u0001\u00cf\u0001"+
+ "\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001"+
+ "\u00d0\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001"+
+ "\u00d1\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+
+ "\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d3\u0001\u00d3\u0001"+
+ "\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001"+
+ "\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d6\u0001\u00d6\u0001"+
+ "\u00d6\u0001\u00d6\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001"+
+ "\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d9\u0001\u00d9\u0001"+
+ "\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da\u0001\u00da\u0001\u00da\u0001"+
+ "\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00dc\u0001"+
+ "\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001"+
+ "\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00de\u0001"+
+ "\u00de\u0001\u00de\u0001\u00de\u0001\u00df\u0001\u00df\u0001\u00df\u0001"+
+ "\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e1\u0001"+
+ "\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e2\u0001"+
+ "\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e3\u0001"+
+ "\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e4\u0001"+
+ "\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001"+
+ "\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7\u0001"+
+ "\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e8\u0001"+
+ "\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e9\u0001"+
+ "\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00ea\u0001"+
+ "\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00eb\u0001\u00eb\u0001"+
+ "\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001"+
+ "\u00ec\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ee\u0001"+
+ "\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001"+
+ "\u00ef\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f1\u0001"+
+ "\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f2\u0001\u00f2\u0001\u00f2\u0001"+
+ "\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f4\u0001"+
+ "\u00f4\u0001\u00f4\u0001\u00f4\u0002\u0312\u0357\u0000\u00f5\u0011\u0001"+
+ "\u0013\u0002\u0015\u0003\u0017\u0004\u0019\u0005\u001b\u0006\u001d\u0007"+
+ "\u001f\b!\t#\n%\u000b\'\f)\r+\u000e-\u000f/\u00101\u00113\u00125\u0013"+
+ "7\u00149\u0015;\u0016=\u0017?\u0018A\u0019C\u001aE\u001bG\u001cI\u001d"+
+ "K\u001eM\u001fO Q\u0000S\u0000U\u0000W\u0000Y\u0000[\u0000]\u0000_\u0000"+
+ "a\u0000c\u0000e!g\"i#k$m%o&q\'s(u)w*y+{,}-\u007f.\u0081/\u00830\u0085"+
+ "1\u00872\u00893\u008b4\u008d5\u008f6\u00917\u00938\u00959\u0097:\u0099"+
+ ";\u009b<\u009d=\u009f>\u00a1?\u00a3@\u00a5A\u00a7B\u00a9C\u00abD\u00ad"+
+ "E\u00afF\u00b1G\u00b3H\u00b5I\u00b7J\u00b9K\u00bbL\u00bd\u0000\u00bfM"+
+ "\u00c1N\u00c3O\u00c5P\u00c7Q\u00c9\u0000\u00cbR\u00cdS\u00cfT\u00d1U\u00d3"+
+ "\u0000\u00d5\u0000\u00d7V\u00d9W\u00dbX\u00dd\u0000\u00df\u0000\u00e1"+
+ "\u0000\u00e3\u0000\u00e5\u0000\u00e7\u0000\u00e9\u0000\u00ebY\u00ed\u0000"+
+ "\u00efZ\u00f1\u0000\u00f3\u0000\u00f5[\u00f7\\\u00f9]\u00fb\u0000\u00fd"+
+ "\u0000\u00ff\u0000\u0101\u0000\u0103\u0000\u0105\u0000\u0107\u0000\u0109"+
+ "\u0000\u010b\u0000\u010d^\u010f_\u0111`\u0113a\u0115\u0000\u0117\u0000"+
+ "\u0119\u0000\u011b\u0000\u011d\u0000\u011f\u0000\u0121\u0000\u0123\u0000"+
+ "\u0125b\u0127\u0000\u0129c\u012bd\u012de\u012f\u0000\u0131\u0000\u0133"+
+ "\u0000\u0135\u0000\u0137\u0000\u0139f\u013b\u0000\u013dg\u013fh\u0141"+
+ "i\u0143\u0000\u0145\u0000\u0147\u0000\u0149\u0000\u014b\u0000\u014d\u0000"+
+ "\u014f\u0000\u0151\u0000\u0153\u0000\u0155\u0000\u0157\u0000\u0159j\u015b"+
+ "k\u015dl\u015f\u0000\u0161\u0000\u0163\u0000\u0165\u0000\u0167\u0000\u0169"+
+ "\u0000\u016b\u0000\u016d\u0000\u016fm\u0171n\u0173o\u0175\u0000\u0177"+
+ "p\u0179q\u017br\u017ds\u017f\u0000\u0181\u0000\u0183t\u0185u\u0187v\u0189"+
+ "w\u018b\u0000\u018d\u0000\u018f\u0000\u0191\u0000\u0193\u0000\u0195\u0000"+
+ "\u0197\u0000\u0199x\u019by\u019dz\u019f\u0000\u01a1\u0000\u01a3\u0000"+
+ "\u01a5\u0000\u01a7{\u01a9|\u01ab}\u01ad\u0000\u01af~\u01b1\u0000\u01b3"+
+ "\u0000\u01b5\u007f\u01b7\u0000\u01b9\u0000\u01bb\u0000\u01bd\u0000\u01bf"+
+ "\u0000\u01c1\u0080\u01c3\u0081\u01c5\u0082\u01c7\u0000\u01c9\u0000\u01cb"+
+ "\u0000\u01cd\u0083\u01cf\u0084\u01d1\u0085\u01d3\u0000\u01d5\u0000\u01d7"+
+ "\u0000\u01d9\u0086\u01db\u0087\u01dd\u0088\u01df\u0000\u01e1\u0000\u01e3"+
+ "\u0000\u01e5\u0000\u01e7\u0000\u01e9\u0000\u01eb\u0000\u01ed\u0000\u01ef"+
+ "\u0000\u01f1\u0000\u01f3\u0000\u01f5\u0089\u01f7\u008a\u01f9\u008b\u0011"+
+ "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e"+
+ "\u000f\u0010$\u0002\u0000CCcc\u0002\u0000OOoo\u0002\u0000MMmm\u0002\u0000"+
+ "PPpp\u0002\u0000LLll\u0002\u0000EEee\u0002\u0000TTtt\u0002\u0000IIii\u0002"+
+ "\u0000NNnn\u0002\u0000DDdd\u0002\u0000SSss\u0002\u0000RRrr\u0002\u0000"+
+ "HHhh\u0002\u0000VVvv\u0002\u0000AAaa\u0002\u0000XXxx\u0002\u0000FFff\u0002"+
+ "\u0000GGgg\u0002\u0000KKkk\u0002\u0000WWww\u0002\u0000UUuu\u0006\u0000"+
+ "\t\n\r\r //[[]]\u0002\u0000\n\n\r\r\u0003\u0000\t\n\r\r \u0001\u0000"+
+ "09\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004\u0000\n\n\r\r\"\""+
+ "\\\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002\u0000YYyy\u000b"+
+ "\u0000\t\n\r\r \"\",,//::==[[]]||\u0002\u0000**//\u000b\u0000\t\n\r\r"+
+ " \"#,,//::<<>?\\\\||\u0002\u0000JJjj\u073e\u0000\u0011\u0001\u0000\u0000"+
+ "\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000"+
+ "\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000"+
+ "\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000"+
+ "\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000"+
+ "\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'"+
+ "\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000"+
+ "\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000"+
+ "\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005"+
+ "\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000"+
+ "\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000"+
+ "\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C"+
+ "\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000"+
+ "\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000"+
+ "\u0000M\u0001\u0000\u0000\u0000\u0001O\u0001\u0000\u0000\u0000\u0001e"+
+ "\u0001\u0000\u0000\u0000\u0001g\u0001\u0000\u0000\u0000\u0001i\u0001\u0000"+
+ "\u0000\u0000\u0001k\u0001\u0000\u0000\u0000\u0001m\u0001\u0000\u0000\u0000"+
+ "\u0001o\u0001\u0000\u0000\u0000\u0001q\u0001\u0000\u0000\u0000\u0001s"+
+ "\u0001\u0000\u0000\u0000\u0001u\u0001\u0000\u0000\u0000\u0001w\u0001\u0000"+
+ "\u0000\u0000\u0001y\u0001\u0000\u0000\u0000\u0001{\u0001\u0000\u0000\u0000"+
+ "\u0001}\u0001\u0000\u0000\u0000\u0001\u007f\u0001\u0000\u0000\u0000\u0001"+
+ "\u0081\u0001\u0000\u0000\u0000\u0001\u0083\u0001\u0000\u0000\u0000\u0001"+
+ "\u0085\u0001\u0000\u0000\u0000\u0001\u0087\u0001\u0000\u0000\u0000\u0001"+
+ "\u0089\u0001\u0000\u0000\u0000\u0001\u008b\u0001\u0000\u0000\u0000\u0001"+
+ "\u008d\u0001\u0000\u0000\u0000\u0001\u008f\u0001\u0000\u0000\u0000\u0001"+
+ "\u0091\u0001\u0000\u0000\u0000\u0001\u0093\u0001\u0000\u0000\u0000\u0001"+
+ "\u0095\u0001\u0000\u0000\u0000\u0001\u0097\u0001\u0000\u0000\u0000\u0001"+
+ "\u0099\u0001\u0000\u0000\u0000\u0001\u009b\u0001\u0000\u0000\u0000\u0001"+
+ "\u009d\u0001\u0000\u0000\u0000\u0001\u009f\u0001\u0000\u0000\u0000\u0001"+
+ "\u00a1\u0001\u0000\u0000\u0000\u0001\u00a3\u0001\u0000\u0000\u0000\u0001"+
+ "\u00a5\u0001\u0000\u0000\u0000\u0001\u00a7\u0001\u0000\u0000\u0000\u0001"+
+ "\u00a9\u0001\u0000\u0000\u0000\u0001\u00ab\u0001\u0000\u0000\u0000\u0001"+
+ "\u00ad\u0001\u0000\u0000\u0000\u0001\u00af\u0001\u0000\u0000\u0000\u0001"+
+ "\u00b1\u0001\u0000\u0000\u0000\u0001\u00b3\u0001\u0000\u0000\u0000\u0001"+
+ "\u00b5\u0001\u0000\u0000\u0000\u0001\u00b7\u0001\u0000\u0000\u0000\u0001"+
+ "\u00b9\u0001\u0000\u0000\u0000\u0001\u00bb\u0001\u0000\u0000\u0000\u0001"+
+ "\u00bd\u0001\u0000\u0000\u0000\u0001\u00bf\u0001\u0000\u0000\u0000\u0001"+
+ "\u00c1\u0001\u0000\u0000\u0000\u0001\u00c3\u0001\u0000\u0000\u0000\u0001"+
+ "\u00c5\u0001\u0000\u0000\u0000\u0001\u00c7\u0001\u0000\u0000\u0000\u0001"+
+ "\u00cb\u0001\u0000\u0000\u0000\u0001\u00cd\u0001\u0000\u0000\u0000\u0001"+
+ "\u00cf\u0001\u0000\u0000\u0000\u0001\u00d1\u0001\u0000\u0000\u0000\u0002"+
+ "\u00d3\u0001\u0000\u0000\u0000\u0002\u00d5\u0001\u0000\u0000\u0000\u0002"+
+ "\u00d7\u0001\u0000\u0000\u0000\u0002\u00d9\u0001\u0000\u0000\u0000\u0002"+
+ "\u00db\u0001\u0000\u0000\u0000\u0003\u00dd\u0001\u0000\u0000\u0000\u0003"+
+ "\u00df\u0001\u0000\u0000\u0000\u0003\u00e1\u0001\u0000\u0000\u0000\u0003"+
+ "\u00e3\u0001\u0000\u0000\u0000\u0003\u00e5\u0001\u0000\u0000\u0000\u0003"+
+ "\u00e7\u0001\u0000\u0000\u0000\u0003\u00e9\u0001\u0000\u0000\u0000\u0003"+
+ "\u00eb\u0001\u0000\u0000\u0000\u0003\u00ef\u0001\u0000\u0000\u0000\u0003"+
+ "\u00f1\u0001\u0000\u0000\u0000\u0003\u00f3\u0001\u0000\u0000\u0000\u0003"+
+ "\u00f5\u0001\u0000\u0000\u0000\u0003\u00f7\u0001\u0000\u0000\u0000\u0003"+
+ "\u00f9\u0001\u0000\u0000\u0000\u0004\u00fb\u0001\u0000\u0000\u0000\u0004"+
+ "\u00fd\u0001\u0000\u0000\u0000\u0004\u00ff\u0001\u0000\u0000\u0000\u0004"+
+ "\u0101\u0001\u0000\u0000\u0000\u0004\u0103\u0001\u0000\u0000\u0000\u0004"+
+ "\u0105\u0001\u0000\u0000\u0000\u0004\u0107\u0001\u0000\u0000\u0000\u0004"+
+ "\u010d\u0001\u0000\u0000\u0000\u0004\u010f\u0001\u0000\u0000\u0000\u0004"+
+ "\u0111\u0001\u0000\u0000\u0000\u0004\u0113\u0001\u0000\u0000\u0000\u0005"+
+ "\u0115\u0001\u0000\u0000\u0000\u0005\u0117\u0001\u0000\u0000\u0000\u0005"+
+ "\u0119\u0001\u0000\u0000\u0000\u0005\u011b\u0001\u0000\u0000\u0000\u0005"+
+ "\u011d\u0001\u0000\u0000\u0000\u0005\u011f\u0001\u0000\u0000\u0000\u0005"+
+ "\u0121\u0001\u0000\u0000\u0000\u0005\u0123\u0001\u0000\u0000\u0000\u0005"+
+ "\u0125\u0001\u0000\u0000\u0000\u0005\u0127\u0001\u0000\u0000\u0000\u0005"+
+ "\u0129\u0001\u0000\u0000\u0000\u0005\u012b\u0001\u0000\u0000\u0000\u0005"+
+ "\u012d\u0001\u0000\u0000\u0000\u0006\u012f\u0001\u0000\u0000\u0000\u0006"+
+ "\u0131\u0001\u0000\u0000\u0000\u0006\u0133\u0001\u0000\u0000\u0000\u0006"+
+ "\u0135\u0001\u0000\u0000\u0000\u0006\u0139\u0001\u0000\u0000\u0000\u0006"+
+ "\u013b\u0001\u0000\u0000\u0000\u0006\u013d\u0001\u0000\u0000\u0000\u0006"+
+ "\u013f\u0001\u0000\u0000\u0000\u0006\u0141\u0001\u0000\u0000\u0000\u0007"+
+ "\u0143\u0001\u0000\u0000\u0000\u0007\u0145\u0001\u0000\u0000\u0000\u0007"+
+ "\u0147\u0001\u0000\u0000\u0000\u0007\u0149\u0001\u0000\u0000\u0000\u0007"+
+ "\u014b\u0001\u0000\u0000\u0000\u0007\u014d\u0001\u0000\u0000\u0000\u0007"+
+ "\u014f\u0001\u0000\u0000\u0000\u0007\u0151\u0001\u0000\u0000\u0000\u0007"+
+ "\u0153\u0001\u0000\u0000\u0000\u0007\u0155\u0001\u0000\u0000\u0000\u0007"+
+ "\u0157\u0001\u0000\u0000\u0000\u0007\u0159\u0001\u0000\u0000\u0000\u0007"+
+ "\u015b\u0001\u0000\u0000\u0000\u0007\u015d\u0001\u0000\u0000\u0000\b\u015f"+
+ "\u0001\u0000\u0000\u0000\b\u0161\u0001\u0000\u0000\u0000\b\u0163\u0001"+
+ "\u0000\u0000\u0000\b\u0165\u0001\u0000\u0000\u0000\b\u0167\u0001\u0000"+
+ "\u0000\u0000\b\u0169\u0001\u0000\u0000\u0000\b\u016b\u0001\u0000\u0000"+
+ "\u0000\b\u016d\u0001\u0000\u0000\u0000\b\u016f\u0001\u0000\u0000\u0000"+
+ "\b\u0171\u0001\u0000\u0000\u0000\b\u0173\u0001\u0000\u0000\u0000\t\u0175"+
+ "\u0001\u0000\u0000\u0000\t\u0177\u0001\u0000\u0000\u0000\t\u0179\u0001"+
+ "\u0000\u0000\u0000\t\u017b\u0001\u0000\u0000\u0000\t\u017d\u0001\u0000"+
+ "\u0000\u0000\n\u017f\u0001\u0000\u0000\u0000\n\u0181\u0001\u0000\u0000"+
+ "\u0000\n\u0183\u0001\u0000\u0000\u0000\n\u0185\u0001\u0000\u0000\u0000"+
+ "\n\u0187\u0001\u0000\u0000\u0000\n\u0189\u0001\u0000\u0000\u0000\u000b"+
+ "\u018b\u0001\u0000\u0000\u0000\u000b\u018d\u0001\u0000\u0000\u0000\u000b"+
+ "\u018f\u0001\u0000\u0000\u0000\u000b\u0191\u0001\u0000\u0000\u0000\u000b"+
+ "\u0193\u0001\u0000\u0000\u0000\u000b\u0195\u0001\u0000\u0000\u0000\u000b"+
+ "\u0197\u0001\u0000\u0000\u0000\u000b\u0199\u0001\u0000\u0000\u0000\u000b"+
+ "\u019b\u0001\u0000\u0000\u0000\u000b\u019d\u0001\u0000\u0000\u0000\f\u019f"+
+ "\u0001\u0000\u0000\u0000\f\u01a1\u0001\u0000\u0000\u0000\f\u01a3\u0001"+
+ "\u0000\u0000\u0000\f\u01a5\u0001\u0000\u0000\u0000\f\u01a7\u0001\u0000"+
+ "\u0000\u0000\f\u01a9\u0001\u0000\u0000\u0000\f\u01ab\u0001\u0000\u0000"+
+ "\u0000\r\u01ad\u0001\u0000\u0000\u0000\r\u01af\u0001\u0000\u0000\u0000"+
+ "\r\u01b1\u0001\u0000\u0000\u0000\r\u01b3\u0001\u0000\u0000\u0000\r\u01b5"+
+ "\u0001\u0000\u0000\u0000\r\u01b7\u0001\u0000\u0000\u0000\r\u01b9\u0001"+
+ "\u0000\u0000\u0000\r\u01bb\u0001\u0000\u0000\u0000\r\u01bd\u0001\u0000"+
+ "\u0000\u0000\r\u01bf\u0001\u0000\u0000\u0000\r\u01c1\u0001\u0000\u0000"+
+ "\u0000\r\u01c3\u0001\u0000\u0000\u0000\r\u01c5\u0001\u0000\u0000\u0000"+
+ "\u000e\u01c7\u0001\u0000\u0000\u0000\u000e\u01c9\u0001\u0000\u0000\u0000"+
+ "\u000e\u01cb\u0001\u0000\u0000\u0000\u000e\u01cd\u0001\u0000\u0000\u0000"+
+ "\u000e\u01cf\u0001\u0000\u0000\u0000\u000e\u01d1\u0001\u0000\u0000\u0000"+
+ "\u000f\u01d3\u0001\u0000\u0000\u0000\u000f\u01d5\u0001\u0000\u0000\u0000"+
+ "\u000f\u01d7\u0001\u0000\u0000\u0000\u000f\u01d9\u0001\u0000\u0000\u0000"+
+ "\u000f\u01db\u0001\u0000\u0000\u0000\u000f\u01dd\u0001\u0000\u0000\u0000"+
+ "\u000f\u01df\u0001\u0000\u0000\u0000\u000f\u01e1\u0001\u0000\u0000\u0000"+
+ "\u000f\u01e3\u0001\u0000\u0000\u0000\u000f\u01e5\u0001\u0000\u0000\u0000"+
+ "\u0010\u01e7\u0001\u0000\u0000\u0000\u0010\u01e9\u0001\u0000\u0000\u0000"+
+ "\u0010\u01eb\u0001\u0000\u0000\u0000\u0010\u01ed\u0001\u0000\u0000\u0000"+
+ "\u0010\u01ef\u0001\u0000\u0000\u0000\u0010\u01f1\u0001\u0000\u0000\u0000"+
+ "\u0010\u01f3\u0001\u0000\u0000\u0000\u0010\u01f5\u0001\u0000\u0000\u0000"+
+ "\u0010\u01f7\u0001\u0000\u0000\u0000\u0010\u01f9\u0001\u0000\u0000\u0000"+
+ "\u0011\u01fb\u0001\u0000\u0000\u0000\u0013\u0208\u0001\u0000\u0000\u0000"+
+ "\u0015\u0212\u0001\u0000\u0000\u0000\u0017\u0219\u0001\u0000\u0000\u0000"+
+ "\u0019\u0222\u0001\u0000\u0000\u0000\u001b\u0229\u0001\u0000\u0000\u0000"+
+ "\u001d\u0233\u0001\u0000\u0000\u0000\u001f\u023a\u0001\u0000\u0000\u0000"+
+ "!\u0241\u0001\u0000\u0000\u0000#\u0248\u0001\u0000\u0000\u0000%\u0250"+
+ "\u0001\u0000\u0000\u0000\'\u025c\u0001\u0000\u0000\u0000)\u0265\u0001"+
+ "\u0000\u0000\u0000+\u026b\u0001\u0000\u0000\u0000-\u0274\u0001\u0000\u0000"+
+ "\u0000/\u027b\u0001\u0000\u0000\u00001\u0282\u0001\u0000\u0000\u00003"+
+ "\u028a\u0001\u0000\u0000\u00005\u0292\u0001\u0000\u0000\u00007\u029b\u0001"+
+ "\u0000\u0000\u00009\u02aa\u0001\u0000\u0000\u0000;\u02b9\u0001\u0000\u0000"+
+ "\u0000=\u02c5\u0001\u0000\u0000\u0000?\u02d0\u0001\u0000\u0000\u0000A"+
+ "\u02da\u0001\u0000\u0000\u0000C\u02e2\u0001\u0000\u0000\u0000E\u02ea\u0001"+
+ "\u0000\u0000\u0000G\u02f4\u0001\u0000\u0000\u0000I\u02fa\u0001\u0000\u0000"+
+ "\u0000K\u030b\u0001\u0000\u0000\u0000M\u031b\u0001\u0000\u0000\u0000O"+
+ "\u0321\u0001\u0000\u0000\u0000Q\u0325\u0001\u0000\u0000\u0000S\u0327\u0001"+
+ "\u0000\u0000\u0000U\u0329\u0001\u0000\u0000\u0000W\u032c\u0001\u0000\u0000"+
+ "\u0000Y\u032e\u0001\u0000\u0000\u0000[\u0337\u0001\u0000\u0000\u0000]"+
+ "\u0339\u0001\u0000\u0000\u0000_\u033e\u0001\u0000\u0000\u0000a\u0340\u0001"+
+ "\u0000\u0000\u0000c\u0345\u0001\u0000\u0000\u0000e\u0364\u0001\u0000\u0000"+
+ "\u0000g\u0367\u0001\u0000\u0000\u0000i\u0395\u0001\u0000\u0000\u0000k"+
+ "\u0397\u0001\u0000\u0000\u0000m\u039b\u0001\u0000\u0000\u0000o\u039f\u0001"+
+ "\u0000\u0000\u0000q\u03a1\u0001\u0000\u0000\u0000s\u03a4\u0001\u0000\u0000"+
+ "\u0000u\u03a7\u0001\u0000\u0000\u0000w\u03a9\u0001\u0000\u0000\u0000y"+
+ "\u03ab\u0001\u0000\u0000\u0000{\u03b0\u0001\u0000\u0000\u0000}\u03b2\u0001"+
+ "\u0000\u0000\u0000\u007f\u03b8\u0001\u0000\u0000\u0000\u0081\u03be\u0001"+
+ "\u0000\u0000\u0000\u0083\u03c1\u0001\u0000\u0000\u0000\u0085\u03c4\u0001"+
+ "\u0000\u0000\u0000\u0087\u03c9\u0001\u0000\u0000\u0000\u0089\u03ce\u0001"+
+ "\u0000\u0000\u0000\u008b\u03d0\u0001\u0000\u0000\u0000\u008d\u03d4\u0001"+
+ "\u0000\u0000\u0000\u008f\u03d9\u0001\u0000\u0000\u0000\u0091\u03df\u0001"+
+ "\u0000\u0000\u0000\u0093\u03e2\u0001\u0000\u0000\u0000\u0095\u03e5\u0001"+
+ "\u0000\u0000\u0000\u0097\u03e7\u0001\u0000\u0000\u0000\u0099\u03ed\u0001"+
+ "\u0000\u0000\u0000\u009b\u03ef\u0001\u0000\u0000\u0000\u009d\u03f4\u0001"+
+ "\u0000\u0000\u0000\u009f\u03f9\u0001\u0000\u0000\u0000\u00a1\u03fc\u0001"+
+ "\u0000\u0000\u0000\u00a3\u03ff\u0001\u0000\u0000\u0000\u00a5\u0402\u0001"+
+ "\u0000\u0000\u0000\u00a7\u0404\u0001\u0000\u0000\u0000\u00a9\u0407\u0001"+
+ "\u0000\u0000\u0000\u00ab\u0409\u0001\u0000\u0000\u0000\u00ad\u040c\u0001"+
+ "\u0000\u0000\u0000\u00af\u040e\u0001\u0000\u0000\u0000\u00b1\u0410\u0001"+
+ "\u0000\u0000\u0000\u00b3\u0412\u0001\u0000\u0000\u0000\u00b5\u0414\u0001"+
+ "\u0000\u0000\u0000\u00b7\u0416\u0001\u0000\u0000\u0000\u00b9\u0418\u0001"+
+ "\u0000\u0000\u0000\u00bb\u041a\u0001\u0000\u0000\u0000\u00bd\u041d\u0001"+
+ "\u0000\u0000\u0000\u00bf\u0432\u0001\u0000\u0000\u0000\u00c1\u0445\u0001"+
+ "\u0000\u0000\u0000\u00c3\u0447\u0001\u0000\u0000\u0000\u00c5\u044c\u0001"+
+ "\u0000\u0000\u0000\u00c7\u0461\u0001\u0000\u0000\u0000\u00c9\u0463\u0001"+
+ "\u0000\u0000\u0000\u00cb\u046b\u0001\u0000\u0000\u0000\u00cd\u046d\u0001"+
+ "\u0000\u0000\u0000\u00cf\u0471\u0001\u0000\u0000\u0000\u00d1\u0475\u0001"+
+ "\u0000\u0000\u0000\u00d3\u0479\u0001\u0000\u0000\u0000\u00d5\u047e\u0001"+
+ "\u0000\u0000\u0000\u00d7\u0483\u0001\u0000\u0000\u0000\u00d9\u0487\u0001"+
+ "\u0000\u0000\u0000\u00db\u048b\u0001\u0000\u0000\u0000\u00dd\u048f\u0001"+
+ "\u0000\u0000\u0000\u00df\u0494\u0001\u0000\u0000\u0000\u00e1\u0498\u0001"+
+ "\u0000\u0000\u0000\u00e3\u049c\u0001\u0000\u0000\u0000\u00e5\u04a0\u0001"+
+ "\u0000\u0000\u0000\u00e7\u04a4\u0001\u0000\u0000\u0000\u00e9\u04a8\u0001"+
+ "\u0000\u0000\u0000\u00eb\u04ac\u0001\u0000\u0000\u0000\u00ed\u04b8\u0001"+
+ "\u0000\u0000\u0000\u00ef\u04bb\u0001\u0000\u0000\u0000\u00f1\u04bf\u0001"+
+ "\u0000\u0000\u0000\u00f3\u04c3\u0001\u0000\u0000\u0000\u00f5\u04c7\u0001"+
+ "\u0000\u0000\u0000\u00f7\u04cb\u0001\u0000\u0000\u0000\u00f9\u04cf\u0001"+
+ "\u0000\u0000\u0000\u00fb\u04d3\u0001\u0000\u0000\u0000\u00fd\u04d8\u0001"+
+ "\u0000\u0000\u0000\u00ff\u04dc\u0001\u0000\u0000\u0000\u0101\u04e0\u0001"+
+ "\u0000\u0000\u0000\u0103\u04e4\u0001\u0000\u0000\u0000\u0105\u04e8\u0001"+
+ "\u0000\u0000\u0000\u0107\u04ec\u0001\u0000\u0000\u0000\u0109\u04f4\u0001"+
+ "\u0000\u0000\u0000\u010b\u0509\u0001\u0000\u0000\u0000\u010d\u050d\u0001"+
+ "\u0000\u0000\u0000\u010f\u0511\u0001\u0000\u0000\u0000\u0111\u0515\u0001"+
+ "\u0000\u0000\u0000\u0113\u0519\u0001\u0000\u0000\u0000\u0115\u051d\u0001"+
+ "\u0000\u0000\u0000\u0117\u0522\u0001\u0000\u0000\u0000\u0119\u0526\u0001"+
+ "\u0000\u0000\u0000\u011b\u052a\u0001\u0000\u0000\u0000\u011d\u052e\u0001"+
+ "\u0000\u0000\u0000\u011f\u0532\u0001\u0000\u0000\u0000\u0121\u0536\u0001"+
+ "\u0000\u0000\u0000\u0123\u053a\u0001\u0000\u0000\u0000\u0125\u053e\u0001"+
+ "\u0000\u0000\u0000\u0127\u0541\u0001\u0000\u0000\u0000\u0129\u0545\u0001"+
+ "\u0000\u0000\u0000\u012b\u0549\u0001\u0000\u0000\u0000\u012d\u054d\u0001"+
+ "\u0000\u0000\u0000\u012f\u0551\u0001\u0000\u0000\u0000\u0131\u0556\u0001"+
+ "\u0000\u0000\u0000\u0133\u055b\u0001\u0000\u0000\u0000\u0135\u0560\u0001"+
+ "\u0000\u0000\u0000\u0137\u0565\u0001\u0000\u0000\u0000\u0139\u056e\u0001"+
+ "\u0000\u0000\u0000\u013b\u0575\u0001\u0000\u0000\u0000\u013d\u0579\u0001"+
+ "\u0000\u0000\u0000\u013f\u057d\u0001\u0000\u0000\u0000\u0141\u0581\u0001"+
+ "\u0000\u0000\u0000\u0143\u0585\u0001\u0000\u0000\u0000\u0145\u058b\u0001"+
+ "\u0000\u0000\u0000\u0147\u058f\u0001\u0000\u0000\u0000\u0149\u0593\u0001"+
+ "\u0000\u0000\u0000\u014b\u0597\u0001\u0000\u0000\u0000\u014d\u059b\u0001"+
+ "\u0000\u0000\u0000\u014f\u059f\u0001\u0000\u0000\u0000\u0151\u05a3\u0001"+
+ "\u0000\u0000\u0000\u0153\u05a7\u0001\u0000\u0000\u0000\u0155\u05ab\u0001"+
+ "\u0000\u0000\u0000\u0157\u05af\u0001\u0000\u0000\u0000\u0159\u05b3\u0001"+
+ "\u0000\u0000\u0000\u015b\u05b7\u0001\u0000\u0000\u0000\u015d\u05bb\u0001"+
+ "\u0000\u0000\u0000\u015f\u05bf\u0001\u0000\u0000\u0000\u0161\u05c4\u0001"+
+ "\u0000\u0000\u0000\u0163\u05c8\u0001\u0000\u0000\u0000\u0165\u05cc\u0001"+
+ "\u0000\u0000\u0000\u0167\u05d0\u0001\u0000\u0000\u0000\u0169\u05d4\u0001"+
+ "\u0000\u0000\u0000\u016b\u05d8\u0001\u0000\u0000\u0000\u016d\u05dc\u0001"+
+ "\u0000\u0000\u0000\u016f\u05e0\u0001\u0000\u0000\u0000\u0171\u05e4\u0001"+
+ "\u0000\u0000\u0000\u0173\u05e8\u0001\u0000\u0000\u0000\u0175\u05ec\u0001"+
+ "\u0000\u0000\u0000\u0177\u05f1\u0001\u0000\u0000\u0000\u0179\u05f6\u0001"+
+ "\u0000\u0000\u0000\u017b\u05fa\u0001\u0000\u0000\u0000\u017d\u05fe\u0001"+
+ "\u0000\u0000\u0000\u017f\u0602\u0001\u0000\u0000\u0000\u0181\u0607\u0001"+
+ "\u0000\u0000\u0000\u0183\u0610\u0001\u0000\u0000\u0000\u0185\u0614\u0001"+
+ "\u0000\u0000\u0000\u0187\u0618\u0001\u0000\u0000\u0000\u0189\u061c\u0001"+
+ "\u0000\u0000\u0000\u018b\u0620\u0001\u0000\u0000\u0000\u018d\u0625\u0001"+
+ "\u0000\u0000\u0000\u018f\u0629\u0001\u0000\u0000\u0000\u0191\u062d\u0001"+
+ "\u0000\u0000\u0000\u0193\u0631\u0001\u0000\u0000\u0000\u0195\u0636\u0001"+
+ "\u0000\u0000\u0000\u0197\u063a\u0001\u0000\u0000\u0000\u0199\u063e\u0001"+
+ "\u0000\u0000\u0000\u019b\u0642\u0001\u0000\u0000\u0000\u019d\u0646\u0001"+
+ "\u0000\u0000\u0000\u019f\u064a\u0001\u0000\u0000\u0000\u01a1\u0650\u0001"+
+ "\u0000\u0000\u0000\u01a3\u0654\u0001\u0000\u0000\u0000\u01a5\u0658\u0001"+
+ "\u0000\u0000\u0000\u01a7\u065c\u0001\u0000\u0000\u0000\u01a9\u0660\u0001"+
+ "\u0000\u0000\u0000\u01ab\u0664\u0001\u0000\u0000\u0000\u01ad\u0668\u0001"+
+ "\u0000\u0000\u0000\u01af\u066d\u0001\u0000\u0000\u0000\u01b1\u0672\u0001"+
+ "\u0000\u0000\u0000\u01b3\u0676\u0001\u0000\u0000\u0000\u01b5\u067c\u0001"+
+ "\u0000\u0000\u0000\u01b7\u0685\u0001\u0000\u0000\u0000\u01b9\u0689\u0001"+
+ "\u0000\u0000\u0000\u01bb\u068d\u0001\u0000\u0000\u0000\u01bd\u0691\u0001"+
+ "\u0000\u0000\u0000\u01bf\u0695\u0001\u0000\u0000\u0000\u01c1\u0699\u0001"+
+ "\u0000\u0000\u0000\u01c3\u069d\u0001\u0000\u0000\u0000\u01c5\u06a1\u0001"+
+ "\u0000\u0000\u0000\u01c7\u06a5\u0001\u0000\u0000\u0000\u01c9\u06aa\u0001"+
+ "\u0000\u0000\u0000\u01cb\u06b0\u0001\u0000\u0000\u0000\u01cd\u06b6\u0001"+
+ "\u0000\u0000\u0000\u01cf\u06ba\u0001\u0000\u0000\u0000\u01d1\u06be\u0001"+
+ "\u0000\u0000\u0000\u01d3\u06c2\u0001\u0000\u0000\u0000\u01d5\u06c8\u0001"+
+ "\u0000\u0000\u0000\u01d7\u06ce\u0001\u0000\u0000\u0000\u01d9\u06d4\u0001"+
+ "\u0000\u0000\u0000\u01db\u06d8\u0001\u0000\u0000\u0000\u01dd\u06dc\u0001"+
+ "\u0000\u0000\u0000\u01df\u06e0\u0001\u0000\u0000\u0000\u01e1\u06e6\u0001"+
+ "\u0000\u0000\u0000\u01e3\u06ec\u0001\u0000\u0000\u0000\u01e5\u06f2\u0001"+
+ "\u0000\u0000\u0000\u01e7\u06f7\u0001\u0000\u0000\u0000\u01e9\u06fc\u0001"+
+ "\u0000\u0000\u0000\u01eb\u0700\u0001\u0000\u0000\u0000\u01ed\u0704\u0001"+
+ "\u0000\u0000\u0000\u01ef\u0708\u0001\u0000\u0000\u0000\u01f1\u070c\u0001"+
+ "\u0000\u0000\u0000\u01f3\u0710\u0001\u0000\u0000\u0000\u01f5\u0714\u0001"+
+ "\u0000\u0000\u0000\u01f7\u0718\u0001\u0000\u0000\u0000\u01f9\u071c\u0001"+
+ "\u0000\u0000\u0000\u01fb\u01fc\u0007\u0000\u0000\u0000\u01fc\u01fd\u0007"+
+ "\u0001\u0000\u0000\u01fd\u01fe\u0007\u0002\u0000\u0000\u01fe\u01ff\u0007"+
+ "\u0003\u0000\u0000\u01ff\u0200\u0007\u0004\u0000\u0000\u0200\u0201\u0007"+
+ "\u0005\u0000\u0000\u0201\u0202\u0007\u0006\u0000\u0000\u0202\u0203\u0007"+
+ "\u0007\u0000\u0000\u0203\u0204\u0007\u0001\u0000\u0000\u0204\u0205\u0007"+
+ "\b\u0000\u0000\u0205\u0206\u0001\u0000\u0000\u0000\u0206\u0207\u0006\u0000"+
+ "\u0000\u0000\u0207\u0012\u0001\u0000\u0000\u0000\u0208\u0209\u0007\t\u0000"+
+ "\u0000\u0209\u020a\u0007\u0007\u0000\u0000\u020a\u020b\u0007\n\u0000\u0000"+
+ "\u020b\u020c\u0007\n\u0000\u0000\u020c\u020d\u0007\u0005\u0000\u0000\u020d"+
+ "\u020e\u0007\u0000\u0000\u0000\u020e\u020f\u0007\u0006\u0000\u0000\u020f"+
+ "\u0210\u0001\u0000\u0000\u0000\u0210\u0211\u0006\u0001\u0000\u0000\u0211"+
+ "\u0014\u0001\u0000\u0000\u0000\u0212\u0213\u0007\t\u0000\u0000\u0213\u0214"+
+ "\u0007\u000b\u0000\u0000\u0214\u0215\u0007\u0001\u0000\u0000\u0215\u0216"+
+ "\u0007\u0003\u0000\u0000\u0216\u0217\u0001\u0000\u0000\u0000\u0217\u0218"+
+ "\u0006\u0002\u0001\u0000\u0218\u0016\u0001\u0000\u0000\u0000\u0219\u021a"+
+ "\u0007\u0005\u0000\u0000\u021a\u021b\u0007\b\u0000\u0000\u021b\u021c\u0007"+
+ "\u000b\u0000\u0000\u021c\u021d\u0007\u0007\u0000\u0000\u021d\u021e\u0007"+
+ "\u0000\u0000\u0000\u021e\u021f\u0007\f\u0000\u0000\u021f\u0220\u0001\u0000"+
+ "\u0000\u0000\u0220\u0221\u0006\u0003\u0002\u0000\u0221\u0018\u0001\u0000"+
+ "\u0000\u0000\u0222\u0223\u0007\u0005\u0000\u0000\u0223\u0224\u0007\r\u0000"+
+ "\u0000\u0224\u0225\u0007\u000e\u0000\u0000\u0225\u0226\u0007\u0004\u0000"+
+ "\u0000\u0226\u0227\u0001\u0000\u0000\u0000\u0227\u0228\u0006\u0004\u0000"+
+ "\u0000\u0228\u001a\u0001\u0000\u0000\u0000\u0229\u022a\u0007\u0005\u0000"+
+ "\u0000\u022a\u022b\u0007\u000f\u0000\u0000\u022b\u022c\u0007\u0003\u0000"+
+ "\u0000\u022c\u022d\u0007\u0004\u0000\u0000\u022d\u022e\u0007\u000e\u0000"+
+ "\u0000\u022e\u022f\u0007\u0007\u0000\u0000\u022f\u0230\u0007\b\u0000\u0000"+
+ "\u0230\u0231\u0001\u0000\u0000\u0000\u0231\u0232\u0006\u0005\u0003\u0000"+
+ "\u0232\u001c\u0001\u0000\u0000\u0000\u0233\u0234\u0007\u0010\u0000\u0000"+
+ "\u0234\u0235\u0007\u000b\u0000\u0000\u0235\u0236\u0007\u0001\u0000\u0000"+
+ "\u0236\u0237\u0007\u0002\u0000\u0000\u0237\u0238\u0001\u0000\u0000\u0000"+
+ "\u0238\u0239\u0006\u0006\u0004\u0000\u0239\u001e\u0001\u0000\u0000\u0000"+
+ "\u023a\u023b\u0007\u0011\u0000\u0000\u023b\u023c\u0007\u000b\u0000\u0000"+
+ "\u023c\u023d\u0007\u0001\u0000\u0000\u023d\u023e\u0007\u0012\u0000\u0000"+
+ "\u023e\u023f\u0001\u0000\u0000\u0000\u023f\u0240\u0006\u0007\u0000\u0000"+
+ "\u0240 \u0001\u0000\u0000\u0000\u0241\u0242\u0007\u0012\u0000\u0000\u0242"+
+ "\u0243\u0007\u0005\u0000\u0000\u0243\u0244\u0007\u0005\u0000\u0000\u0244"+
+ "\u0245\u0007\u0003\u0000\u0000\u0245\u0246\u0001\u0000\u0000\u0000\u0246"+
+ "\u0247\u0006\b\u0001\u0000\u0247\"\u0001\u0000\u0000\u0000\u0248\u0249"+
+ "\u0007\u0004\u0000\u0000\u0249\u024a\u0007\u0007\u0000\u0000\u024a\u024b"+
+ "\u0007\u0002\u0000\u0000\u024b\u024c\u0007\u0007\u0000\u0000\u024c\u024d"+
+ "\u0007\u0006\u0000\u0000\u024d\u024e\u0001\u0000\u0000\u0000\u024e\u024f"+
+ "\u0006\t\u0000\u0000\u024f$\u0001\u0000\u0000\u0000\u0250\u0251\u0007"+
+ "\u0002\u0000\u0000\u0251\u0252\u0007\r\u0000\u0000\u0252\u0253\u0005_"+
+ "\u0000\u0000\u0253\u0254\u0007\u0005\u0000\u0000\u0254\u0255\u0007\u000f"+
+ "\u0000\u0000\u0255\u0256\u0007\u0003\u0000\u0000\u0256\u0257\u0007\u000e"+
+ "\u0000\u0000\u0257\u0258\u0007\b\u0000\u0000\u0258\u0259\u0007\t\u0000"+
+ "\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025a\u025b\u0006\n\u0005\u0000"+
+ "\u025b&\u0001\u0000\u0000\u0000\u025c\u025d\u0007\u000b\u0000\u0000\u025d"+
+ "\u025e\u0007\u0005\u0000\u0000\u025e\u025f\u0007\b\u0000\u0000\u025f\u0260"+
+ "\u0007\u000e\u0000\u0000\u0260\u0261\u0007\u0002\u0000\u0000\u0261\u0262"+
+ "\u0007\u0005\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263\u0264"+
+ "\u0006\u000b\u0006\u0000\u0264(\u0001\u0000\u0000\u0000\u0265\u0266\u0007"+
+ "\u000b\u0000\u0000\u0266\u0267\u0007\u0001\u0000\u0000\u0267\u0268\u0007"+
+ "\u0013\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000\u0269\u026a\u0006"+
+ "\f\u0000\u0000\u026a*\u0001\u0000\u0000\u0000\u026b\u026c\u0007\n\u0000"+
+ "\u0000\u026c\u026d\u0007\u000e\u0000\u0000\u026d\u026e\u0007\u0002\u0000"+
+ "\u0000\u026e\u026f\u0007\u0003\u0000\u0000\u026f\u0270\u0007\u0004\u0000"+
+ "\u0000\u0270\u0271\u0007\u0005\u0000\u0000\u0271\u0272\u0001\u0000\u0000"+
+ "\u0000\u0272\u0273\u0006\r\u0000\u0000\u0273,\u0001\u0000\u0000\u0000"+
+ "\u0274\u0275\u0007\n\u0000\u0000\u0275\u0276\u0007\f\u0000\u0000\u0276"+
+ "\u0277\u0007\u0001\u0000\u0000\u0277\u0278\u0007\u0013\u0000\u0000\u0278"+
+ "\u0279\u0001\u0000\u0000\u0000\u0279\u027a\u0006\u000e\u0007\u0000\u027a"+
+ ".\u0001\u0000\u0000\u0000\u027b\u027c\u0007\n\u0000\u0000\u027c\u027d"+
+ "\u0007\u0001\u0000\u0000\u027d\u027e\u0007\u000b\u0000\u0000\u027e\u027f"+
+ "\u0007\u0006\u0000\u0000\u027f\u0280\u0001\u0000\u0000\u0000\u0280\u0281"+
+ "\u0006\u000f\u0000\u0000\u02810\u0001\u0000\u0000\u0000\u0282\u0283\u0007"+
+ "\n\u0000\u0000\u0283\u0284\u0007\u0006\u0000\u0000\u0284\u0285\u0007\u000e"+
+ "\u0000\u0000\u0285\u0286\u0007\u0006\u0000\u0000\u0286\u0287\u0007\n\u0000"+
+ "\u0000\u0287\u0288\u0001\u0000\u0000\u0000\u0288\u0289\u0006\u0010\u0000"+
+ "\u0000\u02892\u0001\u0000\u0000\u0000\u028a\u028b\u0007\u0013\u0000\u0000"+
+ "\u028b\u028c\u0007\f\u0000\u0000\u028c\u028d\u0007\u0005\u0000\u0000\u028d"+
+ "\u028e\u0007\u000b\u0000\u0000\u028e\u028f\u0007\u0005\u0000\u0000\u028f"+
+ "\u0290\u0001\u0000\u0000\u0000\u0290\u0291\u0006\u0011\u0000\u0000\u0291"+
+ "4\u0001\u0000\u0000\u0000\u0292\u0293\u0007\u0004\u0000\u0000\u0293\u0294"+
+ "\u0007\u0001\u0000\u0000\u0294\u0295\u0007\u0001\u0000\u0000\u0295\u0296"+
+ "\u0007\u0012\u0000\u0000\u0296\u0297\u0007\u0014\u0000\u0000\u0297\u0298"+
+ "\u0007\u0003\u0000\u0000\u0298\u0299\u0001\u0000\u0000\u0000\u0299\u029a"+
+ "\u0006\u0012\b\u0000\u029a6\u0001\u0000\u0000\u0000\u029b\u029c\u0007"+
+ "\u0000\u0000\u0000\u029c\u029d\u0007\f\u0000\u0000\u029d\u029e\u0007\u000e"+
+ "\u0000\u0000\u029e\u029f\u0007\b\u0000\u0000\u029f\u02a0\u0007\u0011\u0000"+
+ "\u0000\u02a0\u02a1\u0007\u0005\u0000\u0000\u02a1\u02a2\u0005_\u0000\u0000"+
+ "\u02a2\u02a3\u0007\u0003\u0000\u0000\u02a3\u02a4\u0007\u0001\u0000\u0000"+
+ "\u02a4\u02a5\u0007\u0007\u0000\u0000\u02a5\u02a6\u0007\b\u0000\u0000\u02a6"+
+ "\u02a7\u0007\u0006\u0000\u0000\u02a7\u02a8\u0001\u0000\u0000\u0000\u02a8"+
+ "\u02a9\u0006\u0013\t\u0000\u02a98\u0001\u0000\u0000\u0000\u02aa\u02ab"+
+ "\u0004\u0014\u0000\u0000\u02ab\u02ac\u0007\u0007\u0000\u0000\u02ac\u02ad"+
+ "\u0007\b\u0000\u0000\u02ad\u02ae\u0007\u0004\u0000\u0000\u02ae\u02af\u0007"+
+ "\u0007\u0000\u0000\u02af\u02b0\u0007\b\u0000\u0000\u02b0\u02b1\u0007\u0005"+
+ "\u0000\u0000\u02b1\u02b2\u0007\n\u0000\u0000\u02b2\u02b3\u0007\u0006\u0000"+
+ "\u0000\u02b3\u02b4\u0007\u000e\u0000\u0000\u02b4\u02b5\u0007\u0006\u0000"+
+ "\u0000\u02b5\u02b6\u0007\n\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000"+
+ "\u02b7\u02b8\u0006\u0014\u0000\u0000\u02b8:\u0001\u0000\u0000\u0000\u02b9"+
+ "\u02ba\u0004\u0015\u0001\u0000\u02ba\u02bb\u0007\u0004\u0000\u0000\u02bb"+
+ "\u02bc\u0007\u0001\u0000\u0000\u02bc\u02bd\u0007\u0001\u0000\u0000\u02bd"+
+ "\u02be\u0007\u0012\u0000\u0000\u02be\u02bf\u0007\u0014\u0000\u0000\u02bf"+
+ "\u02c0\u0007\u0003\u0000\u0000\u02c0\u02c1\u0005_\u0000\u0000\u02c1\u02c2"+
+ "\u0005\u8001\uf414\u0000\u0000\u02c2\u02c3\u0001\u0000\u0000\u0000\u02c3"+
+ "\u02c4\u0006\u0015\n\u0000\u02c4<\u0001\u0000\u0000\u0000\u02c5\u02c6"+
+ "\u0004\u0016\u0002\u0000\u02c6\u02c7\u0007\u0002\u0000\u0000\u02c7\u02c8"+
+ "\u0007\u0005\u0000\u0000\u02c8\u02c9\u0007\u0006\u0000\u0000\u02c9\u02ca"+
+ "\u0007\u000b\u0000\u0000\u02ca\u02cb\u0007\u0007\u0000\u0000\u02cb\u02cc"+
+ "\u0007\u0000\u0000\u0000\u02cc\u02cd\u0007\n\u0000\u0000\u02cd\u02ce\u0001"+
+ "\u0000\u0000\u0000\u02ce\u02cf\u0006\u0016\u000b\u0000\u02cf>\u0001\u0000"+
+ "\u0000\u0000\u02d0\u02d1\u0004\u0017\u0003\u0000\u02d1\u02d2\u0007\u000b"+
+ "\u0000\u0000\u02d2\u02d3\u0007\u0005\u0000\u0000\u02d3\u02d4\u0007\u000b"+
+ "\u0000\u0000\u02d4\u02d5\u0007\u000e\u0000\u0000\u02d5\u02d6\u0007\b\u0000"+
+ "\u0000\u02d6\u02d7\u0007\u0012\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000"+
+ "\u0000\u02d8\u02d9\u0006\u0017\u0000\u0000\u02d9@\u0001\u0000\u0000\u0000"+
+ "\u02da\u02db\u0004\u0018\u0004\u0000\u02db\u02dc\u0007\u0010\u0000\u0000"+
+ "\u02dc\u02dd\u0007\u0014\u0000\u0000\u02dd\u02de\u0007\u0004\u0000\u0000"+
+ "\u02de\u02df\u0007\u0004\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000"+
+ "\u02e0\u02e1\u0006\u0018\b\u0000\u02e1B\u0001\u0000\u0000\u0000\u02e2"+
+ "\u02e3\u0004\u0019\u0005\u0000\u02e3\u02e4\u0007\u0004\u0000\u0000\u02e4"+
+ "\u02e5\u0007\u0005\u0000\u0000\u02e5\u02e6\u0007\u0010\u0000\u0000\u02e6"+
+ "\u02e7\u0007\u0006\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000\u02e8"+
+ "\u02e9\u0006\u0019\b\u0000\u02e9D\u0001\u0000\u0000\u0000\u02ea\u02eb"+
+ "\u0004\u001a\u0006\u0000\u02eb\u02ec\u0007\u000b\u0000\u0000\u02ec\u02ed"+
+ "\u0007\u0007\u0000\u0000\u02ed\u02ee\u0007\u0011\u0000\u0000\u02ee\u02ef"+
+ "\u0007\f\u0000\u0000\u02ef\u02f0\u0007\u0006\u0000\u0000\u02f0\u02f1\u0001"+
+ "\u0000\u0000\u0000\u02f1\u02f2\u0006\u001a\b\u0000\u02f2F\u0001\u0000"+
+ "\u0000\u0000\u02f3\u02f5\b\u0015\u0000\u0000\u02f4\u02f3\u0001\u0000\u0000"+
+ "\u0000\u02f5\u02f6\u0001\u0000\u0000\u0000\u02f6\u02f4\u0001\u0000\u0000"+
+ "\u0000\u02f6\u02f7\u0001\u0000\u0000\u0000\u02f7\u02f8\u0001\u0000\u0000"+
+ "\u0000\u02f8\u02f9\u0006\u001b\u0000\u0000\u02f9H\u0001\u0000\u0000\u0000"+
+ "\u02fa\u02fb\u0005/\u0000\u0000\u02fb\u02fc\u0005/\u0000\u0000\u02fc\u0300"+
+ "\u0001\u0000\u0000\u0000\u02fd\u02ff\b\u0016\u0000\u0000\u02fe\u02fd\u0001"+
+ "\u0000\u0000\u0000\u02ff\u0302\u0001\u0000\u0000\u0000\u0300\u02fe\u0001"+
+ "\u0000\u0000\u0000\u0300\u0301\u0001\u0000\u0000\u0000\u0301\u0304\u0001"+
+ "\u0000\u0000\u0000\u0302\u0300\u0001\u0000\u0000\u0000\u0303\u0305\u0005"+
+ "\r\u0000\u0000\u0304\u0303\u0001\u0000\u0000\u0000\u0304\u0305\u0001\u0000"+
+ "\u0000\u0000\u0305\u0307\u0001\u0000\u0000\u0000\u0306\u0308\u0005\n\u0000"+
+ "\u0000\u0307\u0306\u0001\u0000\u0000\u0000\u0307\u0308\u0001\u0000\u0000"+
+ "\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0309\u030a\u0006\u001c\f\u0000"+
+ "\u030aJ\u0001\u0000\u0000\u0000\u030b\u030c\u0005/\u0000\u0000\u030c\u030d"+
+ "\u0005*\u0000\u0000\u030d\u0312\u0001\u0000\u0000\u0000\u030e\u0311\u0003"+
+ "K\u001d\u0000\u030f\u0311\t\u0000\u0000\u0000\u0310\u030e\u0001\u0000"+
+ "\u0000\u0000\u0310\u030f\u0001\u0000\u0000\u0000\u0311\u0314\u0001\u0000"+
+ "\u0000\u0000\u0312\u0313\u0001\u0000\u0000\u0000\u0312\u0310\u0001\u0000"+
+ "\u0000\u0000\u0313\u0315\u0001\u0000\u0000\u0000\u0314\u0312\u0001\u0000"+
+ "\u0000\u0000\u0315\u0316\u0005*\u0000\u0000\u0316\u0317\u0005/\u0000\u0000"+
+ "\u0317\u0318\u0001\u0000\u0000\u0000\u0318\u0319\u0006\u001d\f\u0000\u0319"+
+ "L\u0001\u0000\u0000\u0000\u031a\u031c\u0007\u0017\u0000\u0000\u031b\u031a"+
+ "\u0001\u0000\u0000\u0000\u031c\u031d\u0001\u0000\u0000\u0000\u031d\u031b"+
+ "\u0001\u0000\u0000\u0000\u031d\u031e\u0001\u0000\u0000\u0000\u031e\u031f"+
+ "\u0001\u0000\u0000\u0000\u031f\u0320\u0006\u001e\f\u0000\u0320N\u0001"+
+ "\u0000\u0000\u0000\u0321\u0322\u0005|\u0000\u0000\u0322\u0323\u0001\u0000"+
+ "\u0000\u0000\u0323\u0324\u0006\u001f\r\u0000\u0324P\u0001\u0000\u0000"+
+ "\u0000\u0325\u0326\u0007\u0018\u0000\u0000\u0326R\u0001\u0000\u0000\u0000"+
+ "\u0327\u0328\u0007\u0019\u0000\u0000\u0328T\u0001\u0000\u0000\u0000\u0329"+
+ "\u032a\u0005\\\u0000\u0000\u032a\u032b\u0007\u001a\u0000\u0000\u032bV"+
+ "\u0001\u0000\u0000\u0000\u032c\u032d\b\u001b\u0000\u0000\u032dX\u0001"+
+ "\u0000\u0000\u0000\u032e\u0330\u0007\u0005\u0000\u0000\u032f\u0331\u0007"+
+ "\u001c\u0000\u0000\u0330\u032f\u0001\u0000\u0000\u0000\u0330\u0331\u0001"+
+ "\u0000\u0000\u0000\u0331\u0333\u0001\u0000\u0000\u0000\u0332\u0334\u0003"+
+ "Q \u0000\u0333\u0332\u0001\u0000\u0000\u0000\u0334\u0335\u0001\u0000\u0000"+
+ "\u0000\u0335\u0333\u0001\u0000\u0000\u0000\u0335\u0336\u0001\u0000\u0000"+
+ "\u0000\u0336Z\u0001\u0000\u0000\u0000\u0337\u0338\u0005@\u0000\u0000\u0338"+
+ "\\\u0001\u0000\u0000\u0000\u0339\u033a\u0005`\u0000\u0000\u033a^\u0001"+
+ "\u0000\u0000\u0000\u033b\u033f\b\u001d\u0000\u0000\u033c\u033d\u0005`"+
+ "\u0000\u0000\u033d\u033f\u0005`\u0000\u0000\u033e\u033b\u0001\u0000\u0000"+
+ "\u0000\u033e\u033c\u0001\u0000\u0000\u0000\u033f`\u0001\u0000\u0000\u0000"+
+ "\u0340\u0341\u0005_\u0000\u0000\u0341b\u0001\u0000\u0000\u0000\u0342\u0346"+
+ "\u0003S!\u0000\u0343\u0346\u0003Q \u0000\u0344\u0346\u0003a(\u0000\u0345"+
+ "\u0342\u0001\u0000\u0000\u0000\u0345\u0343\u0001\u0000\u0000\u0000\u0345"+
+ "\u0344\u0001\u0000\u0000\u0000\u0346d\u0001\u0000\u0000\u0000\u0347\u034c"+
+ "\u0005\"\u0000\u0000\u0348\u034b\u0003U\"\u0000\u0349\u034b\u0003W#\u0000"+
+ "\u034a\u0348\u0001\u0000\u0000\u0000\u034a\u0349\u0001\u0000\u0000\u0000"+
+ "\u034b\u034e\u0001\u0000\u0000\u0000\u034c\u034a\u0001\u0000\u0000\u0000"+
+ "\u034c\u034d\u0001\u0000\u0000\u0000\u034d\u034f\u0001\u0000\u0000\u0000"+
+ "\u034e\u034c\u0001\u0000\u0000\u0000\u034f\u0365\u0005\"\u0000\u0000\u0350"+
+ "\u0351\u0005\"\u0000\u0000\u0351\u0352\u0005\"\u0000\u0000\u0352\u0353"+
+ "\u0005\"\u0000\u0000\u0353\u0357\u0001\u0000\u0000\u0000\u0354\u0356\b"+
+ "\u0016\u0000\u0000\u0355\u0354\u0001\u0000\u0000\u0000\u0356\u0359\u0001"+
+ "\u0000\u0000\u0000\u0357\u0358\u0001\u0000\u0000\u0000\u0357\u0355\u0001"+
+ "\u0000\u0000\u0000\u0358\u035a\u0001\u0000\u0000\u0000\u0359\u0357\u0001"+
+ "\u0000\u0000\u0000\u035a\u035b\u0005\"\u0000\u0000\u035b\u035c\u0005\""+
+ "\u0000\u0000\u035c\u035d\u0005\"\u0000\u0000\u035d\u035f\u0001\u0000\u0000"+
+ "\u0000\u035e\u0360\u0005\"\u0000\u0000\u035f\u035e\u0001\u0000\u0000\u0000"+
+ "\u035f\u0360\u0001\u0000\u0000\u0000\u0360\u0362\u0001\u0000\u0000\u0000"+
+ "\u0361\u0363\u0005\"\u0000\u0000\u0362\u0361\u0001\u0000\u0000\u0000\u0362"+
+ "\u0363\u0001\u0000\u0000\u0000\u0363\u0365\u0001\u0000\u0000\u0000\u0364"+
+ "\u0347\u0001\u0000\u0000\u0000\u0364\u0350\u0001\u0000\u0000\u0000\u0365"+
+ "f\u0001\u0000\u0000\u0000\u0366\u0368\u0003Q \u0000\u0367\u0366\u0001"+
+ "\u0000\u0000\u0000\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u0367\u0001"+
+ "\u0000\u0000\u0000\u0369\u036a\u0001\u0000\u0000\u0000\u036ah\u0001\u0000"+
+ "\u0000\u0000\u036b\u036d\u0003Q \u0000\u036c\u036b\u0001\u0000\u0000\u0000"+
+ "\u036d\u036e\u0001\u0000\u0000\u0000\u036e\u036c\u0001\u0000\u0000\u0000"+
+ "\u036e\u036f\u0001\u0000\u0000\u0000\u036f\u0370\u0001\u0000\u0000\u0000"+
+ "\u0370\u0374\u0003{5\u0000\u0371\u0373\u0003Q \u0000\u0372\u0371\u0001"+
+ "\u0000\u0000\u0000\u0373\u0376\u0001\u0000\u0000\u0000\u0374\u0372\u0001"+
+ "\u0000\u0000\u0000\u0374\u0375\u0001\u0000\u0000\u0000\u0375\u0396\u0001"+
+ "\u0000\u0000\u0000\u0376\u0374\u0001\u0000\u0000\u0000\u0377\u0379\u0003"+
+ "{5\u0000\u0378\u037a\u0003Q \u0000\u0379\u0378\u0001\u0000\u0000\u0000"+
+ "\u037a\u037b\u0001\u0000\u0000\u0000\u037b\u0379\u0001\u0000\u0000\u0000"+
+ "\u037b\u037c\u0001\u0000\u0000\u0000\u037c\u0396\u0001\u0000\u0000\u0000"+
+ "\u037d\u037f\u0003Q \u0000\u037e\u037d\u0001\u0000\u0000\u0000\u037f\u0380"+
+ "\u0001\u0000\u0000\u0000\u0380\u037e\u0001\u0000\u0000\u0000\u0380\u0381"+
+ "\u0001\u0000\u0000\u0000\u0381\u0389\u0001\u0000\u0000\u0000\u0382\u0386"+
+ "\u0003{5\u0000\u0383\u0385\u0003Q \u0000\u0384\u0383\u0001\u0000\u0000"+
+ "\u0000\u0385\u0388\u0001\u0000\u0000\u0000\u0386\u0384\u0001\u0000\u0000"+
+ "\u0000\u0386\u0387\u0001\u0000\u0000\u0000\u0387\u038a\u0001\u0000\u0000"+
+ "\u0000\u0388\u0386\u0001\u0000\u0000\u0000\u0389\u0382\u0001\u0000\u0000"+
+ "\u0000\u0389\u038a\u0001\u0000\u0000\u0000\u038a\u038b\u0001\u0000\u0000"+
+ "\u0000\u038b\u038c\u0003Y$\u0000\u038c\u0396\u0001\u0000\u0000\u0000\u038d"+
+ "\u038f\u0003{5\u0000\u038e\u0390\u0003Q \u0000\u038f\u038e\u0001\u0000"+
+ "\u0000\u0000\u0390\u0391\u0001\u0000\u0000\u0000\u0391\u038f\u0001\u0000"+
+ "\u0000\u0000\u0391\u0392\u0001\u0000\u0000\u0000\u0392\u0393\u0001\u0000"+
+ "\u0000\u0000\u0393\u0394\u0003Y$\u0000\u0394\u0396\u0001\u0000\u0000\u0000"+
+ "\u0395\u036c\u0001\u0000\u0000\u0000\u0395\u0377\u0001\u0000\u0000\u0000"+
+ "\u0395\u037e\u0001\u0000\u0000\u0000\u0395\u038d\u0001\u0000\u0000\u0000"+
+ "\u0396j\u0001\u0000\u0000\u0000\u0397\u0398\u0007\u000e\u0000\u0000\u0398"+
+ "\u0399\u0007\b\u0000\u0000\u0399\u039a\u0007\t\u0000\u0000\u039al\u0001"+
+ "\u0000\u0000\u0000\u039b\u039c\u0007\u000e\u0000\u0000\u039c\u039d\u0007"+
+ "\n\u0000\u0000\u039d\u039e\u0007\u0000\u0000\u0000\u039en\u0001\u0000"+
+ "\u0000\u0000\u039f\u03a0\u0005=\u0000\u0000\u03a0p\u0001\u0000\u0000\u0000"+
+ "\u03a1\u03a2\u0007\u001e\u0000\u0000\u03a2\u03a3\u0007\u001f\u0000\u0000"+
+ "\u03a3r\u0001\u0000\u0000\u0000\u03a4\u03a5\u0005:\u0000\u0000\u03a5\u03a6"+
+ "\u0005:\u0000\u0000\u03a6t\u0001\u0000\u0000\u0000\u03a7\u03a8\u0005:"+
+ "\u0000\u0000\u03a8v\u0001\u0000\u0000\u0000\u03a9\u03aa\u0005,\u0000\u0000"+
+ "\u03aax\u0001\u0000\u0000\u0000\u03ab\u03ac\u0007\t\u0000\u0000\u03ac"+
+ "\u03ad\u0007\u0005\u0000\u0000\u03ad\u03ae\u0007\n\u0000\u0000\u03ae\u03af"+
+ "\u0007\u0000\u0000\u0000\u03afz\u0001\u0000\u0000\u0000\u03b0\u03b1\u0005"+
+ ".\u0000\u0000\u03b1|\u0001\u0000\u0000\u0000\u03b2\u03b3\u0007\u0010\u0000"+
+ "\u0000\u03b3\u03b4\u0007\u000e\u0000\u0000\u03b4\u03b5\u0007\u0004\u0000"+
+ "\u0000\u03b5\u03b6\u0007\n\u0000\u0000\u03b6\u03b7\u0007\u0005\u0000\u0000"+
+ "\u03b7~\u0001\u0000\u0000\u0000\u03b8\u03b9\u0007\u0010\u0000\u0000\u03b9"+
+ "\u03ba\u0007\u0007\u0000\u0000\u03ba\u03bb\u0007\u000b\u0000\u0000\u03bb"+
+ "\u03bc\u0007\n\u0000\u0000\u03bc\u03bd\u0007\u0006\u0000\u0000\u03bd\u0080"+
+ "\u0001\u0000\u0000\u0000\u03be\u03bf\u0007\u0007\u0000\u0000\u03bf\u03c0"+
+ "\u0007\b\u0000\u0000\u03c0\u0082\u0001\u0000\u0000\u0000\u03c1\u03c2\u0007"+
+ "\u0007\u0000\u0000\u03c2\u03c3\u0007\n\u0000\u0000\u03c3\u0084\u0001\u0000"+
+ "\u0000\u0000\u03c4\u03c5\u0007\u0004\u0000\u0000\u03c5\u03c6\u0007\u000e"+
+ "\u0000\u0000\u03c6\u03c7\u0007\n\u0000\u0000\u03c7\u03c8\u0007\u0006\u0000"+
+ "\u0000\u03c8\u0086\u0001\u0000\u0000\u0000\u03c9\u03ca\u0007\u0004\u0000"+
+ "\u0000\u03ca\u03cb\u0007\u0007\u0000\u0000\u03cb\u03cc\u0007\u0012\u0000"+
+ "\u0000\u03cc\u03cd\u0007\u0005\u0000\u0000\u03cd\u0088\u0001\u0000\u0000"+
+ "\u0000\u03ce\u03cf\u0005(\u0000\u0000\u03cf\u008a\u0001\u0000\u0000\u0000"+
+ "\u03d0\u03d1\u0007\b\u0000\u0000\u03d1\u03d2\u0007\u0001\u0000\u0000\u03d2"+
+ "\u03d3\u0007\u0006\u0000\u0000\u03d3\u008c\u0001\u0000\u0000\u0000\u03d4"+
+ "\u03d5\u0007\b\u0000\u0000\u03d5\u03d6\u0007\u0014\u0000\u0000\u03d6\u03d7"+
+ "\u0007\u0004\u0000\u0000\u03d7\u03d8\u0007\u0004\u0000\u0000\u03d8\u008e"+
+ "\u0001\u0000\u0000\u0000\u03d9\u03da\u0007\b\u0000\u0000\u03da\u03db\u0007"+
+ "\u0014\u0000\u0000\u03db\u03dc\u0007\u0004\u0000\u0000\u03dc\u03dd\u0007"+
+ "\u0004\u0000\u0000\u03dd\u03de\u0007\n\u0000\u0000\u03de\u0090\u0001\u0000"+
+ "\u0000\u0000\u03df\u03e0\u0007\u0001\u0000\u0000\u03e0\u03e1\u0007\b\u0000"+
+ "\u0000\u03e1\u0092\u0001\u0000\u0000\u0000\u03e2\u03e3\u0007\u0001\u0000"+
+ "\u0000\u03e3\u03e4\u0007\u000b\u0000\u0000\u03e4\u0094\u0001\u0000\u0000"+
+ "\u0000\u03e5\u03e6\u0005?\u0000\u0000\u03e6\u0096\u0001\u0000\u0000\u0000"+
+ "\u03e7\u03e8\u0007\u000b\u0000\u0000\u03e8\u03e9\u0007\u0004\u0000\u0000"+
+ "\u03e9\u03ea\u0007\u0007\u0000\u0000\u03ea\u03eb\u0007\u0012\u0000\u0000"+
+ "\u03eb\u03ec\u0007\u0005\u0000\u0000\u03ec\u0098\u0001\u0000\u0000\u0000"+
+ "\u03ed\u03ee\u0005)\u0000\u0000\u03ee\u009a\u0001\u0000\u0000\u0000\u03ef"+
+ "\u03f0\u0007\u0006\u0000\u0000\u03f0\u03f1\u0007\u000b\u0000\u0000\u03f1"+
+ "\u03f2\u0007\u0014\u0000\u0000\u03f2\u03f3\u0007\u0005\u0000\u0000\u03f3"+
+ "\u009c\u0001\u0000\u0000\u0000\u03f4\u03f5\u0007\u0013\u0000\u0000\u03f5"+
+ "\u03f6\u0007\u0007\u0000\u0000\u03f6\u03f7\u0007\u0006\u0000\u0000\u03f7"+
+ "\u03f8\u0007\f\u0000\u0000\u03f8\u009e\u0001\u0000\u0000\u0000\u03f9\u03fa"+
+ "\u0005=\u0000\u0000\u03fa\u03fb\u0005=\u0000\u0000\u03fb\u00a0\u0001\u0000"+
+ "\u0000\u0000\u03fc\u03fd\u0005=\u0000\u0000\u03fd\u03fe\u0005~\u0000\u0000"+
+ "\u03fe\u00a2\u0001\u0000\u0000\u0000\u03ff\u0400\u0005!\u0000\u0000\u0400"+
+ "\u0401\u0005=\u0000\u0000\u0401\u00a4\u0001\u0000\u0000\u0000\u0402\u0403"+
+ "\u0005<\u0000\u0000\u0403\u00a6\u0001\u0000\u0000\u0000\u0404\u0405\u0005"+
+ "<\u0000\u0000\u0405\u0406\u0005=\u0000\u0000\u0406\u00a8\u0001\u0000\u0000"+
+ "\u0000\u0407\u0408\u0005>\u0000\u0000\u0408\u00aa\u0001\u0000\u0000\u0000"+
+ "\u0409\u040a\u0005>\u0000\u0000\u040a\u040b\u0005=\u0000\u0000\u040b\u00ac"+
+ "\u0001\u0000\u0000\u0000\u040c\u040d\u0005+\u0000\u0000\u040d\u00ae\u0001"+
+ "\u0000\u0000\u0000\u040e\u040f\u0005-\u0000\u0000\u040f\u00b0\u0001\u0000"+
+ "\u0000\u0000\u0410\u0411\u0005*\u0000\u0000\u0411\u00b2\u0001\u0000\u0000"+
+ "\u0000\u0412\u0413\u0005/\u0000\u0000\u0413\u00b4\u0001\u0000\u0000\u0000"+
+ "\u0414\u0415\u0005%\u0000\u0000\u0415\u00b6\u0001\u0000\u0000\u0000\u0416"+
+ "\u0417\u0005{\u0000\u0000\u0417\u00b8\u0001\u0000\u0000\u0000\u0418\u0419"+
+ "\u0005}\u0000\u0000\u0419\u00ba\u0001\u0000\u0000\u0000\u041a\u041b\u0005"+
+ "?\u0000\u0000\u041b\u041c\u0005?\u0000\u0000\u041c\u00bc\u0001\u0000\u0000"+
+ "\u0000\u041d\u041e\u00033\u0011\u0000\u041e\u041f\u0001\u0000\u0000\u0000"+
+ "\u041f\u0420\u0006V\u000e\u0000\u0420\u00be\u0001\u0000\u0000\u0000\u0421"+
+ "\u0424\u0003\u0095B\u0000\u0422\u0425\u0003S!\u0000\u0423\u0425\u0003"+
+ "a(\u0000\u0424\u0422\u0001\u0000\u0000\u0000\u0424\u0423\u0001\u0000\u0000"+
+ "\u0000\u0425\u0429\u0001\u0000\u0000\u0000\u0426\u0428\u0003c)\u0000\u0427"+
+ "\u0426\u0001\u0000\u0000\u0000\u0428\u042b\u0001\u0000\u0000\u0000\u0429"+
+ "\u0427\u0001\u0000\u0000\u0000\u0429\u042a\u0001\u0000\u0000\u0000\u042a"+
+ "\u0433\u0001\u0000\u0000\u0000\u042b\u0429\u0001\u0000\u0000\u0000\u042c"+
+ "\u042e\u0003\u0095B\u0000\u042d\u042f\u0003Q \u0000\u042e\u042d\u0001"+
+ "\u0000\u0000\u0000\u042f\u0430\u0001\u0000\u0000\u0000\u0430\u042e\u0001"+
+ "\u0000\u0000\u0000\u0430\u0431\u0001\u0000\u0000\u0000\u0431\u0433\u0001"+
+ "\u0000\u0000\u0000\u0432\u0421\u0001\u0000\u0000\u0000\u0432\u042c\u0001"+
+ "\u0000\u0000\u0000\u0433\u00c0\u0001\u0000\u0000\u0000\u0434\u0437\u0003"+
+ "\u00bbU\u0000\u0435\u0438\u0003S!\u0000\u0436\u0438\u0003a(\u0000\u0437"+
+ "\u0435\u0001\u0000\u0000\u0000\u0437\u0436\u0001\u0000\u0000\u0000\u0438"+
+ "\u043c\u0001\u0000\u0000\u0000\u0439\u043b\u0003c)\u0000\u043a\u0439\u0001"+
+ "\u0000\u0000\u0000\u043b\u043e\u0001\u0000\u0000\u0000\u043c\u043a\u0001"+
+ "\u0000\u0000\u0000\u043c\u043d\u0001\u0000\u0000\u0000\u043d\u0446\u0001"+
+ "\u0000\u0000\u0000\u043e\u043c\u0001\u0000\u0000\u0000\u043f\u0441\u0003"+
+ "\u00bbU\u0000\u0440\u0442\u0003Q \u0000\u0441\u0440\u0001\u0000\u0000"+
+ "\u0000\u0442\u0443\u0001\u0000\u0000\u0000\u0443\u0441\u0001\u0000\u0000"+
+ "\u0000\u0443\u0444\u0001\u0000\u0000\u0000\u0444\u0446\u0001\u0000\u0000"+
+ "\u0000\u0445\u0434\u0001\u0000\u0000\u0000\u0445\u043f\u0001\u0000\u0000"+
+ "\u0000\u0446\u00c2\u0001\u0000\u0000\u0000\u0447\u0448\u0005[\u0000\u0000"+
+ "\u0448\u0449\u0001\u0000\u0000\u0000\u0449\u044a\u0006Y\u0000\u0000\u044a"+
+ "\u044b\u0006Y\u0000\u0000\u044b\u00c4\u0001\u0000\u0000\u0000\u044c\u044d"+
+ "\u0005]\u0000\u0000\u044d\u044e\u0001\u0000\u0000\u0000\u044e\u044f\u0006"+
+ "Z\r\u0000\u044f\u0450\u0006Z\r\u0000\u0450\u00c6\u0001\u0000\u0000\u0000"+
+ "\u0451\u0455\u0003S!\u0000\u0452\u0454\u0003c)\u0000\u0453\u0452\u0001"+
+ "\u0000\u0000\u0000\u0454\u0457\u0001\u0000\u0000\u0000\u0455\u0453\u0001"+
+ "\u0000\u0000\u0000\u0455\u0456\u0001\u0000\u0000\u0000\u0456\u0462\u0001"+
+ "\u0000\u0000\u0000\u0457\u0455\u0001\u0000\u0000\u0000\u0458\u045b\u0003"+
+ "a(\u0000\u0459\u045b\u0003[%\u0000\u045a\u0458\u0001\u0000\u0000\u0000"+
+ "\u045a\u0459\u0001\u0000\u0000\u0000\u045b\u045d\u0001\u0000\u0000\u0000"+
+ "\u045c\u045e\u0003c)\u0000\u045d\u045c\u0001\u0000\u0000\u0000\u045e\u045f"+
+ "\u0001\u0000\u0000\u0000\u045f\u045d\u0001\u0000\u0000\u0000\u045f\u0460"+
+ "\u0001\u0000\u0000\u0000\u0460\u0462\u0001\u0000\u0000\u0000\u0461\u0451"+
+ "\u0001\u0000\u0000\u0000\u0461\u045a\u0001\u0000\u0000\u0000\u0462\u00c8"+
+ "\u0001\u0000\u0000\u0000\u0463\u0465\u0003]&\u0000\u0464\u0466\u0003_"+
+ "\'\u0000\u0465\u0464\u0001\u0000\u0000\u0000\u0466\u0467\u0001\u0000\u0000"+
+ "\u0000\u0467\u0465\u0001\u0000\u0000\u0000\u0467\u0468\u0001\u0000\u0000"+
+ "\u0000\u0468\u0469\u0001\u0000\u0000\u0000\u0469\u046a\u0003]&\u0000\u046a"+
+ "\u00ca\u0001\u0000\u0000\u0000\u046b\u046c\u0003\u00c9\\\u0000\u046c\u00cc"+
+ "\u0001\u0000\u0000\u0000\u046d\u046e\u0003I\u001c\u0000\u046e\u046f\u0001"+
+ "\u0000\u0000\u0000\u046f\u0470\u0006^\f\u0000\u0470\u00ce\u0001\u0000"+
+ "\u0000\u0000\u0471\u0472\u0003K\u001d\u0000\u0472\u0473\u0001\u0000\u0000"+
+ "\u0000\u0473\u0474\u0006_\f\u0000\u0474\u00d0\u0001\u0000\u0000\u0000"+
+ "\u0475\u0476\u0003M\u001e\u0000\u0476\u0477\u0001\u0000\u0000\u0000\u0477"+
+ "\u0478\u0006`\f\u0000\u0478\u00d2\u0001\u0000\u0000\u0000\u0479\u047a"+
+ "\u0003\u00c3Y\u0000\u047a\u047b\u0001\u0000\u0000\u0000\u047b\u047c\u0006"+
+ "a\u000f\u0000\u047c\u047d\u0006a\u0010\u0000\u047d\u00d4\u0001\u0000\u0000"+
+ "\u0000\u047e\u047f\u0003O\u001f\u0000\u047f\u0480\u0001\u0000\u0000\u0000"+
+ "\u0480\u0481\u0006b\u0011\u0000\u0481\u0482\u0006b\r\u0000\u0482\u00d6"+
+ "\u0001\u0000\u0000\u0000\u0483\u0484\u0003M\u001e\u0000\u0484\u0485\u0001"+
+ "\u0000\u0000\u0000\u0485\u0486\u0006c\f\u0000\u0486\u00d8\u0001\u0000"+
+ "\u0000\u0000\u0487\u0488\u0003I\u001c\u0000\u0488\u0489\u0001\u0000\u0000"+
+ "\u0000\u0489\u048a\u0006d\f\u0000\u048a\u00da\u0001\u0000\u0000\u0000"+
+ "\u048b\u048c\u0003K\u001d\u0000\u048c\u048d\u0001\u0000\u0000\u0000\u048d"+
+ "\u048e\u0006e\f\u0000\u048e\u00dc\u0001\u0000\u0000\u0000\u048f\u0490"+
+ "\u0003O\u001f\u0000\u0490\u0491\u0001\u0000\u0000\u0000\u0491\u0492\u0006"+
+ "f\u0011\u0000\u0492\u0493\u0006f\r\u0000\u0493\u00de\u0001\u0000\u0000"+
+ "\u0000\u0494\u0495\u0003\u00c3Y\u0000\u0495\u0496\u0001\u0000\u0000\u0000"+
+ "\u0496\u0497\u0006g\u000f\u0000\u0497\u00e0\u0001\u0000\u0000\u0000\u0498"+
+ "\u0499\u0003\u00c5Z\u0000\u0499\u049a\u0001\u0000\u0000\u0000\u049a\u049b"+
+ "\u0006h\u0012\u0000\u049b\u00e2\u0001\u0000\u0000\u0000\u049c\u049d\u0003"+
+ "u2\u0000\u049d\u049e\u0001\u0000\u0000\u0000\u049e\u049f\u0006i\u0013"+
+ "\u0000\u049f\u00e4\u0001\u0000\u0000\u0000\u04a0\u04a1\u0003s1\u0000\u04a1"+
+ "\u04a2\u0001\u0000\u0000\u0000\u04a2\u04a3\u0006j\u0014\u0000\u04a3\u00e6"+
+ "\u0001\u0000\u0000\u0000\u04a4\u04a5\u0003w3\u0000\u04a5\u04a6\u0001\u0000"+
+ "\u0000\u0000\u04a6\u04a7\u0006k\u0015\u0000\u04a7\u00e8\u0001\u0000\u0000"+
+ "\u0000\u04a8\u04a9\u0003o/\u0000\u04a9\u04aa\u0001\u0000\u0000\u0000\u04aa"+
+ "\u04ab\u0006l\u0016\u0000\u04ab\u00ea\u0001\u0000\u0000\u0000\u04ac\u04ad"+
+ "\u0007\u0002\u0000\u0000\u04ad\u04ae\u0007\u0005\u0000\u0000\u04ae\u04af"+
+ "\u0007\u0006\u0000\u0000\u04af\u04b0\u0007\u000e\u0000\u0000\u04b0\u04b1"+
+ "\u0007\t\u0000\u0000\u04b1\u04b2\u0007\u000e\u0000\u0000\u04b2\u04b3\u0007"+
+ "\u0006\u0000\u0000\u04b3\u04b4\u0007\u000e\u0000\u0000\u04b4\u00ec\u0001"+
+ "\u0000\u0000\u0000\u04b5\u04b9\b \u0000\u0000\u04b6\u04b7\u0005/\u0000"+
+ "\u0000\u04b7\u04b9\b!\u0000\u0000\u04b8\u04b5\u0001\u0000\u0000\u0000"+
+ "\u04b8\u04b6\u0001\u0000\u0000\u0000\u04b9\u00ee\u0001\u0000\u0000\u0000"+
+ "\u04ba\u04bc\u0003\u00edn\u0000\u04bb\u04ba\u0001\u0000\u0000\u0000\u04bc"+
+ "\u04bd\u0001\u0000\u0000\u0000\u04bd\u04bb\u0001\u0000\u0000\u0000\u04bd"+
+ "\u04be\u0001\u0000\u0000\u0000\u04be\u00f0\u0001\u0000\u0000\u0000\u04bf"+
+ "\u04c0\u0003\u00efo\u0000\u04c0\u04c1\u0001\u0000\u0000\u0000\u04c1\u04c2"+
+ "\u0006p\u0017\u0000\u04c2\u00f2\u0001\u0000\u0000\u0000\u04c3\u04c4\u0003"+
+ "e*\u0000\u04c4\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0006q\u0018"+
+ "\u0000\u04c6\u00f4\u0001\u0000\u0000\u0000\u04c7\u04c8\u0003I\u001c\u0000"+
+ "\u04c8\u04c9\u0001\u0000\u0000\u0000\u04c9\u04ca\u0006r\f\u0000\u04ca"+
+ "\u00f6\u0001\u0000\u0000\u0000\u04cb\u04cc\u0003K\u001d\u0000\u04cc\u04cd"+
+ "\u0001\u0000\u0000\u0000\u04cd\u04ce\u0006s\f\u0000\u04ce\u00f8\u0001"+
+ "\u0000\u0000\u0000\u04cf\u04d0\u0003M\u001e\u0000\u04d0\u04d1\u0001\u0000"+
+ "\u0000\u0000\u04d1\u04d2\u0006t\f\u0000\u04d2\u00fa\u0001\u0000\u0000"+
+ "\u0000\u04d3\u04d4\u0003O\u001f\u0000\u04d4\u04d5\u0001\u0000\u0000\u0000"+
+ "\u04d5\u04d6\u0006u\u0011\u0000\u04d6\u04d7\u0006u\r\u0000\u04d7\u00fc"+
+ "\u0001\u0000\u0000\u0000\u04d8\u04d9\u0003{5\u0000\u04d9\u04da\u0001\u0000"+
+ "\u0000\u0000\u04da\u04db\u0006v\u0019\u0000\u04db\u00fe\u0001\u0000\u0000"+
+ "\u0000\u04dc\u04dd\u0003w3\u0000\u04dd\u04de\u0001\u0000\u0000\u0000\u04de"+
+ "\u04df\u0006w\u0015\u0000\u04df\u0100\u0001\u0000\u0000\u0000\u04e0\u04e1"+
+ "\u0003\u0095B\u0000\u04e1\u04e2\u0001\u0000\u0000\u0000\u04e2\u04e3\u0006"+
+ "x\u001a\u0000\u04e3\u0102\u0001\u0000\u0000\u0000\u04e4\u04e5\u0003\u00bf"+
+ "W\u0000\u04e5\u04e6\u0001\u0000\u0000\u0000\u04e6\u04e7\u0006y\u001b\u0000"+
+ "\u04e7\u0104\u0001\u0000\u0000\u0000\u04e8\u04e9\u0003\u00bbU\u0000\u04e9"+
+ "\u04ea\u0001\u0000\u0000\u0000\u04ea\u04eb\u0006z\u001c\u0000\u04eb\u0106"+
+ "\u0001\u0000\u0000\u0000\u04ec\u04ed\u0003\u00c1X\u0000\u04ed\u04ee\u0001"+
+ "\u0000\u0000\u0000\u04ee\u04ef\u0006{\u001d\u0000\u04ef\u0108\u0001\u0000"+
+ "\u0000\u0000\u04f0\u04f5\u0003S!\u0000\u04f1\u04f5\u0003Q \u0000\u04f2"+
+ "\u04f5\u0003a(\u0000\u04f3\u04f5\u0003\u00b1P\u0000\u04f4\u04f0\u0001"+
+ "\u0000\u0000\u0000\u04f4\u04f1\u0001\u0000\u0000\u0000\u04f4\u04f2\u0001"+
+ "\u0000\u0000\u0000\u04f4\u04f3\u0001\u0000\u0000\u0000\u04f5\u010a\u0001"+
+ "\u0000\u0000\u0000\u04f6\u04f9\u0003S!\u0000\u04f7\u04f9\u0003\u00b1P"+
+ "\u0000\u04f8\u04f6\u0001\u0000\u0000\u0000\u04f8\u04f7\u0001\u0000\u0000"+
+ "\u0000\u04f9\u04fd\u0001\u0000\u0000\u0000\u04fa\u04fc\u0003\u0109|\u0000"+
+ "\u04fb\u04fa\u0001\u0000\u0000\u0000\u04fc\u04ff\u0001\u0000\u0000\u0000"+
+ "\u04fd\u04fb\u0001\u0000\u0000\u0000\u04fd\u04fe\u0001\u0000\u0000\u0000"+
+ "\u04fe\u050a\u0001\u0000\u0000\u0000\u04ff\u04fd\u0001\u0000\u0000\u0000"+
+ "\u0500\u0503\u0003a(\u0000\u0501\u0503\u0003[%\u0000\u0502\u0500\u0001"+
+ "\u0000\u0000\u0000\u0502\u0501\u0001\u0000\u0000\u0000\u0503\u0505\u0001"+
+ "\u0000\u0000\u0000\u0504\u0506\u0003\u0109|\u0000\u0505\u0504\u0001\u0000"+
+ "\u0000\u0000\u0506\u0507\u0001\u0000\u0000\u0000\u0507\u0505\u0001\u0000"+
+ "\u0000\u0000\u0507\u0508\u0001\u0000\u0000\u0000\u0508\u050a\u0001\u0000"+
+ "\u0000\u0000\u0509\u04f8\u0001\u0000\u0000\u0000\u0509\u0502\u0001\u0000"+
+ "\u0000\u0000\u050a\u010c\u0001\u0000\u0000\u0000\u050b\u050e\u0003\u010b"+
+ "}\u0000\u050c\u050e\u0003\u00c9\\\u0000\u050d\u050b\u0001\u0000\u0000"+
+ "\u0000\u050d\u050c\u0001\u0000\u0000\u0000\u050e\u050f\u0001\u0000\u0000"+
+ "\u0000\u050f\u050d\u0001\u0000\u0000\u0000\u050f\u0510\u0001\u0000\u0000"+
+ "\u0000\u0510\u010e\u0001\u0000\u0000\u0000\u0511\u0512\u0003I\u001c\u0000"+
+ "\u0512\u0513\u0001\u0000\u0000\u0000\u0513\u0514\u0006\u007f\f\u0000\u0514"+
+ "\u0110\u0001\u0000\u0000\u0000\u0515\u0516\u0003K\u001d\u0000\u0516\u0517"+
+ "\u0001\u0000\u0000\u0000\u0517\u0518\u0006\u0080\f\u0000\u0518\u0112\u0001"+
+ "\u0000\u0000\u0000\u0519\u051a\u0003M\u001e\u0000\u051a\u051b\u0001\u0000"+
+ "\u0000\u0000\u051b\u051c\u0006\u0081\f\u0000\u051c\u0114\u0001\u0000\u0000"+
+ "\u0000\u051d\u051e\u0003O\u001f\u0000\u051e\u051f\u0001\u0000\u0000\u0000"+
+ "\u051f\u0520\u0006\u0082\u0011\u0000\u0520\u0521\u0006\u0082\r\u0000\u0521"+
+ "\u0116\u0001\u0000\u0000\u0000\u0522\u0523\u0003o/\u0000\u0523\u0524\u0001"+
+ "\u0000\u0000\u0000\u0524\u0525\u0006\u0083\u0016\u0000\u0525\u0118\u0001"+
+ "\u0000\u0000\u0000\u0526\u0527\u0003w3\u0000\u0527\u0528\u0001\u0000\u0000"+
+ "\u0000\u0528\u0529\u0006\u0084\u0015\u0000\u0529\u011a\u0001\u0000\u0000"+
+ "\u0000\u052a\u052b\u0003{5\u0000\u052b\u052c\u0001\u0000\u0000\u0000\u052c"+
+ "\u052d\u0006\u0085\u0019\u0000\u052d\u011c\u0001\u0000\u0000\u0000\u052e"+
+ "\u052f\u0003\u0095B\u0000\u052f\u0530\u0001\u0000\u0000\u0000\u0530\u0531"+
+ "\u0006\u0086\u001a\u0000\u0531\u011e\u0001\u0000\u0000\u0000\u0532\u0533"+
+ "\u0003\u00bfW\u0000\u0533\u0534\u0001\u0000\u0000\u0000\u0534\u0535\u0006"+
+ "\u0087\u001b\u0000\u0535\u0120\u0001\u0000\u0000\u0000\u0536\u0537\u0003"+
+ "\u00bbU\u0000\u0537\u0538\u0001\u0000\u0000\u0000\u0538\u0539\u0006\u0088"+
+ "\u001c\u0000\u0539\u0122\u0001\u0000\u0000\u0000\u053a\u053b\u0003\u00c1"+
+ "X\u0000\u053b\u053c\u0001\u0000\u0000\u0000\u053c\u053d\u0006\u0089\u001d"+
+ "\u0000\u053d\u0124\u0001\u0000\u0000\u0000\u053e\u053f\u0007\u000e\u0000"+
+ "\u0000\u053f\u0540\u0007\n\u0000\u0000\u0540\u0126\u0001\u0000\u0000\u0000"+
+ "\u0541\u0542\u0003\u010d~\u0000\u0542\u0543\u0001\u0000\u0000\u0000\u0543"+
+ "\u0544\u0006\u008b\u001e\u0000\u0544\u0128\u0001\u0000\u0000\u0000\u0545"+
+ "\u0546\u0003I\u001c\u0000\u0546\u0547\u0001\u0000\u0000\u0000\u0547\u0548"+
+ "\u0006\u008c\f\u0000\u0548\u012a\u0001\u0000\u0000\u0000\u0549\u054a\u0003"+
+ "K\u001d\u0000\u054a\u054b\u0001\u0000\u0000\u0000\u054b\u054c\u0006\u008d"+
+ "\f\u0000\u054c\u012c\u0001\u0000\u0000\u0000\u054d\u054e\u0003M\u001e"+
+ "\u0000\u054e\u054f\u0001\u0000\u0000\u0000\u054f\u0550\u0006\u008e\f\u0000"+
+ "\u0550\u012e\u0001\u0000\u0000\u0000\u0551\u0552\u0003O\u001f\u0000\u0552"+
+ "\u0553\u0001\u0000\u0000\u0000\u0553\u0554\u0006\u008f\u0011\u0000\u0554"+
+ "\u0555\u0006\u008f\r\u0000\u0555\u0130\u0001\u0000\u0000\u0000\u0556\u0557"+
+ "\u0003\u00c3Y\u0000\u0557\u0558\u0001\u0000\u0000\u0000\u0558\u0559\u0006"+
+ "\u0090\u000f\u0000\u0559\u055a\u0006\u0090\u001f\u0000\u055a\u0132\u0001"+
+ "\u0000\u0000\u0000\u055b\u055c\u0003\u0091@\u0000\u055c\u055d\u0001\u0000"+
+ "\u0000\u0000\u055d\u055e\u0006\u0091 \u0000\u055e\u055f\u0006\u0091!\u0000"+
+ "\u055f\u0134\u0001\u0000\u0000\u0000\u0560\u0561\u0003\u009dF\u0000\u0561"+
+ "\u0562\u0001\u0000\u0000\u0000\u0562\u0563\u0006\u0092\"\u0000\u0563\u0564"+
+ "\u0006\u0092!\u0000\u0564\u0136\u0001\u0000\u0000\u0000\u0565\u0566\b"+
+ "\"\u0000\u0000\u0566\u0138\u0001\u0000\u0000\u0000\u0567\u0569\u0003\u0137"+
+ "\u0093\u0000\u0568\u0567\u0001\u0000\u0000\u0000\u0569\u056a\u0001\u0000"+
+ "\u0000\u0000\u056a\u0568\u0001\u0000\u0000\u0000\u056a\u056b\u0001\u0000"+
+ "\u0000\u0000\u056b\u056c\u0001\u0000\u0000\u0000\u056c\u056d\u0003u2\u0000"+
+ "\u056d\u056f\u0001\u0000\u0000\u0000\u056e\u0568\u0001\u0000\u0000\u0000"+
+ "\u056e\u056f\u0001\u0000\u0000\u0000\u056f\u0571\u0001\u0000\u0000\u0000"+
+ "\u0570\u0572\u0003\u0137\u0093\u0000\u0571\u0570\u0001\u0000\u0000\u0000"+
+ "\u0572\u0573\u0001\u0000\u0000\u0000\u0573\u0571\u0001\u0000\u0000\u0000"+
+ "\u0573\u0574\u0001\u0000\u0000\u0000\u0574\u013a\u0001\u0000\u0000\u0000"+
+ "\u0575\u0576\u0003\u0139\u0094\u0000\u0576\u0577\u0001\u0000\u0000\u0000"+
+ "\u0577\u0578\u0006\u0095#\u0000\u0578\u013c\u0001\u0000\u0000\u0000\u0579"+
+ "\u057a\u0003I\u001c\u0000\u057a\u057b\u0001\u0000\u0000\u0000\u057b\u057c"+
+ "\u0006\u0096\f\u0000\u057c\u013e\u0001\u0000\u0000\u0000\u057d\u057e\u0003"+
+ "K\u001d\u0000\u057e\u057f\u0001\u0000\u0000\u0000\u057f\u0580\u0006\u0097"+
+ "\f\u0000\u0580\u0140\u0001\u0000\u0000\u0000\u0581\u0582\u0003M\u001e"+
+ "\u0000\u0582\u0583\u0001\u0000\u0000\u0000\u0583\u0584\u0006\u0098\f\u0000"+
+ "\u0584\u0142\u0001\u0000\u0000\u0000\u0585\u0586\u0003O\u001f\u0000\u0586"+
+ "\u0587\u0001\u0000\u0000\u0000\u0587\u0588\u0006\u0099\u0011\u0000\u0588"+
+ "\u0589\u0006\u0099\r\u0000\u0589\u058a\u0006\u0099\r\u0000\u058a\u0144"+
+ "\u0001\u0000\u0000\u0000\u058b\u058c\u0003o/\u0000\u058c\u058d\u0001\u0000"+
+ "\u0000\u0000\u058d\u058e\u0006\u009a\u0016\u0000\u058e\u0146\u0001\u0000"+
+ "\u0000\u0000\u058f\u0590\u0003w3\u0000\u0590\u0591\u0001\u0000\u0000\u0000"+
+ "\u0591\u0592\u0006\u009b\u0015\u0000\u0592\u0148\u0001\u0000\u0000\u0000"+
+ "\u0593\u0594\u0003{5\u0000\u0594\u0595\u0001\u0000\u0000\u0000\u0595\u0596"+
+ "\u0006\u009c\u0019\u0000\u0596\u014a\u0001\u0000\u0000\u0000\u0597\u0598"+
+ "\u0003\u009dF\u0000\u0598\u0599\u0001\u0000\u0000\u0000\u0599\u059a\u0006"+
+ "\u009d\"\u0000\u059a\u014c\u0001\u0000\u0000\u0000\u059b\u059c\u0003\u010d"+
+ "~\u0000\u059c\u059d\u0001\u0000\u0000\u0000\u059d\u059e\u0006\u009e\u001e"+
+ "\u0000\u059e\u014e\u0001\u0000\u0000\u0000\u059f\u05a0\u0003\u00cb]\u0000"+
+ "\u05a0\u05a1\u0001\u0000\u0000\u0000\u05a1\u05a2\u0006\u009f$\u0000\u05a2"+
+ "\u0150\u0001\u0000\u0000\u0000\u05a3\u05a4\u0003\u0095B\u0000\u05a4\u05a5"+
+ "\u0001\u0000\u0000\u0000\u05a5\u05a6\u0006\u00a0\u001a\u0000\u05a6\u0152"+
+ "\u0001\u0000\u0000\u0000\u05a7\u05a8\u0003\u00bfW\u0000\u05a8\u05a9\u0001"+
+ "\u0000\u0000\u0000\u05a9\u05aa\u0006\u00a1\u001b\u0000\u05aa\u0154\u0001"+
+ "\u0000\u0000\u0000\u05ab\u05ac\u0003\u00bbU\u0000\u05ac\u05ad\u0001\u0000"+
+ "\u0000\u0000\u05ad\u05ae\u0006\u00a2\u001c\u0000\u05ae\u0156\u0001\u0000"+
+ "\u0000\u0000\u05af\u05b0\u0003\u00c1X\u0000\u05b0\u05b1\u0001\u0000\u0000"+
+ "\u0000\u05b1\u05b2\u0006\u00a3\u001d\u0000\u05b2\u0158\u0001\u0000\u0000"+
+ "\u0000\u05b3\u05b4\u0003I\u001c\u0000\u05b4\u05b5\u0001\u0000\u0000\u0000"+
+ "\u05b5\u05b6\u0006\u00a4\f\u0000\u05b6\u015a\u0001\u0000\u0000\u0000\u05b7"+
+ "\u05b8\u0003K\u001d\u0000\u05b8\u05b9\u0001\u0000\u0000\u0000\u05b9\u05ba"+
+ "\u0006\u00a5\f\u0000\u05ba\u015c\u0001\u0000\u0000\u0000\u05bb\u05bc\u0003"+
+ "M\u001e\u0000\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd\u05be\u0006\u00a6"+
+ "\f\u0000\u05be\u015e\u0001\u0000\u0000\u0000\u05bf\u05c0\u0003O\u001f"+
+ "\u0000\u05c0\u05c1\u0001\u0000\u0000\u0000\u05c1\u05c2\u0006\u00a7\u0011"+
+ "\u0000\u05c2\u05c3\u0006\u00a7\r\u0000\u05c3\u0160\u0001\u0000\u0000\u0000"+
+ "\u05c4\u05c5\u0003{5\u0000\u05c5\u05c6\u0001\u0000\u0000\u0000\u05c6\u05c7"+
+ "\u0006\u00a8\u0019\u0000\u05c7\u0162\u0001\u0000\u0000\u0000\u05c8\u05c9"+
+ "\u0003\u0095B\u0000\u05c9\u05ca\u0001\u0000\u0000\u0000\u05ca\u05cb\u0006"+
+ "\u00a9\u001a\u0000\u05cb\u0164\u0001\u0000\u0000\u0000\u05cc\u05cd\u0003"+
+ "\u00bfW\u0000\u05cd\u05ce\u0001\u0000\u0000\u0000\u05ce\u05cf\u0006\u00aa"+
+ "\u001b\u0000\u05cf\u0166\u0001\u0000\u0000\u0000\u05d0\u05d1\u0003\u00bb"+
+ "U\u0000\u05d1\u05d2\u0001\u0000\u0000\u0000\u05d2\u05d3\u0006\u00ab\u001c"+
+ "\u0000\u05d3\u0168\u0001\u0000\u0000\u0000\u05d4\u05d5\u0003\u00c1X\u0000"+
+ "\u05d5\u05d6\u0001\u0000\u0000\u0000\u05d6\u05d7\u0006\u00ac\u001d\u0000"+
+ "\u05d7\u016a\u0001\u0000\u0000\u0000\u05d8\u05d9\u0003\u00cb]\u0000\u05d9"+
+ "\u05da\u0001\u0000\u0000\u0000\u05da\u05db\u0006\u00ad$\u0000\u05db\u016c"+
+ "\u0001\u0000\u0000\u0000\u05dc\u05dd\u0003\u00c7[\u0000\u05dd\u05de\u0001"+
+ "\u0000\u0000\u0000\u05de\u05df\u0006\u00ae%\u0000\u05df\u016e\u0001\u0000"+
+ "\u0000\u0000\u05e0\u05e1\u0003I\u001c\u0000\u05e1\u05e2\u0001\u0000\u0000"+
+ "\u0000\u05e2\u05e3\u0006\u00af\f\u0000\u05e3\u0170\u0001\u0000\u0000\u0000"+
+ "\u05e4\u05e5\u0003K\u001d\u0000\u05e5\u05e6\u0001\u0000\u0000\u0000\u05e6"+
+ "\u05e7\u0006\u00b0\f\u0000\u05e7\u0172\u0001\u0000\u0000\u0000\u05e8\u05e9"+
+ "\u0003M\u001e\u0000\u05e9\u05ea\u0001\u0000\u0000\u0000\u05ea\u05eb\u0006"+
+ "\u00b1\f\u0000\u05eb\u0174\u0001\u0000\u0000\u0000\u05ec\u05ed\u0003O"+
+ "\u001f\u0000\u05ed\u05ee\u0001\u0000\u0000\u0000\u05ee\u05ef\u0006\u00b2"+
+ "\u0011\u0000\u05ef\u05f0\u0006\u00b2\r\u0000\u05f0\u0176\u0001\u0000\u0000"+
+ "\u0000\u05f1\u05f2\u0007\u0007\u0000\u0000\u05f2\u05f3\u0007\b\u0000\u0000"+
+ "\u05f3\u05f4\u0007\u0010\u0000\u0000\u05f4\u05f5\u0007\u0001\u0000\u0000"+
+ "\u05f5\u0178\u0001\u0000\u0000\u0000\u05f6\u05f7\u0003I\u001c\u0000\u05f7"+
+ "\u05f8\u0001\u0000\u0000\u0000\u05f8\u05f9\u0006\u00b4\f\u0000\u05f9\u017a"+
+ "\u0001\u0000\u0000\u0000\u05fa\u05fb\u0003K\u001d\u0000\u05fb\u05fc\u0001"+
+ "\u0000\u0000\u0000\u05fc\u05fd\u0006\u00b5\f\u0000\u05fd\u017c\u0001\u0000"+
+ "\u0000\u0000\u05fe\u05ff\u0003M\u001e\u0000\u05ff\u0600\u0001\u0000\u0000"+
+ "\u0000\u0600\u0601\u0006\u00b6\f\u0000\u0601\u017e\u0001\u0000\u0000\u0000"+
+ "\u0602\u0603\u0003\u00c5Z\u0000\u0603\u0604\u0001\u0000\u0000\u0000\u0604"+
+ "\u0605\u0006\u00b7\u0012\u0000\u0605\u0606\u0006\u00b7\r\u0000\u0606\u0180"+
+ "\u0001\u0000\u0000\u0000\u0607\u0608\u0003u2\u0000\u0608\u0609\u0001\u0000"+
+ "\u0000\u0000\u0609\u060a\u0006\u00b8\u0013\u0000\u060a\u0182\u0001\u0000"+
+ "\u0000\u0000\u060b\u0611\u0003[%\u0000\u060c\u0611\u0003Q \u0000\u060d"+
+ "\u0611\u0003{5\u0000\u060e\u0611\u0003S!\u0000\u060f\u0611\u0003a(\u0000"+
+ "\u0610\u060b\u0001\u0000\u0000\u0000\u0610\u060c\u0001\u0000\u0000\u0000"+
+ "\u0610\u060d\u0001\u0000\u0000\u0000\u0610\u060e\u0001\u0000\u0000\u0000"+
+ "\u0610\u060f\u0001\u0000\u0000\u0000\u0611\u0612\u0001\u0000\u0000\u0000"+
+ "\u0612\u0610\u0001\u0000\u0000\u0000\u0612\u0613\u0001\u0000\u0000\u0000"+
+ "\u0613\u0184\u0001\u0000\u0000\u0000\u0614\u0615\u0003I\u001c\u0000\u0615"+
+ "\u0616\u0001\u0000\u0000\u0000\u0616\u0617\u0006\u00ba\f\u0000\u0617\u0186"+
+ "\u0001\u0000\u0000\u0000\u0618\u0619\u0003K\u001d\u0000\u0619\u061a\u0001"+
+ "\u0000\u0000\u0000\u061a\u061b\u0006\u00bb\f\u0000\u061b\u0188\u0001\u0000"+
+ "\u0000\u0000\u061c\u061d\u0003M\u001e\u0000\u061d\u061e\u0001\u0000\u0000"+
+ "\u0000\u061e\u061f\u0006\u00bc\f\u0000\u061f\u018a\u0001\u0000\u0000\u0000"+
+ "\u0620\u0621\u0003O\u001f\u0000\u0621\u0622\u0001\u0000\u0000\u0000\u0622"+
+ "\u0623\u0006\u00bd\u0011\u0000\u0623\u0624\u0006\u00bd\r\u0000\u0624\u018c"+
+ "\u0001\u0000\u0000\u0000\u0625\u0626\u0003u2\u0000\u0626\u0627\u0001\u0000"+
+ "\u0000\u0000\u0627\u0628\u0006\u00be\u0013\u0000\u0628\u018e\u0001\u0000"+
+ "\u0000\u0000\u0629\u062a\u0003w3\u0000\u062a\u062b\u0001\u0000\u0000\u0000"+
+ "\u062b\u062c\u0006\u00bf\u0015\u0000\u062c\u0190\u0001\u0000\u0000\u0000"+
+ "\u062d\u062e\u0003{5\u0000\u062e\u062f\u0001\u0000\u0000\u0000\u062f\u0630"+
+ "\u0006\u00c0\u0019\u0000\u0630\u0192\u0001\u0000\u0000\u0000\u0631\u0632"+
+ "\u0003\u0091@\u0000\u0632\u0633\u0001\u0000\u0000\u0000\u0633\u0634\u0006"+
+ "\u00c1 \u0000\u0634\u0635\u0006\u00c1&\u0000\u0635\u0194\u0001\u0000\u0000"+
+ "\u0000\u0636\u0637\u0003\u00efo\u0000\u0637\u0638\u0001\u0000\u0000\u0000"+
+ "\u0638\u0639\u0006\u00c2\u0017\u0000\u0639\u0196\u0001\u0000\u0000\u0000"+
+ "\u063a\u063b\u0003e*\u0000\u063b\u063c\u0001\u0000\u0000\u0000\u063c\u063d"+
+ "\u0006\u00c3\u0018\u0000\u063d\u0198\u0001\u0000\u0000\u0000\u063e\u063f"+
+ "\u0003I\u001c\u0000\u063f\u0640\u0001\u0000\u0000\u0000\u0640\u0641\u0006"+
+ "\u00c4\f\u0000\u0641\u019a\u0001\u0000\u0000\u0000\u0642\u0643\u0003K"+
+ "\u001d\u0000\u0643\u0644\u0001\u0000\u0000\u0000\u0644\u0645\u0006\u00c5"+
+ "\f\u0000\u0645\u019c\u0001\u0000\u0000\u0000\u0646\u0647\u0003M\u001e"+
+ "\u0000\u0647\u0648\u0001\u0000\u0000\u0000\u0648\u0649\u0006\u00c6\f\u0000"+
+ "\u0649\u019e\u0001\u0000\u0000\u0000\u064a\u064b\u0003O\u001f\u0000\u064b"+
+ "\u064c\u0001\u0000\u0000\u0000\u064c\u064d\u0006\u00c7\u0011\u0000\u064d"+
+ "\u064e\u0006\u00c7\r\u0000\u064e\u064f\u0006\u00c7\r\u0000\u064f\u01a0"+
+ "\u0001\u0000\u0000\u0000\u0650\u0651\u0003w3\u0000\u0651\u0652\u0001\u0000"+
+ "\u0000\u0000\u0652\u0653\u0006\u00c8\u0015\u0000\u0653\u01a2\u0001\u0000"+
+ "\u0000\u0000\u0654\u0655\u0003{5\u0000\u0655\u0656\u0001\u0000\u0000\u0000"+
+ "\u0656\u0657\u0006\u00c9\u0019\u0000\u0657\u01a4\u0001\u0000\u0000\u0000"+
+ "\u0658\u0659\u0003\u010d~\u0000\u0659\u065a\u0001\u0000\u0000\u0000\u065a"+
+ "\u065b\u0006\u00ca\u001e\u0000\u065b\u01a6\u0001\u0000\u0000\u0000\u065c"+
+ "\u065d\u0003I\u001c\u0000\u065d\u065e\u0001\u0000\u0000\u0000\u065e\u065f"+
+ "\u0006\u00cb\f\u0000\u065f\u01a8\u0001\u0000\u0000\u0000\u0660\u0661\u0003"+
+ "K\u001d\u0000\u0661\u0662\u0001\u0000\u0000\u0000\u0662\u0663\u0006\u00cc"+
+ "\f\u0000\u0663\u01aa\u0001\u0000\u0000\u0000\u0664\u0665\u0003M\u001e"+
+ "\u0000\u0665\u0666\u0001\u0000\u0000\u0000\u0666\u0667\u0006\u00cd\f\u0000"+
+ "\u0667\u01ac\u0001\u0000\u0000\u0000\u0668\u0669\u0003O\u001f\u0000\u0669"+
+ "\u066a\u0001\u0000\u0000\u0000\u066a\u066b\u0006\u00ce\u0011\u0000\u066b"+
+ "\u066c\u0006\u00ce\r\u0000\u066c\u01ae\u0001\u0000\u0000\u0000\u066d\u066e"+
+ "\u0007#\u0000\u0000\u066e\u066f\u0007\u0001\u0000\u0000\u066f\u0670\u0007"+
+ "\u0007\u0000\u0000\u0670\u0671\u0007\b\u0000\u0000\u0671\u01b0\u0001\u0000"+
+ "\u0000\u0000\u0672\u0673\u0003\u0125\u008a\u0000\u0673\u0674\u0001\u0000"+
+ "\u0000\u0000\u0674\u0675\u0006\u00d0\'\u0000\u0675\u01b2\u0001\u0000\u0000"+
+ "\u0000\u0676\u0677\u0003\u0091@\u0000\u0677\u0678\u0001\u0000\u0000\u0000"+
+ "\u0678\u0679\u0006\u00d1 \u0000\u0679\u067a\u0006\u00d1\r\u0000\u067a"+
+ "\u067b\u0006\u00d1\u0000\u0000\u067b\u01b4\u0001\u0000\u0000\u0000\u067c"+
+ "\u067d\u0007\u0014\u0000\u0000\u067d\u067e\u0007\n\u0000\u0000\u067e\u067f"+
+ "\u0007\u0007\u0000\u0000\u067f\u0680\u0007\b\u0000\u0000\u0680\u0681\u0007"+
+ "\u0011\u0000\u0000\u0681\u0682\u0001\u0000\u0000\u0000\u0682\u0683\u0006"+
+ "\u00d2\r\u0000\u0683\u0684\u0006\u00d2\u0000\u0000\u0684\u01b6\u0001\u0000"+
+ "\u0000\u0000\u0685\u0686\u0003\u00efo\u0000\u0686\u0687\u0001\u0000\u0000"+
+ "\u0000\u0687\u0688\u0006\u00d3\u0017\u0000\u0688\u01b8\u0001\u0000\u0000"+
+ "\u0000\u0689\u068a\u0003e*\u0000\u068a\u068b\u0001\u0000\u0000\u0000\u068b"+
+ "\u068c\u0006\u00d4\u0018\u0000\u068c\u01ba\u0001\u0000\u0000\u0000\u068d"+
+ "\u068e\u0003u2\u0000\u068e\u068f\u0001\u0000\u0000\u0000\u068f\u0690\u0006"+
+ "\u00d5\u0013\u0000\u0690\u01bc\u0001\u0000\u0000\u0000\u0691\u0692\u0003"+
+ "\u00c7[\u0000\u0692\u0693\u0001\u0000\u0000\u0000\u0693\u0694\u0006\u00d6"+
+ "%\u0000\u0694\u01be\u0001\u0000\u0000\u0000\u0695\u0696\u0003\u00cb]\u0000"+
+ "\u0696\u0697\u0001\u0000\u0000\u0000\u0697\u0698\u0006\u00d7$\u0000\u0698"+
+ "\u01c0\u0001\u0000\u0000\u0000\u0699\u069a\u0003I\u001c\u0000\u069a\u069b"+
+ "\u0001\u0000\u0000\u0000\u069b\u069c\u0006\u00d8\f\u0000\u069c\u01c2\u0001"+
+ "\u0000\u0000\u0000\u069d\u069e\u0003K\u001d\u0000\u069e\u069f\u0001\u0000"+
+ "\u0000\u0000\u069f\u06a0\u0006\u00d9\f\u0000\u06a0\u01c4\u0001\u0000\u0000"+
+ "\u0000\u06a1\u06a2\u0003M\u001e\u0000\u06a2\u06a3\u0001\u0000\u0000\u0000"+
+ "\u06a3\u06a4\u0006\u00da\f\u0000\u06a4\u01c6\u0001\u0000\u0000\u0000\u06a5"+
+ "\u06a6\u0003O\u001f\u0000\u06a6\u06a7\u0001\u0000\u0000\u0000\u06a7\u06a8"+
+ "\u0006\u00db\u0011\u0000\u06a8\u06a9\u0006\u00db\r\u0000\u06a9\u01c8\u0001"+
+ "\u0000\u0000\u0000\u06aa\u06ab\u0003\u00efo\u0000\u06ab\u06ac\u0001\u0000"+
+ "\u0000\u0000\u06ac\u06ad\u0006\u00dc\u0017\u0000\u06ad\u06ae\u0006\u00dc"+
+ "\r\u0000\u06ae\u06af\u0006\u00dc(\u0000\u06af\u01ca\u0001\u0000\u0000"+
+ "\u0000\u06b0\u06b1\u0003e*\u0000\u06b1\u06b2\u0001\u0000\u0000\u0000\u06b2"+
+ "\u06b3\u0006\u00dd\u0018\u0000\u06b3\u06b4\u0006\u00dd\r\u0000\u06b4\u06b5"+
+ "\u0006\u00dd(\u0000\u06b5\u01cc\u0001\u0000\u0000\u0000\u06b6\u06b7\u0003"+
+ "I\u001c\u0000\u06b7\u06b8\u0001\u0000\u0000\u0000\u06b8\u06b9\u0006\u00de"+
+ "\f\u0000\u06b9\u01ce\u0001\u0000\u0000\u0000\u06ba\u06bb\u0003K\u001d"+
+ "\u0000\u06bb\u06bc\u0001\u0000\u0000\u0000\u06bc\u06bd\u0006\u00df\f\u0000"+
+ "\u06bd\u01d0\u0001\u0000\u0000\u0000\u06be\u06bf\u0003M\u001e\u0000\u06bf"+
+ "\u06c0\u0001\u0000\u0000\u0000\u06c0\u06c1\u0006\u00e0\f\u0000\u06c1\u01d2"+
+ "\u0001\u0000\u0000\u0000\u06c2\u06c3\u0003u2\u0000\u06c3\u06c4\u0001\u0000"+
+ "\u0000\u0000\u06c4\u06c5\u0006\u00e1\u0013\u0000\u06c5\u06c6\u0006\u00e1"+
+ "\r\u0000\u06c6\u06c7\u0006\u00e1\u000b\u0000\u06c7\u01d4\u0001\u0000\u0000"+
+ "\u0000\u06c8\u06c9\u0003s1\u0000\u06c9\u06ca\u0001\u0000\u0000\u0000\u06ca"+
+ "\u06cb\u0006\u00e2\u0014\u0000\u06cb\u06cc\u0006\u00e2\r\u0000\u06cc\u06cd"+
+ "\u0006\u00e2\u000b\u0000\u06cd\u01d6\u0001\u0000\u0000\u0000\u06ce\u06cf"+
+ "\u0003w3\u0000\u06cf\u06d0\u0001\u0000\u0000\u0000\u06d0\u06d1\u0006\u00e3"+
+ "\u0015\u0000\u06d1\u06d2\u0006\u00e3\r\u0000\u06d2\u06d3\u0006\u00e3\u000b"+
+ "\u0000\u06d3\u01d8\u0001\u0000\u0000\u0000\u06d4\u06d5\u0003I\u001c\u0000"+
+ "\u06d5\u06d6\u0001\u0000\u0000\u0000\u06d6\u06d7\u0006\u00e4\f\u0000\u06d7"+
+ "\u01da\u0001\u0000\u0000\u0000\u06d8\u06d9\u0003K\u001d\u0000\u06d9\u06da"+
+ "\u0001\u0000\u0000\u0000\u06da\u06db\u0006\u00e5\f\u0000\u06db\u01dc\u0001"+
+ "\u0000\u0000\u0000\u06dc\u06dd\u0003M\u001e\u0000\u06dd\u06de\u0001\u0000"+
+ "\u0000\u0000\u06de\u06df\u0006\u00e6\f\u0000\u06df\u01de\u0001\u0000\u0000"+
+ "\u0000\u06e0\u06e1\u0003\u00cb]\u0000\u06e1\u06e2\u0001\u0000\u0000\u0000"+
+ "\u06e2\u06e3\u0006\u00e7\r\u0000\u06e3\u06e4\u0006\u00e7\u0000\u0000\u06e4"+
+ "\u06e5\u0006\u00e7$\u0000\u06e5\u01e0\u0001\u0000\u0000\u0000\u06e6\u06e7"+
+ "\u0003\u00c7[\u0000\u06e7\u06e8\u0001\u0000\u0000\u0000\u06e8\u06e9\u0006"+
+ "\u00e8\r\u0000\u06e9\u06ea\u0006\u00e8\u0000\u0000\u06ea\u06eb\u0006\u00e8"+
+ "%\u0000\u06eb\u01e2\u0001\u0000\u0000\u0000\u06ec\u06ed\u0003q0\u0000"+
+ "\u06ed\u06ee\u0001\u0000\u0000\u0000\u06ee\u06ef\u0006\u00e9\r\u0000\u06ef"+
+ "\u06f0\u0006\u00e9\u0000\u0000\u06f0\u06f1\u0006\u00e9)\u0000\u06f1\u01e4"+
+ "\u0001\u0000\u0000\u0000\u06f2\u06f3\u0003O\u001f\u0000\u06f3\u06f4\u0001"+
+ "\u0000\u0000\u0000\u06f4\u06f5\u0006\u00ea\u0011\u0000\u06f5\u06f6\u0006"+
+ "\u00ea\r\u0000\u06f6\u01e6\u0001\u0000\u0000\u0000\u06f7\u06f8\u0003O"+
+ "\u001f\u0000\u06f8\u06f9\u0001\u0000\u0000\u0000\u06f9\u06fa\u0006\u00eb"+
+ "\u0011\u0000\u06fa\u06fb\u0006\u00eb\r\u0000\u06fb\u01e8\u0001\u0000\u0000"+
+ "\u0000\u06fc\u06fd\u0003\u0091@\u0000\u06fd\u06fe\u0001\u0000\u0000\u0000"+
+ "\u06fe\u06ff\u0006\u00ec \u0000\u06ff\u01ea\u0001\u0000\u0000\u0000\u0700"+
+ "\u0701\u0003\u0125\u008a\u0000\u0701\u0702\u0001\u0000\u0000\u0000\u0702"+
+ "\u0703\u0006\u00ed\'\u0000\u0703\u01ec\u0001\u0000\u0000\u0000\u0704\u0705"+
+ "\u0003{5\u0000\u0705\u0706\u0001\u0000\u0000\u0000\u0706\u0707\u0006\u00ee"+
+ "\u0019\u0000\u0707\u01ee\u0001\u0000\u0000\u0000\u0708\u0709\u0003w3\u0000"+
+ "\u0709\u070a\u0001\u0000\u0000\u0000\u070a\u070b\u0006\u00ef\u0015\u0000"+
+ "\u070b\u01f0\u0001\u0000\u0000\u0000\u070c\u070d\u0003\u00cb]\u0000\u070d"+
+ "\u070e\u0001\u0000\u0000\u0000\u070e\u070f\u0006\u00f0$\u0000\u070f\u01f2"+
+ "\u0001\u0000\u0000\u0000\u0710\u0711\u0003\u00c7[\u0000\u0711\u0712\u0001"+
+ "\u0000\u0000\u0000\u0712\u0713\u0006\u00f1%\u0000\u0713\u01f4\u0001\u0000"+
+ "\u0000\u0000\u0714\u0715\u0003I\u001c\u0000\u0715\u0716\u0001\u0000\u0000"+
+ "\u0000\u0716\u0717\u0006\u00f2\f\u0000\u0717\u01f6\u0001\u0000\u0000\u0000"+
+ "\u0718\u0719\u0003K\u001d\u0000\u0719\u071a\u0001\u0000\u0000\u0000\u071a"+
+ "\u071b\u0006\u00f3\f\u0000\u071b\u01f8\u0001\u0000\u0000\u0000\u071c\u071d"+
+ "\u0003M\u001e\u0000\u071d\u071e\u0001\u0000\u0000\u0000\u071e\u071f\u0006"+
+ "\u00f4\f\u0000\u071f\u01fa\u0001\u0000\u0000\u0000G\u0000\u0001\u0002"+
+ "\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u02f6"+
+ "\u0300\u0304\u0307\u0310\u0312\u031d\u0330\u0335\u033e\u0345\u034a\u034c"+
+ "\u0357\u035f\u0362\u0364\u0369\u036e\u0374\u037b\u0380\u0386\u0389\u0391"+
+ "\u0395\u0424\u0429\u0430\u0432\u0437\u043c\u0443\u0445\u0455\u045a\u045f"+
+ "\u0461\u0467\u04b8\u04bd\u04f4\u04f8\u04fd\u0502\u0507\u0509\u050d\u050f"+
+ "\u056a\u056e\u0573\u0610\u0612*\u0005\u0001\u0000\u0005\u0004\u0000\u0005"+
"\u0006\u0000\u0005\u0002\u0000\u0005\u0003\u0000\u0005\b\u0000\u0005\u0005"+
"\u0000\u0005\t\u0000\u0005\r\u0000\u0005\u0010\u0000\u0005\u000b\u0000"+
- "\u0005\u000e\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0007\u0011\u0000"+
+ "\u0005\u000e\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0007\u0012\u0000"+
"\u0007O\u0000\u0005\u0000\u0000\u0007 \u0000\u0007P\u0000\u0007)\u0000"+
"\u0007(\u0000\u0007*\u0000\u0007&\u0000\u0007Z\u0000\u0007!\u0000\u0007"+
",\u0000\u00079\u0000\u0007M\u0000\u0007L\u0000\u0007N\u0000\u0007^\u0000"+
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 f1558b229517d..beb103d327f98 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
@@ -13,6 +13,7 @@ null
'mv_expand'
'rename'
'row'
+'sample'
'show'
'sort'
'stats'
@@ -30,7 +31,6 @@ null
null
null
null
-null
'|'
null
null
@@ -155,6 +155,7 @@ LIMIT
MV_EXPAND
RENAME
ROW
+SAMPLE
SHOW
SORT
STATS
@@ -165,7 +166,6 @@ DEV_INLINESTATS
DEV_LOOKUP
DEV_METRICS
DEV_RERANK
-DEV_SAMPLE
DEV_JOIN_FULL
DEV_JOIN_LEFT
DEV_JOIN_RIGHT
@@ -351,6 +351,7 @@ showCommand
enrichCommand
enrichWithClause
changePointCommand
+sampleCommand
lookupCommand
inlinestatsCommand
joinCommand
@@ -359,8 +360,7 @@ joinCondition
joinPredicate
rerankCommand
completionCommand
-sampleCommand
atn:
-[4, 1, 139, 761, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 200, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 212, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 219, 8, 5, 10, 5, 12, 5, 222, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 229, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 234, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 242, 8, 5, 10, 5, 12, 5, 245, 9, 5, 1, 6, 1, 6, 3, 6, 249, 8, 6, 1, 6, 1, 6, 1, 6, 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, 5, 6, 270, 8, 6, 10, 6, 12, 6, 273, 9, 6, 1, 6, 1, 6, 3, 6, 277, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 282, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 292, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 298, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 306, 8, 9, 10, 9, 12, 9, 309, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 319, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 324, 8, 10, 10, 10, 12, 10, 327, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 335, 8, 11, 10, 11, 12, 11, 338, 9, 11, 1, 11, 1, 11, 3, 11, 342, 8, 11, 3, 11, 344, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 354, 8, 13, 10, 13, 12, 13, 357, 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, 373, 8, 17, 10, 17, 12, 17, 376, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 381, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 388, 8, 19, 10, 19, 12, 19, 391, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 396, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 402, 8, 21, 10, 21, 12, 21, 405, 9, 21, 1, 21, 3, 21, 408, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 419, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 431, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 437, 8, 28, 10, 28, 12, 28, 440, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 450, 8, 30, 10, 30, 12, 30, 453, 9, 30, 1, 30, 3, 30, 456, 8, 30, 1, 30, 1, 30, 3, 30, 460, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 32, 1, 32, 3, 32, 471, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 476, 8, 33, 10, 33, 12, 33, 479, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 484, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 489, 8, 35, 10, 35, 12, 35, 492, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 497, 8, 36, 10, 36, 12, 36, 500, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 505, 8, 37, 10, 37, 12, 37, 508, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 515, 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, 530, 8, 40, 10, 40, 12, 40, 533, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 541, 8, 40, 10, 40, 12, 40, 544, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 552, 8, 40, 10, 40, 12, 40, 555, 9, 40, 1, 40, 1, 40, 3, 40, 559, 8, 40, 1, 41, 1, 41, 3, 41, 563, 8, 41, 1, 42, 1, 42, 3, 42, 567, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 572, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 581, 8, 45, 10, 45, 12, 45, 584, 9, 45, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 46, 1, 46, 3, 46, 592, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 604, 8, 49, 10, 49, 12, 49, 607, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 617, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 623, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 635, 8, 54, 10, 54, 12, 54, 638, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 648, 8, 57, 1, 58, 3, 58, 651, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 656, 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, 678, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 684, 8, 65, 10, 65, 12, 65, 687, 9, 65, 3, 65, 689, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 694, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 702, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 709, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 720, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 733, 8, 72, 10, 72, 12, 72, 736, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 746, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 752, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 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, 18, 18, 26, 27, 794, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 199, 1, 0, 0, 0, 8, 201, 1, 0, 0, 0, 10, 233, 1, 0, 0, 0, 12, 276, 1, 0, 0, 0, 14, 278, 1, 0, 0, 0, 16, 291, 1, 0, 0, 0, 18, 297, 1, 0, 0, 0, 20, 318, 1, 0, 0, 0, 22, 328, 1, 0, 0, 0, 24, 347, 1, 0, 0, 0, 26, 349, 1, 0, 0, 0, 28, 360, 1, 0, 0, 0, 30, 364, 1, 0, 0, 0, 32, 366, 1, 0, 0, 0, 34, 369, 1, 0, 0, 0, 36, 380, 1, 0, 0, 0, 38, 384, 1, 0, 0, 0, 40, 392, 1, 0, 0, 0, 42, 397, 1, 0, 0, 0, 44, 418, 1, 0, 0, 0, 46, 420, 1, 0, 0, 0, 48, 422, 1, 0, 0, 0, 50, 424, 1, 0, 0, 0, 52, 426, 1, 0, 0, 0, 54, 430, 1, 0, 0, 0, 56, 432, 1, 0, 0, 0, 58, 441, 1, 0, 0, 0, 60, 445, 1, 0, 0, 0, 62, 461, 1, 0, 0, 0, 64, 464, 1, 0, 0, 0, 66, 472, 1, 0, 0, 0, 68, 480, 1, 0, 0, 0, 70, 485, 1, 0, 0, 0, 72, 493, 1, 0, 0, 0, 74, 501, 1, 0, 0, 0, 76, 509, 1, 0, 0, 0, 78, 514, 1, 0, 0, 0, 80, 558, 1, 0, 0, 0, 82, 562, 1, 0, 0, 0, 84, 566, 1, 0, 0, 0, 86, 571, 1, 0, 0, 0, 88, 573, 1, 0, 0, 0, 90, 576, 1, 0, 0, 0, 92, 585, 1, 0, 0, 0, 94, 593, 1, 0, 0, 0, 96, 596, 1, 0, 0, 0, 98, 599, 1, 0, 0, 0, 100, 616, 1, 0, 0, 0, 102, 618, 1, 0, 0, 0, 104, 624, 1, 0, 0, 0, 106, 628, 1, 0, 0, 0, 108, 631, 1, 0, 0, 0, 110, 639, 1, 0, 0, 0, 112, 643, 1, 0, 0, 0, 114, 647, 1, 0, 0, 0, 116, 650, 1, 0, 0, 0, 118, 655, 1, 0, 0, 0, 120, 659, 1, 0, 0, 0, 122, 661, 1, 0, 0, 0, 124, 663, 1, 0, 0, 0, 126, 666, 1, 0, 0, 0, 128, 670, 1, 0, 0, 0, 130, 673, 1, 0, 0, 0, 132, 693, 1, 0, 0, 0, 134, 697, 1, 0, 0, 0, 136, 710, 1, 0, 0, 0, 138, 715, 1, 0, 0, 0, 140, 721, 1, 0, 0, 0, 142, 726, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 737, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 747, 1, 0, 0, 0, 152, 757, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 200, 3, 62, 31, 0, 177, 200, 3, 8, 4, 0, 178, 200, 3, 94, 47, 0, 179, 200, 3, 88, 44, 0, 180, 200, 3, 64, 32, 0, 181, 200, 3, 90, 45, 0, 182, 200, 3, 96, 48, 0, 183, 200, 3, 98, 49, 0, 184, 200, 3, 102, 51, 0, 185, 200, 3, 104, 52, 0, 186, 200, 3, 130, 65, 0, 187, 200, 3, 106, 53, 0, 188, 200, 3, 140, 70, 0, 189, 200, 3, 134, 67, 0, 190, 200, 3, 150, 75, 0, 191, 192, 4, 3, 2, 0, 192, 200, 3, 138, 69, 0, 193, 194, 4, 3, 3, 0, 194, 200, 3, 136, 68, 0, 195, 196, 4, 3, 4, 0, 196, 200, 3, 148, 74, 0, 197, 198, 4, 3, 5, 0, 198, 200, 3, 152, 76, 0, 199, 176, 1, 0, 0, 0, 199, 177, 1, 0, 0, 0, 199, 178, 1, 0, 0, 0, 199, 179, 1, 0, 0, 0, 199, 180, 1, 0, 0, 0, 199, 181, 1, 0, 0, 0, 199, 182, 1, 0, 0, 0, 199, 183, 1, 0, 0, 0, 199, 184, 1, 0, 0, 0, 199, 185, 1, 0, 0, 0, 199, 186, 1, 0, 0, 0, 199, 187, 1, 0, 0, 0, 199, 188, 1, 0, 0, 0, 199, 189, 1, 0, 0, 0, 199, 190, 1, 0, 0, 0, 199, 191, 1, 0, 0, 0, 199, 193, 1, 0, 0, 0, 199, 195, 1, 0, 0, 0, 199, 197, 1, 0, 0, 0, 200, 7, 1, 0, 0, 0, 201, 202, 5, 17, 0, 0, 202, 203, 3, 10, 5, 0, 203, 9, 1, 0, 0, 0, 204, 205, 6, 5, -1, 0, 205, 206, 5, 52, 0, 0, 206, 234, 3, 10, 5, 8, 207, 234, 3, 16, 8, 0, 208, 234, 3, 12, 6, 0, 209, 211, 3, 16, 8, 0, 210, 212, 5, 52, 0, 0, 211, 210, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 214, 5, 47, 0, 0, 214, 215, 5, 51, 0, 0, 215, 220, 3, 16, 8, 0, 216, 217, 5, 42, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 5, 59, 0, 0, 224, 234, 1, 0, 0, 0, 225, 226, 3, 16, 8, 0, 226, 228, 5, 48, 0, 0, 227, 229, 5, 52, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 5, 53, 0, 0, 231, 234, 1, 0, 0, 0, 232, 234, 3, 14, 7, 0, 233, 204, 1, 0, 0, 0, 233, 207, 1, 0, 0, 0, 233, 208, 1, 0, 0, 0, 233, 209, 1, 0, 0, 0, 233, 225, 1, 0, 0, 0, 233, 232, 1, 0, 0, 0, 234, 243, 1, 0, 0, 0, 235, 236, 10, 5, 0, 0, 236, 237, 5, 36, 0, 0, 237, 242, 3, 10, 5, 6, 238, 239, 10, 4, 0, 0, 239, 240, 5, 56, 0, 0, 240, 242, 3, 10, 5, 5, 241, 235, 1, 0, 0, 0, 241, 238, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 11, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 16, 8, 0, 247, 249, 5, 52, 0, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251, 5, 50, 0, 0, 251, 252, 3, 120, 60, 0, 252, 277, 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, 58, 0, 0, 258, 259, 3, 120, 60, 0, 259, 277, 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, 50, 0, 0, 265, 266, 5, 51, 0, 0, 266, 271, 3, 120, 60, 0, 267, 268, 5, 42, 0, 0, 268, 270, 3, 120, 60, 0, 269, 267, 1, 0, 0, 0, 270, 273, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 274, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 275, 5, 59, 0, 0, 275, 277, 1, 0, 0, 0, 276, 246, 1, 0, 0, 0, 276, 253, 1, 0, 0, 0, 276, 260, 1, 0, 0, 0, 277, 13, 1, 0, 0, 0, 278, 281, 3, 70, 35, 0, 279, 280, 5, 40, 0, 0, 280, 282, 3, 30, 15, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 284, 5, 41, 0, 0, 284, 285, 3, 80, 40, 0, 285, 15, 1, 0, 0, 0, 286, 292, 3, 18, 9, 0, 287, 288, 3, 18, 9, 0, 288, 289, 3, 122, 61, 0, 289, 290, 3, 18, 9, 0, 290, 292, 1, 0, 0, 0, 291, 286, 1, 0, 0, 0, 291, 287, 1, 0, 0, 0, 292, 17, 1, 0, 0, 0, 293, 294, 6, 9, -1, 0, 294, 298, 3, 20, 10, 0, 295, 296, 7, 0, 0, 0, 296, 298, 3, 18, 9, 3, 297, 293, 1, 0, 0, 0, 297, 295, 1, 0, 0, 0, 298, 307, 1, 0, 0, 0, 299, 300, 10, 2, 0, 0, 300, 301, 7, 1, 0, 0, 301, 306, 3, 18, 9, 3, 302, 303, 10, 1, 0, 0, 303, 304, 7, 0, 0, 0, 304, 306, 3, 18, 9, 2, 305, 299, 1, 0, 0, 0, 305, 302, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 19, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 6, 10, -1, 0, 311, 319, 3, 80, 40, 0, 312, 319, 3, 70, 35, 0, 313, 319, 3, 22, 11, 0, 314, 315, 5, 51, 0, 0, 315, 316, 3, 10, 5, 0, 316, 317, 5, 59, 0, 0, 317, 319, 1, 0, 0, 0, 318, 310, 1, 0, 0, 0, 318, 312, 1, 0, 0, 0, 318, 313, 1, 0, 0, 0, 318, 314, 1, 0, 0, 0, 319, 325, 1, 0, 0, 0, 320, 321, 10, 1, 0, 0, 321, 322, 5, 40, 0, 0, 322, 324, 3, 30, 15, 0, 323, 320, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 21, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 3, 24, 12, 0, 329, 343, 5, 51, 0, 0, 330, 344, 5, 71, 0, 0, 331, 336, 3, 10, 5, 0, 332, 333, 5, 42, 0, 0, 333, 335, 3, 10, 5, 0, 334, 332, 1, 0, 0, 0, 335, 338, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 341, 1, 0, 0, 0, 338, 336, 1, 0, 0, 0, 339, 340, 5, 42, 0, 0, 340, 342, 3, 26, 13, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343, 330, 1, 0, 0, 0, 343, 331, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 5, 59, 0, 0, 346, 23, 1, 0, 0, 0, 347, 348, 3, 86, 43, 0, 348, 25, 1, 0, 0, 0, 349, 350, 5, 74, 0, 0, 350, 355, 3, 28, 14, 0, 351, 352, 5, 42, 0, 0, 352, 354, 3, 28, 14, 0, 353, 351, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 359, 5, 75, 0, 0, 359, 27, 1, 0, 0, 0, 360, 361, 3, 120, 60, 0, 361, 362, 5, 41, 0, 0, 362, 363, 3, 80, 40, 0, 363, 29, 1, 0, 0, 0, 364, 365, 3, 76, 38, 0, 365, 31, 1, 0, 0, 0, 366, 367, 5, 13, 0, 0, 367, 368, 3, 34, 17, 0, 368, 33, 1, 0, 0, 0, 369, 374, 3, 36, 18, 0, 370, 371, 5, 42, 0, 0, 371, 373, 3, 36, 18, 0, 372, 370, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 35, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 3, 70, 35, 0, 378, 379, 5, 38, 0, 0, 379, 381, 1, 0, 0, 0, 380, 377, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 3, 10, 5, 0, 383, 37, 1, 0, 0, 0, 384, 389, 3, 40, 20, 0, 385, 386, 5, 42, 0, 0, 386, 388, 3, 40, 20, 0, 387, 385, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 39, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 395, 3, 70, 35, 0, 393, 394, 5, 38, 0, 0, 394, 396, 3, 10, 5, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 41, 1, 0, 0, 0, 397, 398, 5, 7, 0, 0, 398, 403, 3, 44, 22, 0, 399, 400, 5, 42, 0, 0, 400, 402, 3, 44, 22, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 408, 3, 54, 27, 0, 407, 406, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 43, 1, 0, 0, 0, 409, 410, 3, 46, 23, 0, 410, 411, 5, 41, 0, 0, 411, 412, 3, 50, 25, 0, 412, 419, 1, 0, 0, 0, 413, 414, 3, 50, 25, 0, 414, 415, 5, 40, 0, 0, 415, 416, 3, 48, 24, 0, 416, 419, 1, 0, 0, 0, 417, 419, 3, 52, 26, 0, 418, 409, 1, 0, 0, 0, 418, 413, 1, 0, 0, 0, 418, 417, 1, 0, 0, 0, 419, 45, 1, 0, 0, 0, 420, 421, 5, 90, 0, 0, 421, 47, 1, 0, 0, 0, 422, 423, 5, 90, 0, 0, 423, 49, 1, 0, 0, 0, 424, 425, 5, 90, 0, 0, 425, 51, 1, 0, 0, 0, 426, 427, 7, 2, 0, 0, 427, 53, 1, 0, 0, 0, 428, 431, 3, 56, 28, 0, 429, 431, 3, 58, 29, 0, 430, 428, 1, 0, 0, 0, 430, 429, 1, 0, 0, 0, 431, 55, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 438, 5, 90, 0, 0, 434, 435, 5, 42, 0, 0, 435, 437, 5, 90, 0, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 57, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 442, 5, 79, 0, 0, 442, 443, 3, 56, 28, 0, 443, 444, 5, 80, 0, 0, 444, 59, 1, 0, 0, 0, 445, 446, 5, 22, 0, 0, 446, 451, 3, 44, 22, 0, 447, 448, 5, 42, 0, 0, 448, 450, 3, 44, 22, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 456, 3, 66, 33, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 459, 1, 0, 0, 0, 457, 458, 5, 39, 0, 0, 458, 460, 3, 34, 17, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 61, 1, 0, 0, 0, 461, 462, 5, 5, 0, 0, 462, 463, 3, 34, 17, 0, 463, 63, 1, 0, 0, 0, 464, 466, 5, 16, 0, 0, 465, 467, 3, 66, 33, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 469, 5, 39, 0, 0, 469, 471, 3, 34, 17, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 65, 1, 0, 0, 0, 472, 477, 3, 68, 34, 0, 473, 474, 5, 42, 0, 0, 474, 476, 3, 68, 34, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 67, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 483, 3, 36, 18, 0, 481, 482, 5, 17, 0, 0, 482, 484, 3, 10, 5, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 69, 1, 0, 0, 0, 485, 490, 3, 86, 43, 0, 486, 487, 5, 44, 0, 0, 487, 489, 3, 86, 43, 0, 488, 486, 1, 0, 0, 0, 489, 492, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 71, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 493, 498, 3, 78, 39, 0, 494, 495, 5, 44, 0, 0, 495, 497, 3, 78, 39, 0, 496, 494, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 73, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 506, 3, 72, 36, 0, 502, 503, 5, 42, 0, 0, 503, 505, 3, 72, 36, 0, 504, 502, 1, 0, 0, 0, 505, 508, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 75, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 509, 510, 7, 3, 0, 0, 510, 77, 1, 0, 0, 0, 511, 515, 5, 94, 0, 0, 512, 515, 3, 82, 41, 0, 513, 515, 3, 84, 42, 0, 514, 511, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 79, 1, 0, 0, 0, 516, 559, 5, 53, 0, 0, 517, 518, 3, 118, 59, 0, 518, 519, 5, 81, 0, 0, 519, 559, 1, 0, 0, 0, 520, 559, 3, 116, 58, 0, 521, 559, 3, 118, 59, 0, 522, 559, 3, 112, 56, 0, 523, 559, 3, 82, 41, 0, 524, 559, 3, 120, 60, 0, 525, 526, 5, 79, 0, 0, 526, 531, 3, 114, 57, 0, 527, 528, 5, 42, 0, 0, 528, 530, 3, 114, 57, 0, 529, 527, 1, 0, 0, 0, 530, 533, 1, 0, 0, 0, 531, 529, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 534, 535, 5, 80, 0, 0, 535, 559, 1, 0, 0, 0, 536, 537, 5, 79, 0, 0, 537, 542, 3, 112, 56, 0, 538, 539, 5, 42, 0, 0, 539, 541, 3, 112, 56, 0, 540, 538, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 545, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 545, 546, 5, 80, 0, 0, 546, 559, 1, 0, 0, 0, 547, 548, 5, 79, 0, 0, 548, 553, 3, 120, 60, 0, 549, 550, 5, 42, 0, 0, 550, 552, 3, 120, 60, 0, 551, 549, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 556, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 557, 5, 80, 0, 0, 557, 559, 1, 0, 0, 0, 558, 516, 1, 0, 0, 0, 558, 517, 1, 0, 0, 0, 558, 520, 1, 0, 0, 0, 558, 521, 1, 0, 0, 0, 558, 522, 1, 0, 0, 0, 558, 523, 1, 0, 0, 0, 558, 524, 1, 0, 0, 0, 558, 525, 1, 0, 0, 0, 558, 536, 1, 0, 0, 0, 558, 547, 1, 0, 0, 0, 559, 81, 1, 0, 0, 0, 560, 563, 5, 57, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 83, 1, 0, 0, 0, 564, 567, 5, 76, 0, 0, 565, 567, 5, 78, 0, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 85, 1, 0, 0, 0, 568, 572, 3, 76, 38, 0, 569, 572, 3, 82, 41, 0, 570, 572, 3, 84, 42, 0, 571, 568, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 570, 1, 0, 0, 0, 572, 87, 1, 0, 0, 0, 573, 574, 5, 10, 0, 0, 574, 575, 3, 80, 40, 0, 575, 89, 1, 0, 0, 0, 576, 577, 5, 15, 0, 0, 577, 582, 3, 92, 46, 0, 578, 579, 5, 42, 0, 0, 579, 581, 3, 92, 46, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 91, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 587, 3, 10, 5, 0, 586, 588, 7, 4, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 591, 1, 0, 0, 0, 589, 590, 5, 54, 0, 0, 590, 592, 7, 5, 0, 0, 591, 589, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 93, 1, 0, 0, 0, 593, 594, 5, 9, 0, 0, 594, 595, 3, 74, 37, 0, 595, 95, 1, 0, 0, 0, 596, 597, 5, 3, 0, 0, 597, 598, 3, 74, 37, 0, 598, 97, 1, 0, 0, 0, 599, 600, 5, 12, 0, 0, 600, 605, 3, 100, 50, 0, 601, 602, 5, 42, 0, 0, 602, 604, 3, 100, 50, 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, 99, 1, 0, 0, 0, 607, 605, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 98, 0, 0, 610, 611, 3, 72, 36, 0, 611, 617, 1, 0, 0, 0, 612, 613, 3, 72, 36, 0, 613, 614, 5, 38, 0, 0, 614, 615, 3, 72, 36, 0, 615, 617, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 612, 1, 0, 0, 0, 617, 101, 1, 0, 0, 0, 618, 619, 5, 2, 0, 0, 619, 620, 3, 20, 10, 0, 620, 622, 3, 120, 60, 0, 621, 623, 3, 108, 54, 0, 622, 621, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 103, 1, 0, 0, 0, 624, 625, 5, 8, 0, 0, 625, 626, 3, 20, 10, 0, 626, 627, 3, 120, 60, 0, 627, 105, 1, 0, 0, 0, 628, 629, 5, 11, 0, 0, 629, 630, 3, 70, 35, 0, 630, 107, 1, 0, 0, 0, 631, 636, 3, 110, 55, 0, 632, 633, 5, 42, 0, 0, 633, 635, 3, 110, 55, 0, 634, 632, 1, 0, 0, 0, 635, 638, 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 109, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 639, 640, 3, 76, 38, 0, 640, 641, 5, 38, 0, 0, 641, 642, 3, 80, 40, 0, 642, 111, 1, 0, 0, 0, 643, 644, 7, 6, 0, 0, 644, 113, 1, 0, 0, 0, 645, 648, 3, 116, 58, 0, 646, 648, 3, 118, 59, 0, 647, 645, 1, 0, 0, 0, 647, 646, 1, 0, 0, 0, 648, 115, 1, 0, 0, 0, 649, 651, 7, 0, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 5, 35, 0, 0, 653, 117, 1, 0, 0, 0, 654, 656, 7, 0, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 5, 34, 0, 0, 658, 119, 1, 0, 0, 0, 659, 660, 5, 33, 0, 0, 660, 121, 1, 0, 0, 0, 661, 662, 7, 7, 0, 0, 662, 123, 1, 0, 0, 0, 663, 664, 5, 6, 0, 0, 664, 665, 3, 126, 63, 0, 665, 125, 1, 0, 0, 0, 666, 667, 5, 79, 0, 0, 667, 668, 3, 2, 1, 0, 668, 669, 5, 80, 0, 0, 669, 127, 1, 0, 0, 0, 670, 671, 5, 14, 0, 0, 671, 672, 5, 112, 0, 0, 672, 129, 1, 0, 0, 0, 673, 674, 5, 4, 0, 0, 674, 677, 5, 102, 0, 0, 675, 676, 5, 55, 0, 0, 676, 678, 3, 72, 36, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 688, 1, 0, 0, 0, 679, 680, 5, 61, 0, 0, 680, 685, 3, 132, 66, 0, 681, 682, 5, 42, 0, 0, 682, 684, 3, 132, 66, 0, 683, 681, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 689, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 679, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 131, 1, 0, 0, 0, 690, 691, 3, 72, 36, 0, 691, 692, 5, 38, 0, 0, 692, 694, 1, 0, 0, 0, 693, 690, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 3, 72, 36, 0, 696, 133, 1, 0, 0, 0, 697, 698, 5, 19, 0, 0, 698, 701, 3, 70, 35, 0, 699, 700, 5, 55, 0, 0, 700, 702, 3, 70, 35, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 708, 1, 0, 0, 0, 703, 704, 5, 98, 0, 0, 704, 705, 3, 70, 35, 0, 705, 706, 5, 42, 0, 0, 706, 707, 3, 70, 35, 0, 707, 709, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 135, 1, 0, 0, 0, 710, 711, 5, 21, 0, 0, 711, 712, 3, 44, 22, 0, 712, 713, 5, 55, 0, 0, 713, 714, 3, 74, 37, 0, 714, 137, 1, 0, 0, 0, 715, 716, 5, 20, 0, 0, 716, 719, 3, 66, 33, 0, 717, 718, 5, 39, 0, 0, 718, 720, 3, 34, 17, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 139, 1, 0, 0, 0, 721, 722, 7, 8, 0, 0, 722, 723, 5, 126, 0, 0, 723, 724, 3, 142, 71, 0, 724, 725, 3, 144, 72, 0, 725, 141, 1, 0, 0, 0, 726, 727, 3, 44, 22, 0, 727, 143, 1, 0, 0, 0, 728, 729, 5, 55, 0, 0, 729, 734, 3, 146, 73, 0, 730, 731, 5, 42, 0, 0, 731, 733, 3, 146, 73, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 145, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 3, 16, 8, 0, 738, 147, 1, 0, 0, 0, 739, 740, 5, 23, 0, 0, 740, 741, 3, 80, 40, 0, 741, 742, 5, 55, 0, 0, 742, 745, 3, 38, 19, 0, 743, 744, 5, 61, 0, 0, 744, 746, 3, 86, 43, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 149, 1, 0, 0, 0, 747, 751, 5, 1, 0, 0, 748, 749, 3, 70, 35, 0, 749, 750, 5, 38, 0, 0, 750, 752, 1, 0, 0, 0, 751, 748, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 3, 20, 10, 0, 754, 755, 5, 61, 0, 0, 755, 756, 3, 86, 43, 0, 756, 151, 1, 0, 0, 0, 757, 758, 5, 24, 0, 0, 758, 759, 3, 80, 40, 0, 759, 153, 1, 0, 0, 0, 72, 165, 174, 199, 211, 220, 228, 233, 241, 243, 248, 255, 262, 271, 276, 281, 291, 297, 305, 307, 318, 325, 336, 341, 343, 355, 374, 380, 389, 395, 403, 407, 418, 430, 438, 451, 455, 459, 466, 470, 477, 483, 490, 498, 506, 514, 531, 542, 553, 558, 562, 566, 571, 582, 587, 591, 605, 616, 622, 636, 647, 650, 655, 677, 685, 688, 693, 701, 708, 719, 734, 745, 751]
\ No newline at end of file
+[4, 1, 139, 760, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 199, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 211, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 218, 8, 5, 10, 5, 12, 5, 221, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 228, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 233, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 241, 8, 5, 10, 5, 12, 5, 244, 9, 5, 1, 6, 1, 6, 3, 6, 248, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 255, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 262, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 269, 8, 6, 10, 6, 12, 6, 272, 9, 6, 1, 6, 1, 6, 3, 6, 276, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 281, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 291, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 297, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 305, 8, 9, 10, 9, 12, 9, 308, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 318, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 323, 8, 10, 10, 10, 12, 10, 326, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 334, 8, 11, 10, 11, 12, 11, 337, 9, 11, 1, 11, 1, 11, 3, 11, 341, 8, 11, 3, 11, 343, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 353, 8, 13, 10, 13, 12, 13, 356, 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, 372, 8, 17, 10, 17, 12, 17, 375, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 380, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 387, 8, 19, 10, 19, 12, 19, 390, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 395, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 401, 8, 21, 10, 21, 12, 21, 404, 9, 21, 1, 21, 3, 21, 407, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 418, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 430, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 436, 8, 28, 10, 28, 12, 28, 439, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 449, 8, 30, 10, 30, 12, 30, 452, 9, 30, 1, 30, 3, 30, 455, 8, 30, 1, 30, 1, 30, 3, 30, 459, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 466, 8, 32, 1, 32, 1, 32, 3, 32, 470, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 475, 8, 33, 10, 33, 12, 33, 478, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 483, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 488, 8, 35, 10, 35, 12, 35, 491, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 496, 8, 36, 10, 36, 12, 36, 499, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 504, 8, 37, 10, 37, 12, 37, 507, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 514, 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, 529, 8, 40, 10, 40, 12, 40, 532, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 540, 8, 40, 10, 40, 12, 40, 543, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 551, 8, 40, 10, 40, 12, 40, 554, 9, 40, 1, 40, 1, 40, 3, 40, 558, 8, 40, 1, 41, 1, 41, 3, 41, 562, 8, 41, 1, 42, 1, 42, 3, 42, 566, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 571, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 580, 8, 45, 10, 45, 12, 45, 583, 9, 45, 1, 46, 1, 46, 3, 46, 587, 8, 46, 1, 46, 1, 46, 3, 46, 591, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 603, 8, 49, 10, 49, 12, 49, 606, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 616, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 622, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 634, 8, 54, 10, 54, 12, 54, 637, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 647, 8, 57, 1, 58, 3, 58, 650, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 655, 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, 677, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 683, 8, 65, 10, 65, 12, 65, 686, 9, 65, 3, 65, 688, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 693, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 701, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 708, 8, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 722, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 735, 8, 73, 10, 73, 12, 73, 738, 9, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 748, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 754, 8, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 0, 4, 2, 10, 18, 20, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 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, 19, 19, 26, 27, 793, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 198, 1, 0, 0, 0, 8, 200, 1, 0, 0, 0, 10, 232, 1, 0, 0, 0, 12, 275, 1, 0, 0, 0, 14, 277, 1, 0, 0, 0, 16, 290, 1, 0, 0, 0, 18, 296, 1, 0, 0, 0, 20, 317, 1, 0, 0, 0, 22, 327, 1, 0, 0, 0, 24, 346, 1, 0, 0, 0, 26, 348, 1, 0, 0, 0, 28, 359, 1, 0, 0, 0, 30, 363, 1, 0, 0, 0, 32, 365, 1, 0, 0, 0, 34, 368, 1, 0, 0, 0, 36, 379, 1, 0, 0, 0, 38, 383, 1, 0, 0, 0, 40, 391, 1, 0, 0, 0, 42, 396, 1, 0, 0, 0, 44, 417, 1, 0, 0, 0, 46, 419, 1, 0, 0, 0, 48, 421, 1, 0, 0, 0, 50, 423, 1, 0, 0, 0, 52, 425, 1, 0, 0, 0, 54, 429, 1, 0, 0, 0, 56, 431, 1, 0, 0, 0, 58, 440, 1, 0, 0, 0, 60, 444, 1, 0, 0, 0, 62, 460, 1, 0, 0, 0, 64, 463, 1, 0, 0, 0, 66, 471, 1, 0, 0, 0, 68, 479, 1, 0, 0, 0, 70, 484, 1, 0, 0, 0, 72, 492, 1, 0, 0, 0, 74, 500, 1, 0, 0, 0, 76, 508, 1, 0, 0, 0, 78, 513, 1, 0, 0, 0, 80, 557, 1, 0, 0, 0, 82, 561, 1, 0, 0, 0, 84, 565, 1, 0, 0, 0, 86, 570, 1, 0, 0, 0, 88, 572, 1, 0, 0, 0, 90, 575, 1, 0, 0, 0, 92, 584, 1, 0, 0, 0, 94, 592, 1, 0, 0, 0, 96, 595, 1, 0, 0, 0, 98, 598, 1, 0, 0, 0, 100, 615, 1, 0, 0, 0, 102, 617, 1, 0, 0, 0, 104, 623, 1, 0, 0, 0, 106, 627, 1, 0, 0, 0, 108, 630, 1, 0, 0, 0, 110, 638, 1, 0, 0, 0, 112, 642, 1, 0, 0, 0, 114, 646, 1, 0, 0, 0, 116, 649, 1, 0, 0, 0, 118, 654, 1, 0, 0, 0, 120, 658, 1, 0, 0, 0, 122, 660, 1, 0, 0, 0, 124, 662, 1, 0, 0, 0, 126, 665, 1, 0, 0, 0, 128, 669, 1, 0, 0, 0, 130, 672, 1, 0, 0, 0, 132, 692, 1, 0, 0, 0, 134, 696, 1, 0, 0, 0, 136, 709, 1, 0, 0, 0, 138, 712, 1, 0, 0, 0, 140, 717, 1, 0, 0, 0, 142, 723, 1, 0, 0, 0, 144, 728, 1, 0, 0, 0, 146, 730, 1, 0, 0, 0, 148, 739, 1, 0, 0, 0, 150, 741, 1, 0, 0, 0, 152, 749, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 32, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 124, 62, 0, 169, 175, 3, 42, 21, 0, 170, 175, 3, 32, 16, 0, 171, 175, 3, 128, 64, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 60, 30, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 199, 3, 62, 31, 0, 177, 199, 3, 8, 4, 0, 178, 199, 3, 94, 47, 0, 179, 199, 3, 88, 44, 0, 180, 199, 3, 64, 32, 0, 181, 199, 3, 90, 45, 0, 182, 199, 3, 96, 48, 0, 183, 199, 3, 98, 49, 0, 184, 199, 3, 102, 51, 0, 185, 199, 3, 104, 52, 0, 186, 199, 3, 130, 65, 0, 187, 199, 3, 106, 53, 0, 188, 199, 3, 142, 71, 0, 189, 199, 3, 134, 67, 0, 190, 199, 3, 152, 76, 0, 191, 199, 3, 136, 68, 0, 192, 193, 4, 3, 2, 0, 193, 199, 3, 140, 70, 0, 194, 195, 4, 3, 3, 0, 195, 199, 3, 138, 69, 0, 196, 197, 4, 3, 4, 0, 197, 199, 3, 150, 75, 0, 198, 176, 1, 0, 0, 0, 198, 177, 1, 0, 0, 0, 198, 178, 1, 0, 0, 0, 198, 179, 1, 0, 0, 0, 198, 180, 1, 0, 0, 0, 198, 181, 1, 0, 0, 0, 198, 182, 1, 0, 0, 0, 198, 183, 1, 0, 0, 0, 198, 184, 1, 0, 0, 0, 198, 185, 1, 0, 0, 0, 198, 186, 1, 0, 0, 0, 198, 187, 1, 0, 0, 0, 198, 188, 1, 0, 0, 0, 198, 189, 1, 0, 0, 0, 198, 190, 1, 0, 0, 0, 198, 191, 1, 0, 0, 0, 198, 192, 1, 0, 0, 0, 198, 194, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 199, 7, 1, 0, 0, 0, 200, 201, 5, 18, 0, 0, 201, 202, 3, 10, 5, 0, 202, 9, 1, 0, 0, 0, 203, 204, 6, 5, -1, 0, 204, 205, 5, 52, 0, 0, 205, 233, 3, 10, 5, 8, 206, 233, 3, 16, 8, 0, 207, 233, 3, 12, 6, 0, 208, 210, 3, 16, 8, 0, 209, 211, 5, 52, 0, 0, 210, 209, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213, 5, 47, 0, 0, 213, 214, 5, 51, 0, 0, 214, 219, 3, 16, 8, 0, 215, 216, 5, 42, 0, 0, 216, 218, 3, 16, 8, 0, 217, 215, 1, 0, 0, 0, 218, 221, 1, 0, 0, 0, 219, 217, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 222, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 222, 223, 5, 59, 0, 0, 223, 233, 1, 0, 0, 0, 224, 225, 3, 16, 8, 0, 225, 227, 5, 48, 0, 0, 226, 228, 5, 52, 0, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 5, 53, 0, 0, 230, 233, 1, 0, 0, 0, 231, 233, 3, 14, 7, 0, 232, 203, 1, 0, 0, 0, 232, 206, 1, 0, 0, 0, 232, 207, 1, 0, 0, 0, 232, 208, 1, 0, 0, 0, 232, 224, 1, 0, 0, 0, 232, 231, 1, 0, 0, 0, 233, 242, 1, 0, 0, 0, 234, 235, 10, 5, 0, 0, 235, 236, 5, 36, 0, 0, 236, 241, 3, 10, 5, 6, 237, 238, 10, 4, 0, 0, 238, 239, 5, 56, 0, 0, 239, 241, 3, 10, 5, 5, 240, 234, 1, 0, 0, 0, 240, 237, 1, 0, 0, 0, 241, 244, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 11, 1, 0, 0, 0, 244, 242, 1, 0, 0, 0, 245, 247, 3, 16, 8, 0, 246, 248, 5, 52, 0, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 5, 50, 0, 0, 250, 251, 3, 120, 60, 0, 251, 276, 1, 0, 0, 0, 252, 254, 3, 16, 8, 0, 253, 255, 5, 52, 0, 0, 254, 253, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 257, 5, 58, 0, 0, 257, 258, 3, 120, 60, 0, 258, 276, 1, 0, 0, 0, 259, 261, 3, 16, 8, 0, 260, 262, 5, 52, 0, 0, 261, 260, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 5, 50, 0, 0, 264, 265, 5, 51, 0, 0, 265, 270, 3, 120, 60, 0, 266, 267, 5, 42, 0, 0, 267, 269, 3, 120, 60, 0, 268, 266, 1, 0, 0, 0, 269, 272, 1, 0, 0, 0, 270, 268, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 273, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 273, 274, 5, 59, 0, 0, 274, 276, 1, 0, 0, 0, 275, 245, 1, 0, 0, 0, 275, 252, 1, 0, 0, 0, 275, 259, 1, 0, 0, 0, 276, 13, 1, 0, 0, 0, 277, 280, 3, 70, 35, 0, 278, 279, 5, 40, 0, 0, 279, 281, 3, 30, 15, 0, 280, 278, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 5, 41, 0, 0, 283, 284, 3, 80, 40, 0, 284, 15, 1, 0, 0, 0, 285, 291, 3, 18, 9, 0, 286, 287, 3, 18, 9, 0, 287, 288, 3, 122, 61, 0, 288, 289, 3, 18, 9, 0, 289, 291, 1, 0, 0, 0, 290, 285, 1, 0, 0, 0, 290, 286, 1, 0, 0, 0, 291, 17, 1, 0, 0, 0, 292, 293, 6, 9, -1, 0, 293, 297, 3, 20, 10, 0, 294, 295, 7, 0, 0, 0, 295, 297, 3, 18, 9, 3, 296, 292, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 306, 1, 0, 0, 0, 298, 299, 10, 2, 0, 0, 299, 300, 7, 1, 0, 0, 300, 305, 3, 18, 9, 3, 301, 302, 10, 1, 0, 0, 302, 303, 7, 0, 0, 0, 303, 305, 3, 18, 9, 2, 304, 298, 1, 0, 0, 0, 304, 301, 1, 0, 0, 0, 305, 308, 1, 0, 0, 0, 306, 304, 1, 0, 0, 0, 306, 307, 1, 0, 0, 0, 307, 19, 1, 0, 0, 0, 308, 306, 1, 0, 0, 0, 309, 310, 6, 10, -1, 0, 310, 318, 3, 80, 40, 0, 311, 318, 3, 70, 35, 0, 312, 318, 3, 22, 11, 0, 313, 314, 5, 51, 0, 0, 314, 315, 3, 10, 5, 0, 315, 316, 5, 59, 0, 0, 316, 318, 1, 0, 0, 0, 317, 309, 1, 0, 0, 0, 317, 311, 1, 0, 0, 0, 317, 312, 1, 0, 0, 0, 317, 313, 1, 0, 0, 0, 318, 324, 1, 0, 0, 0, 319, 320, 10, 1, 0, 0, 320, 321, 5, 40, 0, 0, 321, 323, 3, 30, 15, 0, 322, 319, 1, 0, 0, 0, 323, 326, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 21, 1, 0, 0, 0, 326, 324, 1, 0, 0, 0, 327, 328, 3, 24, 12, 0, 328, 342, 5, 51, 0, 0, 329, 343, 5, 71, 0, 0, 330, 335, 3, 10, 5, 0, 331, 332, 5, 42, 0, 0, 332, 334, 3, 10, 5, 0, 333, 331, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 340, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 42, 0, 0, 339, 341, 3, 26, 13, 0, 340, 338, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 343, 1, 0, 0, 0, 342, 329, 1, 0, 0, 0, 342, 330, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 345, 5, 59, 0, 0, 345, 23, 1, 0, 0, 0, 346, 347, 3, 86, 43, 0, 347, 25, 1, 0, 0, 0, 348, 349, 5, 74, 0, 0, 349, 354, 3, 28, 14, 0, 350, 351, 5, 42, 0, 0, 351, 353, 3, 28, 14, 0, 352, 350, 1, 0, 0, 0, 353, 356, 1, 0, 0, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 357, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 357, 358, 5, 75, 0, 0, 358, 27, 1, 0, 0, 0, 359, 360, 3, 120, 60, 0, 360, 361, 5, 41, 0, 0, 361, 362, 3, 80, 40, 0, 362, 29, 1, 0, 0, 0, 363, 364, 3, 76, 38, 0, 364, 31, 1, 0, 0, 0, 365, 366, 5, 13, 0, 0, 366, 367, 3, 34, 17, 0, 367, 33, 1, 0, 0, 0, 368, 373, 3, 36, 18, 0, 369, 370, 5, 42, 0, 0, 370, 372, 3, 36, 18, 0, 371, 369, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 35, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 3, 70, 35, 0, 377, 378, 5, 38, 0, 0, 378, 380, 1, 0, 0, 0, 379, 376, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 3, 10, 5, 0, 382, 37, 1, 0, 0, 0, 383, 388, 3, 40, 20, 0, 384, 385, 5, 42, 0, 0, 385, 387, 3, 40, 20, 0, 386, 384, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 39, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 391, 394, 3, 70, 35, 0, 392, 393, 5, 38, 0, 0, 393, 395, 3, 10, 5, 0, 394, 392, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 41, 1, 0, 0, 0, 396, 397, 5, 7, 0, 0, 397, 402, 3, 44, 22, 0, 398, 399, 5, 42, 0, 0, 399, 401, 3, 44, 22, 0, 400, 398, 1, 0, 0, 0, 401, 404, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 406, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 405, 407, 3, 54, 27, 0, 406, 405, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 43, 1, 0, 0, 0, 408, 409, 3, 46, 23, 0, 409, 410, 5, 41, 0, 0, 410, 411, 3, 50, 25, 0, 411, 418, 1, 0, 0, 0, 412, 413, 3, 50, 25, 0, 413, 414, 5, 40, 0, 0, 414, 415, 3, 48, 24, 0, 415, 418, 1, 0, 0, 0, 416, 418, 3, 52, 26, 0, 417, 408, 1, 0, 0, 0, 417, 412, 1, 0, 0, 0, 417, 416, 1, 0, 0, 0, 418, 45, 1, 0, 0, 0, 419, 420, 5, 90, 0, 0, 420, 47, 1, 0, 0, 0, 421, 422, 5, 90, 0, 0, 422, 49, 1, 0, 0, 0, 423, 424, 5, 90, 0, 0, 424, 51, 1, 0, 0, 0, 425, 426, 7, 2, 0, 0, 426, 53, 1, 0, 0, 0, 427, 430, 3, 56, 28, 0, 428, 430, 3, 58, 29, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 55, 1, 0, 0, 0, 431, 432, 5, 89, 0, 0, 432, 437, 5, 90, 0, 0, 433, 434, 5, 42, 0, 0, 434, 436, 5, 90, 0, 0, 435, 433, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 57, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 440, 441, 5, 79, 0, 0, 441, 442, 3, 56, 28, 0, 442, 443, 5, 80, 0, 0, 443, 59, 1, 0, 0, 0, 444, 445, 5, 23, 0, 0, 445, 450, 3, 44, 22, 0, 446, 447, 5, 42, 0, 0, 447, 449, 3, 44, 22, 0, 448, 446, 1, 0, 0, 0, 449, 452, 1, 0, 0, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 454, 1, 0, 0, 0, 452, 450, 1, 0, 0, 0, 453, 455, 3, 66, 33, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 457, 5, 39, 0, 0, 457, 459, 3, 34, 17, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 61, 1, 0, 0, 0, 460, 461, 5, 5, 0, 0, 461, 462, 3, 34, 17, 0, 462, 63, 1, 0, 0, 0, 463, 465, 5, 17, 0, 0, 464, 466, 3, 66, 33, 0, 465, 464, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 468, 5, 39, 0, 0, 468, 470, 3, 34, 17, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 65, 1, 0, 0, 0, 471, 476, 3, 68, 34, 0, 472, 473, 5, 42, 0, 0, 473, 475, 3, 68, 34, 0, 474, 472, 1, 0, 0, 0, 475, 478, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 67, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 479, 482, 3, 36, 18, 0, 480, 481, 5, 18, 0, 0, 481, 483, 3, 10, 5, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 69, 1, 0, 0, 0, 484, 489, 3, 86, 43, 0, 485, 486, 5, 44, 0, 0, 486, 488, 3, 86, 43, 0, 487, 485, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 71, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 497, 3, 78, 39, 0, 493, 494, 5, 44, 0, 0, 494, 496, 3, 78, 39, 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, 73, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 505, 3, 72, 36, 0, 501, 502, 5, 42, 0, 0, 502, 504, 3, 72, 36, 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, 75, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 509, 7, 3, 0, 0, 509, 77, 1, 0, 0, 0, 510, 514, 5, 94, 0, 0, 511, 514, 3, 82, 41, 0, 512, 514, 3, 84, 42, 0, 513, 510, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 513, 512, 1, 0, 0, 0, 514, 79, 1, 0, 0, 0, 515, 558, 5, 53, 0, 0, 516, 517, 3, 118, 59, 0, 517, 518, 5, 81, 0, 0, 518, 558, 1, 0, 0, 0, 519, 558, 3, 116, 58, 0, 520, 558, 3, 118, 59, 0, 521, 558, 3, 112, 56, 0, 522, 558, 3, 82, 41, 0, 523, 558, 3, 120, 60, 0, 524, 525, 5, 79, 0, 0, 525, 530, 3, 114, 57, 0, 526, 527, 5, 42, 0, 0, 527, 529, 3, 114, 57, 0, 528, 526, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 5, 80, 0, 0, 534, 558, 1, 0, 0, 0, 535, 536, 5, 79, 0, 0, 536, 541, 3, 112, 56, 0, 537, 538, 5, 42, 0, 0, 538, 540, 3, 112, 56, 0, 539, 537, 1, 0, 0, 0, 540, 543, 1, 0, 0, 0, 541, 539, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 544, 1, 0, 0, 0, 543, 541, 1, 0, 0, 0, 544, 545, 5, 80, 0, 0, 545, 558, 1, 0, 0, 0, 546, 547, 5, 79, 0, 0, 547, 552, 3, 120, 60, 0, 548, 549, 5, 42, 0, 0, 549, 551, 3, 120, 60, 0, 550, 548, 1, 0, 0, 0, 551, 554, 1, 0, 0, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 555, 1, 0, 0, 0, 554, 552, 1, 0, 0, 0, 555, 556, 5, 80, 0, 0, 556, 558, 1, 0, 0, 0, 557, 515, 1, 0, 0, 0, 557, 516, 1, 0, 0, 0, 557, 519, 1, 0, 0, 0, 557, 520, 1, 0, 0, 0, 557, 521, 1, 0, 0, 0, 557, 522, 1, 0, 0, 0, 557, 523, 1, 0, 0, 0, 557, 524, 1, 0, 0, 0, 557, 535, 1, 0, 0, 0, 557, 546, 1, 0, 0, 0, 558, 81, 1, 0, 0, 0, 559, 562, 5, 57, 0, 0, 560, 562, 5, 77, 0, 0, 561, 559, 1, 0, 0, 0, 561, 560, 1, 0, 0, 0, 562, 83, 1, 0, 0, 0, 563, 566, 5, 76, 0, 0, 564, 566, 5, 78, 0, 0, 565, 563, 1, 0, 0, 0, 565, 564, 1, 0, 0, 0, 566, 85, 1, 0, 0, 0, 567, 571, 3, 76, 38, 0, 568, 571, 3, 82, 41, 0, 569, 571, 3, 84, 42, 0, 570, 567, 1, 0, 0, 0, 570, 568, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 87, 1, 0, 0, 0, 572, 573, 5, 10, 0, 0, 573, 574, 3, 80, 40, 0, 574, 89, 1, 0, 0, 0, 575, 576, 5, 16, 0, 0, 576, 581, 3, 92, 46, 0, 577, 578, 5, 42, 0, 0, 578, 580, 3, 92, 46, 0, 579, 577, 1, 0, 0, 0, 580, 583, 1, 0, 0, 0, 581, 579, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 91, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 584, 586, 3, 10, 5, 0, 585, 587, 7, 4, 0, 0, 586, 585, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 589, 5, 54, 0, 0, 589, 591, 7, 5, 0, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 93, 1, 0, 0, 0, 592, 593, 5, 9, 0, 0, 593, 594, 3, 74, 37, 0, 594, 95, 1, 0, 0, 0, 595, 596, 5, 3, 0, 0, 596, 597, 3, 74, 37, 0, 597, 97, 1, 0, 0, 0, 598, 599, 5, 12, 0, 0, 599, 604, 3, 100, 50, 0, 600, 601, 5, 42, 0, 0, 601, 603, 3, 100, 50, 0, 602, 600, 1, 0, 0, 0, 603, 606, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 99, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 607, 608, 3, 72, 36, 0, 608, 609, 5, 98, 0, 0, 609, 610, 3, 72, 36, 0, 610, 616, 1, 0, 0, 0, 611, 612, 3, 72, 36, 0, 612, 613, 5, 38, 0, 0, 613, 614, 3, 72, 36, 0, 614, 616, 1, 0, 0, 0, 615, 607, 1, 0, 0, 0, 615, 611, 1, 0, 0, 0, 616, 101, 1, 0, 0, 0, 617, 618, 5, 2, 0, 0, 618, 619, 3, 20, 10, 0, 619, 621, 3, 120, 60, 0, 620, 622, 3, 108, 54, 0, 621, 620, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 103, 1, 0, 0, 0, 623, 624, 5, 8, 0, 0, 624, 625, 3, 20, 10, 0, 625, 626, 3, 120, 60, 0, 626, 105, 1, 0, 0, 0, 627, 628, 5, 11, 0, 0, 628, 629, 3, 70, 35, 0, 629, 107, 1, 0, 0, 0, 630, 635, 3, 110, 55, 0, 631, 632, 5, 42, 0, 0, 632, 634, 3, 110, 55, 0, 633, 631, 1, 0, 0, 0, 634, 637, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 109, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 638, 639, 3, 76, 38, 0, 639, 640, 5, 38, 0, 0, 640, 641, 3, 80, 40, 0, 641, 111, 1, 0, 0, 0, 642, 643, 7, 6, 0, 0, 643, 113, 1, 0, 0, 0, 644, 647, 3, 116, 58, 0, 645, 647, 3, 118, 59, 0, 646, 644, 1, 0, 0, 0, 646, 645, 1, 0, 0, 0, 647, 115, 1, 0, 0, 0, 648, 650, 7, 0, 0, 0, 649, 648, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 5, 35, 0, 0, 652, 117, 1, 0, 0, 0, 653, 655, 7, 0, 0, 0, 654, 653, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 5, 34, 0, 0, 657, 119, 1, 0, 0, 0, 658, 659, 5, 33, 0, 0, 659, 121, 1, 0, 0, 0, 660, 661, 7, 7, 0, 0, 661, 123, 1, 0, 0, 0, 662, 663, 5, 6, 0, 0, 663, 664, 3, 126, 63, 0, 664, 125, 1, 0, 0, 0, 665, 666, 5, 79, 0, 0, 666, 667, 3, 2, 1, 0, 667, 668, 5, 80, 0, 0, 668, 127, 1, 0, 0, 0, 669, 670, 5, 15, 0, 0, 670, 671, 5, 112, 0, 0, 671, 129, 1, 0, 0, 0, 672, 673, 5, 4, 0, 0, 673, 676, 5, 102, 0, 0, 674, 675, 5, 55, 0, 0, 675, 677, 3, 72, 36, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 687, 1, 0, 0, 0, 678, 679, 5, 61, 0, 0, 679, 684, 3, 132, 66, 0, 680, 681, 5, 42, 0, 0, 681, 683, 3, 132, 66, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 688, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 678, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 131, 1, 0, 0, 0, 689, 690, 3, 72, 36, 0, 690, 691, 5, 38, 0, 0, 691, 693, 1, 0, 0, 0, 692, 689, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 3, 72, 36, 0, 695, 133, 1, 0, 0, 0, 696, 697, 5, 20, 0, 0, 697, 700, 3, 70, 35, 0, 698, 699, 5, 55, 0, 0, 699, 701, 3, 70, 35, 0, 700, 698, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 707, 1, 0, 0, 0, 702, 703, 5, 98, 0, 0, 703, 704, 3, 70, 35, 0, 704, 705, 5, 42, 0, 0, 705, 706, 3, 70, 35, 0, 706, 708, 1, 0, 0, 0, 707, 702, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 135, 1, 0, 0, 0, 709, 710, 5, 14, 0, 0, 710, 711, 3, 80, 40, 0, 711, 137, 1, 0, 0, 0, 712, 713, 5, 22, 0, 0, 713, 714, 3, 44, 22, 0, 714, 715, 5, 55, 0, 0, 715, 716, 3, 74, 37, 0, 716, 139, 1, 0, 0, 0, 717, 718, 5, 21, 0, 0, 718, 721, 3, 66, 33, 0, 719, 720, 5, 39, 0, 0, 720, 722, 3, 34, 17, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 141, 1, 0, 0, 0, 723, 724, 7, 8, 0, 0, 724, 725, 5, 126, 0, 0, 725, 726, 3, 144, 72, 0, 726, 727, 3, 146, 73, 0, 727, 143, 1, 0, 0, 0, 728, 729, 3, 44, 22, 0, 729, 145, 1, 0, 0, 0, 730, 731, 5, 55, 0, 0, 731, 736, 3, 148, 74, 0, 732, 733, 5, 42, 0, 0, 733, 735, 3, 148, 74, 0, 734, 732, 1, 0, 0, 0, 735, 738, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 147, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 739, 740, 3, 16, 8, 0, 740, 149, 1, 0, 0, 0, 741, 742, 5, 24, 0, 0, 742, 743, 3, 80, 40, 0, 743, 744, 5, 55, 0, 0, 744, 747, 3, 38, 19, 0, 745, 746, 5, 61, 0, 0, 746, 748, 3, 86, 43, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 151, 1, 0, 0, 0, 749, 753, 5, 1, 0, 0, 750, 751, 3, 70, 35, 0, 751, 752, 5, 38, 0, 0, 752, 754, 1, 0, 0, 0, 753, 750, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 3, 20, 10, 0, 756, 757, 5, 61, 0, 0, 757, 758, 3, 86, 43, 0, 758, 153, 1, 0, 0, 0, 72, 165, 174, 198, 210, 219, 227, 232, 240, 242, 247, 254, 261, 270, 275, 280, 290, 296, 304, 306, 317, 324, 335, 340, 342, 354, 373, 379, 388, 394, 402, 406, 417, 429, 437, 450, 454, 458, 465, 469, 476, 482, 489, 497, 505, 513, 530, 541, 552, 557, 561, 565, 570, 581, 586, 590, 604, 615, 621, 635, 646, 649, 654, 676, 684, 687, 692, 700, 707, 721, 736, 747, 753]
\ 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 2f735fe56f196..d86cc23a942b0 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
@@ -26,9 +26,9 @@ public class EsqlBaseParser extends ParserConfig {
new PredictionContextCache();
public static final int
COMPLETION=1, DISSECT=2, DROP=3, ENRICH=4, EVAL=5, EXPLAIN=6, FROM=7,
- GROK=8, KEEP=9, LIMIT=10, MV_EXPAND=11, RENAME=12, ROW=13, SHOW=14, SORT=15,
- STATS=16, WHERE=17, JOIN_LOOKUP=18, CHANGE_POINT=19, DEV_INLINESTATS=20,
- DEV_LOOKUP=21, DEV_METRICS=22, DEV_RERANK=23, DEV_SAMPLE=24, DEV_JOIN_FULL=25,
+ GROK=8, KEEP=9, LIMIT=10, MV_EXPAND=11, RENAME=12, ROW=13, SAMPLE=14,
+ SHOW=15, SORT=16, STATS=17, WHERE=18, JOIN_LOOKUP=19, CHANGE_POINT=20,
+ DEV_INLINESTATS=21, DEV_LOOKUP=22, DEV_METRICS=23, DEV_RERANK=24, DEV_JOIN_FULL=25,
DEV_JOIN_LEFT=26, DEV_JOIN_RIGHT=27, UNKNOWN_CMD=28, LINE_COMMENT=29,
MULTILINE_COMMENT=30, WS=31, PIPE=32, QUOTED_STRING=33, INTEGER_LITERAL=34,
DECIMAL_LITERAL=35, AND=36, ASC=37, ASSIGN=38, BY=39, CAST_OP=40, COLON=41,
@@ -77,9 +77,9 @@ public class EsqlBaseParser extends ParserConfig {
RULE_integerValue = 59, RULE_string = 60, RULE_comparisonOperator = 61,
RULE_explainCommand = 62, RULE_subqueryExpression = 63, RULE_showCommand = 64,
RULE_enrichCommand = 65, RULE_enrichWithClause = 66, RULE_changePointCommand = 67,
- RULE_lookupCommand = 68, RULE_inlinestatsCommand = 69, RULE_joinCommand = 70,
- RULE_joinTarget = 71, RULE_joinCondition = 72, RULE_joinPredicate = 73,
- RULE_rerankCommand = 74, RULE_completionCommand = 75, RULE_sampleCommand = 76;
+ RULE_sampleCommand = 68, RULE_lookupCommand = 69, RULE_inlinestatsCommand = 70,
+ RULE_joinCommand = 71, RULE_joinTarget = 72, RULE_joinCondition = 73,
+ RULE_joinPredicate = 74, RULE_rerankCommand = 75, RULE_completionCommand = 76;
private static String[] makeRuleNames() {
return new String[] {
"singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand",
@@ -97,8 +97,8 @@ private static String[] makeRuleNames() {
"commandOptions", "commandOption", "booleanValue", "numericValue", "decimalValue",
"integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression",
"showCommand", "enrichCommand", "enrichWithClause", "changePointCommand",
- "lookupCommand", "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition",
- "joinPredicate", "rerankCommand", "completionCommand", "sampleCommand"
+ "sampleCommand", "lookupCommand", "inlinestatsCommand", "joinCommand",
+ "joinTarget", "joinCondition", "joinPredicate", "rerankCommand", "completionCommand"
};
}
public static final String[] ruleNames = makeRuleNames();
@@ -107,27 +107,27 @@ private static String[] makeLiteralNames() {
return new String[] {
null, "'completion'", "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'",
"'from'", "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'",
- "'show'", "'sort'", "'stats'", "'where'", "'lookup'", "'change_point'",
+ "'sample'", "'show'", "'sort'", "'stats'", "'where'", "'lookup'", "'change_point'",
+ null, null, null, null, null, null, null, null, null, null, null, "'|'",
+ null, null, null, "'and'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
+ "'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'",
+ "'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'",
+ "')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'",
+ "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", "'??'", null,
+ null, null, "']'", null, null, null, null, null, null, null, null, "'metadata'",
+ null, null, null, null, null, null, null, null, "'as'", null, null, null,
+ null, null, null, null, null, null, null, null, null, null, "'info'",
null, null, null, null, null, null, null, null, null, null, null, null,
- "'|'", null, null, null, "'and'", "'asc'", "'='", "'by'", "'::'", "':'",
- "','", "'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'",
- "'like'", "'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'",
- "'rlike'", "')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'",
- "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'",
- "'??'", null, null, null, "']'", null, null, null, null, null, null,
- null, null, "'metadata'", null, null, null, null, null, null, null, null,
- "'as'", null, null, null, null, null, null, null, null, null, null, null,
- null, null, "'info'", null, null, null, null, null, null, null, null,
- null, null, null, null, null, "'join'", "'USING'"
+ null, "'join'", "'USING'"
};
}
private static final String[] _LITERAL_NAMES = makeLiteralNames();
private static String[] makeSymbolicNames() {
return new String[] {
null, "COMPLETION", "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM",
- "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT",
- "STATS", "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP",
- "DEV_METRICS", "DEV_RERANK", "DEV_SAMPLE", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
+ "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SAMPLE", "SHOW",
+ "SORT", "STATS", "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS",
+ "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
"DEV_JOIN_RIGHT", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT",
"WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL",
"AND", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC", "DOT",
@@ -518,6 +518,9 @@ public ChangePointCommandContext changePointCommand() {
public CompletionCommandContext completionCommand() {
return getRuleContext(CompletionCommandContext.class,0);
}
+ public SampleCommandContext sampleCommand() {
+ return getRuleContext(SampleCommandContext.class,0);
+ }
public InlinestatsCommandContext inlinestatsCommand() {
return getRuleContext(InlinestatsCommandContext.class,0);
}
@@ -527,9 +530,6 @@ public LookupCommandContext lookupCommand() {
public RerankCommandContext rerankCommand() {
return getRuleContext(RerankCommandContext.class,0);
}
- public SampleCommandContext sampleCommand() {
- return getRuleContext(SampleCommandContext.class,0);
- }
@SuppressWarnings("this-escape")
public ProcessingCommandContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -554,7 +554,7 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState());
enterRule(_localctx, 6, RULE_processingCommand);
try {
- setState(199);
+ setState(198);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
case 1:
@@ -666,36 +666,34 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
enterOuterAlt(_localctx, 16);
{
setState(191);
- if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(192);
- inlinestatsCommand();
+ sampleCommand();
}
break;
case 17:
enterOuterAlt(_localctx, 17);
{
- setState(193);
+ setState(192);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(194);
- lookupCommand();
+ setState(193);
+ inlinestatsCommand();
}
break;
case 18:
enterOuterAlt(_localctx, 18);
{
- setState(195);
+ setState(194);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(196);
- rerankCommand();
+ setState(195);
+ lookupCommand();
}
break;
case 19:
enterOuterAlt(_localctx, 19);
{
- setState(197);
+ setState(196);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(198);
- sampleCommand();
+ setState(197);
+ rerankCommand();
}
break;
}
@@ -743,9 +741,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(201);
+ setState(200);
match(WHERE);
- setState(202);
+ setState(201);
booleanExpression(0);
}
}
@@ -961,7 +959,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(233);
+ setState(232);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
case 1:
@@ -970,9 +968,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(205);
+ setState(204);
match(NOT);
- setState(206);
+ setState(205);
booleanExpression(8);
}
break;
@@ -981,7 +979,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(207);
+ setState(206);
valueExpression();
}
break;
@@ -990,7 +988,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(208);
+ setState(207);
regexBooleanExpression();
}
break;
@@ -999,41 +997,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(209);
+ setState(208);
valueExpression();
- setState(211);
+ setState(210);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(210);
+ setState(209);
match(NOT);
}
}
- setState(213);
+ setState(212);
match(IN);
- setState(214);
+ setState(213);
match(LP);
- setState(215);
+ setState(214);
valueExpression();
- setState(220);
+ setState(219);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(216);
+ setState(215);
match(COMMA);
- setState(217);
+ setState(216);
valueExpression();
}
}
- setState(222);
+ setState(221);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(223);
+ setState(222);
match(RP);
}
break;
@@ -1042,21 +1040,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(225);
+ setState(224);
valueExpression();
- setState(226);
+ setState(225);
match(IS);
- setState(228);
+ setState(227);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(227);
+ setState(226);
match(NOT);
}
}
- setState(230);
+ setState(229);
match(NULL);
}
break;
@@ -1065,13 +1063,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(232);
+ setState(231);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(243);
+ setState(242);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1079,7 +1077,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(241);
+ setState(240);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
case 1:
@@ -1087,11 +1085,11 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(235);
+ setState(234);
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(236);
+ setState(235);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(237);
+ setState(236);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -1100,18 +1098,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState));
((LogicalBinaryContext)_localctx).left = _prevctx;
pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression);
- setState(238);
+ setState(237);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(239);
+ setState(238);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(240);
+ setState(239);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
}
}
- setState(245);
+ setState(244);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
}
@@ -1235,28 +1233,28 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
enterRule(_localctx, 12, RULE_regexBooleanExpression);
int _la;
try {
- setState(276);
+ setState(275);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
case 1:
_localctx = new LikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(246);
+ setState(245);
valueExpression();
- setState(248);
+ setState(247);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(247);
+ setState(246);
match(NOT);
}
}
- setState(250);
+ setState(249);
match(LIKE);
- setState(251);
+ setState(250);
string();
}
break;
@@ -1264,21 +1262,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new RlikeExpressionContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(253);
+ setState(252);
valueExpression();
- setState(255);
+ setState(254);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(254);
+ setState(253);
match(NOT);
}
}
- setState(257);
+ setState(256);
match(RLIKE);
- setState(258);
+ setState(257);
string();
}
break;
@@ -1286,41 +1284,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
_localctx = new LikeListExpressionContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(260);
+ setState(259);
valueExpression();
- setState(262);
+ setState(261);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(261);
+ setState(260);
match(NOT);
}
}
- setState(264);
+ setState(263);
match(LIKE);
- setState(265);
+ setState(264);
match(LP);
- setState(266);
+ setState(265);
string();
- setState(271);
+ setState(270);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(267);
+ setState(266);
match(COMMA);
- setState(268);
+ setState(267);
string();
}
}
- setState(273);
+ setState(272);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(274);
+ setState(273);
match(RP);
}
break;
@@ -1380,23 +1378,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(278);
+ setState(277);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(281);
+ setState(280);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(279);
+ setState(278);
match(CAST_OP);
- setState(280);
+ setState(279);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(283);
+ setState(282);
match(COLON);
- setState(284);
+ setState(283);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -1480,14 +1478,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
enterRule(_localctx, 16, RULE_valueExpression);
try {
- setState(291);
+ setState(290);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(286);
+ setState(285);
operatorExpression(0);
}
break;
@@ -1495,11 +1493,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(287);
+ setState(286);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(288);
+ setState(287);
comparisonOperator();
- setState(289);
+ setState(288);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -1624,7 +1622,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(297);
+ setState(296);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
case 1:
@@ -1633,7 +1631,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_ctx = _localctx;
_prevctx = _localctx;
- setState(294);
+ setState(293);
primaryExpression(0);
}
break;
@@ -1642,7 +1640,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(295);
+ setState(294);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1653,13 +1651,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(296);
+ setState(295);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(307);
+ setState(306);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1667,7 +1665,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(305);
+ setState(304);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
case 1:
@@ -1675,9 +1673,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(299);
+ setState(298);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(300);
+ setState(299);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 7L) != 0)) ) {
@@ -1688,7 +1686,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(301);
+ setState(300);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -1697,9 +1695,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(302);
+ setState(301);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(303);
+ setState(302);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1710,14 +1708,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(304);
+ setState(303);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(309);
+ setState(308);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
}
@@ -1875,7 +1873,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(318);
+ setState(317);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
case 1:
@@ -1884,7 +1882,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(311);
+ setState(310);
constant();
}
break;
@@ -1893,7 +1891,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(312);
+ setState(311);
qualifiedName();
}
break;
@@ -1902,7 +1900,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(313);
+ setState(312);
functionExpression();
}
break;
@@ -1911,17 +1909,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(314);
+ setState(313);
match(LP);
- setState(315);
+ setState(314);
booleanExpression(0);
- setState(316);
+ setState(315);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(325);
+ setState(324);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,20,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1932,16 +1930,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(320);
+ setState(319);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(321);
+ setState(320);
match(CAST_OP);
- setState(322);
+ setState(321);
dataType();
}
}
}
- setState(327);
+ setState(326);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,20,_ctx);
}
@@ -2007,16 +2005,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(328);
+ setState(327);
functionName();
- setState(329);
+ setState(328);
match(LP);
- setState(343);
+ setState(342);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASTERISK:
{
- setState(330);
+ setState(329);
match(ASTERISK);
}
break;
@@ -2039,34 +2037,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
case QUOTED_IDENTIFIER:
{
{
- setState(331);
+ setState(330);
booleanExpression(0);
- setState(336);
+ setState(335);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,21,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(332);
+ setState(331);
match(COMMA);
- setState(333);
+ setState(332);
booleanExpression(0);
}
}
}
- setState(338);
+ setState(337);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,21,_ctx);
}
- setState(341);
+ setState(340);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(339);
+ setState(338);
match(COMMA);
- setState(340);
+ setState(339);
mapExpression();
}
}
@@ -2079,7 +2077,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
default:
break;
}
- setState(345);
+ setState(344);
match(RP);
}
}
@@ -2125,7 +2123,7 @@ public final FunctionNameContext functionName() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(347);
+ setState(346);
identifierOrParameter();
}
}
@@ -2181,27 +2179,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(349);
+ setState(348);
match(LEFT_BRACES);
- setState(350);
+ setState(349);
entryExpression();
- setState(355);
+ setState(354);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(351);
+ setState(350);
match(COMMA);
- setState(352);
+ setState(351);
entryExpression();
}
}
- setState(357);
+ setState(356);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(358);
+ setState(357);
match(RIGHT_BRACES);
}
}
@@ -2253,11 +2251,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(360);
+ setState(359);
((EntryExpressionContext)_localctx).key = string();
- setState(361);
+ setState(360);
match(COLON);
- setState(362);
+ setState(361);
((EntryExpressionContext)_localctx).value = constant();
}
}
@@ -2315,7 +2313,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(364);
+ setState(363);
identifier();
}
}
@@ -2362,9 +2360,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(366);
+ setState(365);
match(ROW);
- setState(367);
+ setState(366);
fields();
}
}
@@ -2418,23 +2416,23 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(369);
+ setState(368);
field();
- setState(374);
+ setState(373);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,25,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(370);
+ setState(369);
match(COMMA);
- setState(371);
+ setState(370);
field();
}
}
}
- setState(376);
+ setState(375);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,25,_ctx);
}
@@ -2486,19 +2484,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(380);
+ setState(379);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
case 1:
{
- setState(377);
+ setState(376);
qualifiedName();
- setState(378);
+ setState(377);
match(ASSIGN);
}
break;
}
- setState(382);
+ setState(381);
booleanExpression(0);
}
}
@@ -2552,23 +2550,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(384);
+ setState(383);
rerankField();
- setState(389);
+ setState(388);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,27,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(385);
+ setState(384);
match(COMMA);
- setState(386);
+ setState(385);
rerankField();
}
}
}
- setState(391);
+ setState(390);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,27,_ctx);
}
@@ -2620,16 +2618,16 @@ public final RerankFieldContext rerankField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(392);
+ setState(391);
qualifiedName();
- setState(395);
+ setState(394);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
case 1:
{
- setState(393);
+ setState(392);
match(ASSIGN);
- setState(394);
+ setState(393);
booleanExpression(0);
}
break;
@@ -2690,34 +2688,34 @@ public final FromCommandContext fromCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(397);
+ setState(396);
match(FROM);
- setState(398);
+ setState(397);
indexPattern();
- setState(403);
+ setState(402);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,29,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(399);
+ setState(398);
match(COMMA);
- setState(400);
+ setState(399);
indexPattern();
}
}
}
- setState(405);
+ setState(404);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,29,_ctx);
}
- setState(407);
+ setState(406);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
case 1:
{
- setState(406);
+ setState(405);
metadata();
}
break;
@@ -2775,35 +2773,35 @@ public final IndexPatternContext indexPattern() throws RecognitionException {
IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState());
enterRule(_localctx, 44, RULE_indexPattern);
try {
- setState(418);
+ setState(417);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(409);
+ setState(408);
clusterString();
- setState(410);
+ setState(409);
match(COLON);
- setState(411);
+ setState(410);
unquotedIndexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(413);
+ setState(412);
unquotedIndexString();
- setState(414);
+ setState(413);
match(CAST_OP);
- setState(415);
+ setState(414);
selectorString();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(417);
+ setState(416);
indexString();
}
break;
@@ -2849,7 +2847,7 @@ public final ClusterStringContext clusterString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(420);
+ setState(419);
match(UNQUOTED_SOURCE);
}
}
@@ -2893,7 +2891,7 @@ public final SelectorStringContext selectorString() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(422);
+ setState(421);
match(UNQUOTED_SOURCE);
}
}
@@ -2937,7 +2935,7 @@ public final UnquotedIndexStringContext unquotedIndexString() throws Recognition
try {
enterOuterAlt(_localctx, 1);
{
- setState(424);
+ setState(423);
match(UNQUOTED_SOURCE);
}
}
@@ -2983,7 +2981,7 @@ public final IndexStringContext indexString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(426);
+ setState(425);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -3038,20 +3036,20 @@ public final MetadataContext metadata() throws RecognitionException {
MetadataContext _localctx = new MetadataContext(_ctx, getState());
enterRule(_localctx, 54, RULE_metadata);
try {
- setState(430);
+ setState(429);
_errHandler.sync(this);
switch (_input.LA(1)) {
case METADATA:
enterOuterAlt(_localctx, 1);
{
- setState(428);
+ setState(427);
metadataOption();
}
break;
case OPENING_BRACKET:
enterOuterAlt(_localctx, 2);
{
- setState(429);
+ setState(428);
deprecated_metadata();
}
break;
@@ -3108,25 +3106,25 @@ public final MetadataOptionContext metadataOption() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(432);
+ setState(431);
match(METADATA);
- setState(433);
+ setState(432);
match(UNQUOTED_SOURCE);
- setState(438);
+ setState(437);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,33,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(434);
+ setState(433);
match(COMMA);
- setState(435);
+ setState(434);
match(UNQUOTED_SOURCE);
}
}
}
- setState(440);
+ setState(439);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,33,_ctx);
}
@@ -3175,11 +3173,11 @@ public final Deprecated_metadataContext deprecated_metadata() throws Recognition
try {
enterOuterAlt(_localctx, 1);
{
- setState(441);
+ setState(440);
match(OPENING_BRACKET);
- setState(442);
+ setState(441);
metadataOption();
- setState(443);
+ setState(442);
match(CLOSING_BRACKET);
}
}
@@ -3243,46 +3241,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(445);
+ setState(444);
match(DEV_METRICS);
- setState(446);
+ setState(445);
indexPattern();
- setState(451);
+ setState(450);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,34,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(447);
+ setState(446);
match(COMMA);
- setState(448);
+ setState(447);
indexPattern();
}
}
}
- setState(453);
+ setState(452);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,34,_ctx);
}
- setState(455);
+ setState(454);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
{
- setState(454);
+ setState(453);
((MetricsCommandContext)_localctx).aggregates = aggFields();
}
break;
}
- setState(459);
+ setState(458);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
{
- setState(457);
+ setState(456);
match(BY);
- setState(458);
+ setState(457);
((MetricsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3332,9 +3330,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(461);
+ setState(460);
match(EVAL);
- setState(462);
+ setState(461);
fields();
}
}
@@ -3387,26 +3385,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(464);
+ setState(463);
match(STATS);
- setState(466);
+ setState(465);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
case 1:
{
- setState(465);
+ setState(464);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(470);
+ setState(469);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(468);
+ setState(467);
match(BY);
- setState(469);
+ setState(468);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3463,23 +3461,23 @@ public final AggFieldsContext aggFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(472);
+ setState(471);
aggField();
- setState(477);
+ setState(476);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,39,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(473);
+ setState(472);
match(COMMA);
- setState(474);
+ setState(473);
aggField();
}
}
}
- setState(479);
+ setState(478);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,39,_ctx);
}
@@ -3531,16 +3529,16 @@ public final AggFieldContext aggField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(480);
+ setState(479);
field();
- setState(483);
+ setState(482);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
- setState(481);
+ setState(480);
match(WHERE);
- setState(482);
+ setState(481);
booleanExpression(0);
}
break;
@@ -3597,23 +3595,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(485);
+ setState(484);
identifierOrParameter();
- setState(490);
+ setState(489);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,41,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(486);
+ setState(485);
match(DOT);
- setState(487);
+ setState(486);
identifierOrParameter();
}
}
}
- setState(492);
+ setState(491);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,41,_ctx);
}
@@ -3669,23 +3667,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(493);
+ setState(492);
identifierPattern();
- setState(498);
+ setState(497);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,42,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(494);
+ setState(493);
match(DOT);
- setState(495);
+ setState(494);
identifierPattern();
}
}
}
- setState(500);
+ setState(499);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,42,_ctx);
}
@@ -3741,23 +3739,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(501);
+ setState(500);
qualifiedNamePattern();
- setState(506);
+ setState(505);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,43,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(502);
+ setState(501);
match(COMMA);
- setState(503);
+ setState(502);
qualifiedNamePattern();
}
}
}
- setState(508);
+ setState(507);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,43,_ctx);
}
@@ -3805,7 +3803,7 @@ public final IdentifierContext identifier() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(509);
+ setState(508);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -3861,13 +3859,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
enterRule(_localctx, 78, RULE_identifierPattern);
try {
- setState(514);
+ setState(513);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(511);
+ setState(510);
match(ID_PATTERN);
}
break;
@@ -3875,7 +3873,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(512);
+ setState(511);
parameter();
}
break;
@@ -3883,7 +3881,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(513);
+ setState(512);
doubleParameter();
}
break;
@@ -4158,14 +4156,14 @@ public final ConstantContext constant() throws RecognitionException {
enterRule(_localctx, 80, RULE_constant);
int _la;
try {
- setState(558);
+ setState(557);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(516);
+ setState(515);
match(NULL);
}
break;
@@ -4173,9 +4171,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(517);
+ setState(516);
integerValue();
- setState(518);
+ setState(517);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -4183,7 +4181,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(520);
+ setState(519);
decimalValue();
}
break;
@@ -4191,7 +4189,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(521);
+ setState(520);
integerValue();
}
break;
@@ -4199,7 +4197,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(522);
+ setState(521);
booleanValue();
}
break;
@@ -4207,7 +4205,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(523);
+ setState(522);
parameter();
}
break;
@@ -4215,7 +4213,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(524);
+ setState(523);
string();
}
break;
@@ -4223,27 +4221,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(525);
+ setState(524);
match(OPENING_BRACKET);
- setState(526);
+ setState(525);
numericValue();
- setState(531);
+ setState(530);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(527);
+ setState(526);
match(COMMA);
- setState(528);
+ setState(527);
numericValue();
}
}
- setState(533);
+ setState(532);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(534);
+ setState(533);
match(CLOSING_BRACKET);
}
break;
@@ -4251,27 +4249,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(536);
+ setState(535);
match(OPENING_BRACKET);
- setState(537);
+ setState(536);
booleanValue();
- setState(542);
+ setState(541);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(538);
+ setState(537);
match(COMMA);
- setState(539);
+ setState(538);
booleanValue();
}
}
- setState(544);
+ setState(543);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(545);
+ setState(544);
match(CLOSING_BRACKET);
}
break;
@@ -4279,27 +4277,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(547);
+ setState(546);
match(OPENING_BRACKET);
- setState(548);
+ setState(547);
string();
- setState(553);
+ setState(552);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(549);
+ setState(548);
match(COMMA);
- setState(550);
+ setState(549);
string();
}
}
- setState(555);
+ setState(554);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(556);
+ setState(555);
match(CLOSING_BRACKET);
}
break;
@@ -4373,14 +4371,14 @@ public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
enterRule(_localctx, 82, RULE_parameter);
try {
- setState(562);
+ setState(561);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(560);
+ setState(559);
match(PARAM);
}
break;
@@ -4388,7 +4386,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(561);
+ setState(560);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -4464,14 +4462,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
enterRule(_localctx, 84, RULE_doubleParameter);
try {
- setState(566);
+ setState(565);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(564);
+ setState(563);
match(DOUBLE_PARAMS);
}
break;
@@ -4479,7 +4477,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(565);
+ setState(564);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -4533,14 +4531,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
enterRule(_localctx, 86, RULE_identifierOrParameter);
try {
- setState(571);
+ setState(570);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(568);
+ setState(567);
identifier();
}
break;
@@ -4548,7 +4546,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(569);
+ setState(568);
parameter();
}
break;
@@ -4556,7 +4554,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(570);
+ setState(569);
doubleParameter();
}
break;
@@ -4607,9 +4605,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(573);
+ setState(572);
match(LIMIT);
- setState(574);
+ setState(573);
constant();
}
}
@@ -4664,25 +4662,25 @@ public final SortCommandContext sortCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(576);
+ setState(575);
match(SORT);
- setState(577);
+ setState(576);
orderExpression();
- setState(582);
+ setState(581);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,52,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(578);
+ setState(577);
match(COMMA);
- setState(579);
+ setState(578);
orderExpression();
}
}
}
- setState(584);
+ setState(583);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,52,_ctx);
}
@@ -4738,14 +4736,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(585);
+ setState(584);
booleanExpression(0);
- setState(587);
+ setState(586);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
case 1:
{
- setState(586);
+ setState(585);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -4759,14 +4757,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(591);
+ setState(590);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
{
- setState(589);
+ setState(588);
match(NULLS);
- setState(590);
+ setState(589);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -4825,9 +4823,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(593);
+ setState(592);
match(KEEP);
- setState(594);
+ setState(593);
qualifiedNamePatterns();
}
}
@@ -4874,9 +4872,9 @@ public final DropCommandContext dropCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(596);
+ setState(595);
match(DROP);
- setState(597);
+ setState(596);
qualifiedNamePatterns();
}
}
@@ -4931,25 +4929,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(599);
+ setState(598);
match(RENAME);
- setState(600);
+ setState(599);
renameClause();
- setState(605);
+ setState(604);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,55,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(601);
+ setState(600);
match(COMMA);
- setState(602);
+ setState(601);
renameClause();
}
}
}
- setState(607);
+ setState(606);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,55,_ctx);
}
@@ -5002,28 +5000,28 @@ public final RenameClauseContext renameClause() throws RecognitionException {
RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState());
enterRule(_localctx, 100, RULE_renameClause);
try {
- setState(616);
+ setState(615);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(608);
+ setState(607);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(609);
+ setState(608);
match(AS);
- setState(610);
+ setState(609);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(612);
+ setState(611);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(613);
+ setState(612);
match(ASSIGN);
- setState(614);
+ setState(613);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
}
break;
@@ -5078,18 +5076,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(618);
+ setState(617);
match(DISSECT);
- setState(619);
+ setState(618);
primaryExpression(0);
- setState(620);
+ setState(619);
string();
- setState(622);
+ setState(621);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) {
case 1:
{
- setState(621);
+ setState(620);
commandOptions();
}
break;
@@ -5142,11 +5140,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(624);
+ setState(623);
match(GROK);
- setState(625);
+ setState(624);
primaryExpression(0);
- setState(626);
+ setState(625);
string();
}
}
@@ -5193,9 +5191,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(628);
+ setState(627);
match(MV_EXPAND);
- setState(629);
+ setState(628);
qualifiedName();
}
}
@@ -5249,23 +5247,23 @@ public final CommandOptionsContext commandOptions() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(631);
+ setState(630);
commandOption();
- setState(636);
+ setState(635);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,58,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(632);
+ setState(631);
match(COMMA);
- setState(633);
+ setState(632);
commandOption();
}
}
}
- setState(638);
+ setState(637);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,58,_ctx);
}
@@ -5317,11 +5315,11 @@ public final CommandOptionContext commandOption() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(639);
+ setState(638);
identifier();
- setState(640);
+ setState(639);
match(ASSIGN);
- setState(641);
+ setState(640);
constant();
}
}
@@ -5367,7 +5365,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(643);
+ setState(642);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -5422,20 +5420,20 @@ public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
enterRule(_localctx, 114, RULE_numericValue);
try {
- setState(647);
+ setState(646);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(645);
+ setState(644);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(646);
+ setState(645);
integerValue();
}
break;
@@ -5484,12 +5482,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(650);
+ setState(649);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(649);
+ setState(648);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5502,7 +5500,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(652);
+ setState(651);
match(DECIMAL_LITERAL);
}
}
@@ -5549,12 +5547,12 @@ public final IntegerValueContext integerValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(655);
+ setState(654);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(654);
+ setState(653);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5567,7 +5565,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(657);
+ setState(656);
match(INTEGER_LITERAL);
}
}
@@ -5611,7 +5609,7 @@ public final StringContext string() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(659);
+ setState(658);
match(QUOTED_STRING);
}
}
@@ -5661,7 +5659,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(661);
+ setState(660);
_la = _input.LA(1);
if ( !(((((_la - 62)) & ~0x3f) == 0 && ((1L << (_la - 62)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -5716,9 +5714,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(663);
+ setState(662);
match(EXPLAIN);
- setState(664);
+ setState(663);
subqueryExpression();
}
}
@@ -5766,11 +5764,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(666);
+ setState(665);
match(OPENING_BRACKET);
- setState(667);
+ setState(666);
query(0);
- setState(668);
+ setState(667);
match(CLOSING_BRACKET);
}
}
@@ -5827,9 +5825,9 @@ public final ShowCommandContext showCommand() throws RecognitionException {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(670);
+ setState(669);
match(SHOW);
- setState(671);
+ setState(670);
match(INFO);
}
}
@@ -5892,46 +5890,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(673);
+ setState(672);
match(ENRICH);
- setState(674);
+ setState(673);
((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME);
- setState(677);
+ setState(676);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) {
case 1:
{
- setState(675);
+ setState(674);
match(ON);
- setState(676);
+ setState(675);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(688);
+ setState(687);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
{
- setState(679);
+ setState(678);
match(WITH);
- setState(680);
+ setState(679);
enrichWithClause();
- setState(685);
+ setState(684);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,63,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(681);
+ setState(680);
match(COMMA);
- setState(682);
+ setState(681);
enrichWithClause();
}
}
}
- setState(687);
+ setState(686);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,63,_ctx);
}
@@ -5988,19 +5986,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept
try {
enterOuterAlt(_localctx, 1);
{
- setState(693);
+ setState(692);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
case 1:
{
- setState(690);
+ setState(689);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(691);
+ setState(690);
match(ASSIGN);
}
break;
}
- setState(695);
+ setState(694);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -6057,34 +6055,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(697);
+ setState(696);
match(CHANGE_POINT);
- setState(698);
+ setState(697);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(701);
+ setState(700);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
case 1:
{
- setState(699);
+ setState(698);
match(ON);
- setState(700);
+ setState(699);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(708);
+ setState(707);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
case 1:
{
- setState(703);
+ setState(702);
match(AS);
- setState(704);
+ setState(703);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(705);
+ setState(704);
match(COMMA);
- setState(706);
+ setState(705);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -6102,6 +6100,56 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx
return _localctx;
}
+ @SuppressWarnings("CheckReturnValue")
+ public static class SampleCommandContext extends ParserRuleContext {
+ public ConstantContext probability;
+ public TerminalNode SAMPLE() { return getToken(EsqlBaseParser.SAMPLE, 0); }
+ public ConstantContext constant() {
+ return getRuleContext(ConstantContext.class,0);
+ }
+ @SuppressWarnings("this-escape")
+ public SampleCommandContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_sampleCommand; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSampleCommand(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSampleCommand(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitSampleCommand(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final SampleCommandContext sampleCommand() throws RecognitionException {
+ SampleCommandContext _localctx = new SampleCommandContext(_ctx, getState());
+ enterRule(_localctx, 136, RULE_sampleCommand);
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(709);
+ match(SAMPLE);
+ setState(710);
+ ((SampleCommandContext)_localctx).probability = constant();
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
@SuppressWarnings("CheckReturnValue")
public static class LookupCommandContext extends ParserRuleContext {
public IndexPatternContext tableName;
@@ -6136,17 +6184,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LookupCommandContext lookupCommand() throws RecognitionException {
LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState());
- enterRule(_localctx, 136, RULE_lookupCommand);
+ enterRule(_localctx, 138, RULE_lookupCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(710);
+ setState(712);
match(DEV_LOOKUP);
- setState(711);
+ setState(713);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(712);
+ setState(714);
match(ON);
- setState(713);
+ setState(715);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -6195,22 +6243,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException {
InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState());
- enterRule(_localctx, 138, RULE_inlinestatsCommand);
+ enterRule(_localctx, 140, RULE_inlinestatsCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(715);
+ setState(717);
match(DEV_INLINESTATS);
- setState(716);
+ setState(718);
((InlinestatsCommandContext)_localctx).stats = aggFields();
- setState(719);
+ setState(721);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
case 1:
{
- setState(717);
+ setState(719);
match(BY);
- setState(718);
+ setState(720);
((InlinestatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -6263,15 +6311,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinCommandContext joinCommand() throws RecognitionException {
JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState());
- enterRule(_localctx, 140, RULE_joinCommand);
+ enterRule(_localctx, 142, RULE_joinCommand);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(721);
+ setState(723);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 201588736L) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 201850880L) != 0)) ) {
((JoinCommandContext)_localctx).type = (Token)_errHandler.recoverInline(this);
}
else {
@@ -6279,11 +6327,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(722);
+ setState(724);
match(JOIN);
- setState(723);
+ setState(725);
joinTarget();
- setState(724);
+ setState(726);
joinCondition();
}
}
@@ -6326,11 +6374,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinTargetContext joinTarget() throws RecognitionException {
JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState());
- enterRule(_localctx, 142, RULE_joinTarget);
+ enterRule(_localctx, 144, RULE_joinTarget);
try {
enterOuterAlt(_localctx, 1);
{
- setState(726);
+ setState(728);
((JoinTargetContext)_localctx).index = indexPattern();
}
}
@@ -6380,30 +6428,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinConditionContext joinCondition() throws RecognitionException {
JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState());
- enterRule(_localctx, 144, RULE_joinCondition);
+ enterRule(_localctx, 146, RULE_joinCondition);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(728);
+ setState(730);
match(ON);
- setState(729);
+ setState(731);
joinPredicate();
- setState(734);
+ setState(736);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,69,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(730);
+ setState(732);
match(COMMA);
- setState(731);
+ setState(733);
joinPredicate();
}
}
}
- setState(736);
+ setState(738);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,69,_ctx);
}
@@ -6447,11 +6495,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinPredicateContext joinPredicate() throws RecognitionException {
JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState());
- enterRule(_localctx, 146, RULE_joinPredicate);
+ enterRule(_localctx, 148, RULE_joinPredicate);
try {
enterOuterAlt(_localctx, 1);
{
- setState(737);
+ setState(739);
valueExpression();
}
}
@@ -6504,26 +6552,26 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RerankCommandContext rerankCommand() throws RecognitionException {
RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState());
- enterRule(_localctx, 148, RULE_rerankCommand);
+ enterRule(_localctx, 150, RULE_rerankCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(739);
+ setState(741);
match(DEV_RERANK);
- setState(740);
+ setState(742);
((RerankCommandContext)_localctx).queryText = constant();
- setState(741);
+ setState(743);
match(ON);
- setState(742);
+ setState(744);
rerankFields();
- setState(745);
+ setState(747);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) {
case 1:
{
- setState(743);
+ setState(745);
match(WITH);
- setState(744);
+ setState(746);
((RerankCommandContext)_localctx).inferenceId = identifierOrParameter();
}
break;
@@ -6580,80 +6628,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CompletionCommandContext completionCommand() throws RecognitionException {
CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState());
- enterRule(_localctx, 150, RULE_completionCommand);
+ enterRule(_localctx, 152, RULE_completionCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(747);
+ setState(749);
match(COMPLETION);
- setState(751);
+ setState(753);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) {
case 1:
{
- setState(748);
+ setState(750);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
- setState(749);
+ setState(751);
match(ASSIGN);
}
break;
}
- setState(753);
+ setState(755);
((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
- setState(754);
+ setState(756);
match(WITH);
- setState(755);
- ((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
- }
- }
- catch (RecognitionException re) {
- _localctx.exception = re;
- _errHandler.reportError(this, re);
- _errHandler.recover(this, re);
- }
- finally {
- exitRule();
- }
- return _localctx;
- }
-
- @SuppressWarnings("CheckReturnValue")
- public static class SampleCommandContext extends ParserRuleContext {
- public ConstantContext probability;
- public TerminalNode DEV_SAMPLE() { return getToken(EsqlBaseParser.DEV_SAMPLE, 0); }
- public ConstantContext constant() {
- return getRuleContext(ConstantContext.class,0);
- }
- @SuppressWarnings("this-escape")
- public SampleCommandContext(ParserRuleContext parent, int invokingState) {
- super(parent, invokingState);
- }
- @Override public int getRuleIndex() { return RULE_sampleCommand; }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSampleCommand(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSampleCommand(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitSampleCommand(this);
- else return visitor.visitChildren(this);
- }
- }
-
- public final SampleCommandContext sampleCommand() throws RecognitionException {
- SampleCommandContext _localctx = new SampleCommandContext(_ctx, getState());
- enterRule(_localctx, 152, RULE_sampleCommand);
- try {
- enterOuterAlt(_localctx, 1);
- {
setState(757);
- match(DEV_SAMPLE);
- setState(758);
- ((SampleCommandContext)_localctx).probability = constant();
+ ((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
}
}
catch (RecognitionException re) {
@@ -6706,39 +6704,37 @@ private boolean processingCommand_sempred(ProcessingCommandContext _localctx, in
return this.isDevVersion();
case 4:
return this.isDevVersion();
- case 5:
- return this.isDevVersion();
}
return true;
}
private boolean booleanExpression_sempred(BooleanExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 6:
+ case 5:
return precpred(_ctx, 5);
- case 7:
+ case 6:
return precpred(_ctx, 4);
}
return true;
}
private boolean operatorExpression_sempred(OperatorExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 8:
+ case 7:
return precpred(_ctx, 2);
- case 9:
+ case 8:
return precpred(_ctx, 1);
}
return true;
}
private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 10:
+ case 9:
return precpred(_ctx, 1);
}
return true;
}
public static final String _serializedATN =
- "\u0004\u0001\u008b\u02f9\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008b\u02f8\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"+
@@ -6764,454 +6760,453 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
"\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
- "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+
- "\u00c8\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005"+
- "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005"+
- "\u00d4\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0005\u0005\u00db\b\u0005\n\u0005\f\u0005\u00de\t\u0005\u0001\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e5\b\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00ea\b\u0005\u0001\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00f2"+
- "\b\u0005\n\u0005\f\u0005\u00f5\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+
- "\u00f9\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
- "\u0003\u0006\u0100\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
- "\u0001\u0006\u0003\u0006\u0107\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
- "\u0001\u0006\u0001\u0006\u0005\u0006\u010e\b\u0006\n\u0006\f\u0006\u0111"+
- "\t\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u0115\b\u0006\u0001\u0007"+
- "\u0001\u0007\u0001\u0007\u0003\u0007\u011a\b\u0007\u0001\u0007\u0001\u0007"+
- "\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u0124\b\b"+
- "\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u012a\b\t\u0001\t\u0001\t\u0001"+
- "\t\u0001\t\u0001\t\u0001\t\u0005\t\u0132\b\t\n\t\f\t\u0135\t\t\u0001\n"+
- "\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u013f"+
- "\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u0144\b\n\n\n\f\n\u0147\t\n\u0001"+
- "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005"+
- "\u000b\u014f\b\u000b\n\u000b\f\u000b\u0152\t\u000b\u0001\u000b\u0001\u000b"+
- "\u0003\u000b\u0156\b\u000b\u0003\u000b\u0158\b\u000b\u0001\u000b\u0001"+
- "\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0005\r\u0162\b"+
- "\r\n\r\f\r\u0165\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\u0175\b\u0011\n\u0011"+
- "\f\u0011\u0178\t\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012"+
- "\u017d\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013"+
- "\u0005\u0013\u0184\b\u0013\n\u0013\f\u0013\u0187\t\u0013\u0001\u0014\u0001"+
- "\u0014\u0001\u0014\u0003\u0014\u018c\b\u0014\u0001\u0015\u0001\u0015\u0001"+
- "\u0015\u0001\u0015\u0005\u0015\u0192\b\u0015\n\u0015\f\u0015\u0195\t\u0015"+
- "\u0001\u0015\u0003\u0015\u0198\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016"+
- "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
- "\u0003\u0016\u01a3\b\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018"+
- "\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b"+
- "\u0003\u001b\u01af\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c"+
- "\u0005\u001c\u01b5\b\u001c\n\u001c\f\u001c\u01b8\t\u001c\u0001\u001d\u0001"+
- "\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+
- "\u001e\u0005\u001e\u01c2\b\u001e\n\u001e\f\u001e\u01c5\t\u001e\u0001\u001e"+
- "\u0003\u001e\u01c8\b\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01cc\b"+
- "\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01d3"+
- "\b \u0001 \u0001 \u0003 \u01d7\b \u0001!\u0001!\u0001!\u0005!\u01dc\b"+
- "!\n!\f!\u01df\t!\u0001\"\u0001\"\u0001\"\u0003\"\u01e4\b\"\u0001#\u0001"+
- "#\u0001#\u0005#\u01e9\b#\n#\f#\u01ec\t#\u0001$\u0001$\u0001$\u0005$\u01f1"+
- "\b$\n$\f$\u01f4\t$\u0001%\u0001%\u0001%\u0005%\u01f9\b%\n%\f%\u01fc\t"+
- "%\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0003\'\u0203\b\'\u0001(\u0001"+
- "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
- "(\u0001(\u0005(\u0212\b(\n(\f(\u0215\t(\u0001(\u0001(\u0001(\u0001(\u0001"+
- "(\u0001(\u0005(\u021d\b(\n(\f(\u0220\t(\u0001(\u0001(\u0001(\u0001(\u0001"+
- "(\u0001(\u0005(\u0228\b(\n(\f(\u022b\t(\u0001(\u0001(\u0003(\u022f\b("+
- "\u0001)\u0001)\u0003)\u0233\b)\u0001*\u0001*\u0003*\u0237\b*\u0001+\u0001"+
- "+\u0001+\u0003+\u023c\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001"+
- "-\u0005-\u0245\b-\n-\f-\u0248\t-\u0001.\u0001.\u0003.\u024c\b.\u0001."+
- "\u0001.\u0003.\u0250\b.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u0001"+
- "1\u00011\u00011\u00011\u00051\u025c\b1\n1\f1\u025f\t1\u00012\u00012\u0001"+
- "2\u00012\u00012\u00012\u00012\u00012\u00032\u0269\b2\u00013\u00013\u0001"+
- "3\u00013\u00033\u026f\b3\u00014\u00014\u00014\u00014\u00015\u00015\u0001"+
- "5\u00016\u00016\u00016\u00056\u027b\b6\n6\f6\u027e\t6\u00017\u00017\u0001"+
- "7\u00017\u00018\u00018\u00019\u00019\u00039\u0288\b9\u0001:\u0003:\u028b"+
- "\b:\u0001:\u0001:\u0001;\u0003;\u0290\b;\u0001;\u0001;\u0001<\u0001<\u0001"+
- "=\u0001=\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001"+
- "@\u0001@\u0001A\u0001A\u0001A\u0001A\u0003A\u02a6\bA\u0001A\u0001A\u0001"+
- "A\u0001A\u0005A\u02ac\bA\nA\fA\u02af\tA\u0003A\u02b1\bA\u0001B\u0001B"+
- "\u0001B\u0003B\u02b6\bB\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003"+
- "C\u02be\bC\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u02c5\bC\u0001D\u0001"+
- "D\u0001D\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0003E\u02d0\bE\u0001"+
- "F\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001H\u0001"+
- "H\u0005H\u02dd\bH\nH\fH\u02e0\tH\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+
- "J\u0001J\u0001J\u0003J\u02ea\bJ\u0001K\u0001K\u0001K\u0001K\u0003K\u02f0"+
- "\bK\u0001K\u0001K\u0001K\u0001K\u0001L\u0001L\u0001L\u0001L\u0000\u0004"+
- "\u0002\n\u0012\u0014M\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012"+
- "\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\"+
- "^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090"+
- "\u0092\u0094\u0096\u0098\u0000\t\u0001\u0000EF\u0001\u0000GI\u0002\u0000"+
- "!!ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000..11\u0002\u0000--<<\u0002"+
- "\u0000>>@D\u0002\u0000\u0012\u0012\u001a\u001b\u031a\u0000\u009a\u0001"+
- "\u0000\u0000\u0000\u0002\u009d\u0001\u0000\u0000\u0000\u0004\u00ae\u0001"+
- "\u0000\u0000\u0000\u0006\u00c7\u0001\u0000\u0000\u0000\b\u00c9\u0001\u0000"+
- "\u0000\u0000\n\u00e9\u0001\u0000\u0000\u0000\f\u0114\u0001\u0000\u0000"+
- "\u0000\u000e\u0116\u0001\u0000\u0000\u0000\u0010\u0123\u0001\u0000\u0000"+
- "\u0000\u0012\u0129\u0001\u0000\u0000\u0000\u0014\u013e\u0001\u0000\u0000"+
- "\u0000\u0016\u0148\u0001\u0000\u0000\u0000\u0018\u015b\u0001\u0000\u0000"+
- "\u0000\u001a\u015d\u0001\u0000\u0000\u0000\u001c\u0168\u0001\u0000\u0000"+
- "\u0000\u001e\u016c\u0001\u0000\u0000\u0000 \u016e\u0001\u0000\u0000\u0000"+
- "\"\u0171\u0001\u0000\u0000\u0000$\u017c\u0001\u0000\u0000\u0000&\u0180"+
- "\u0001\u0000\u0000\u0000(\u0188\u0001\u0000\u0000\u0000*\u018d\u0001\u0000"+
- "\u0000\u0000,\u01a2\u0001\u0000\u0000\u0000.\u01a4\u0001\u0000\u0000\u0000"+
- "0\u01a6\u0001\u0000\u0000\u00002\u01a8\u0001\u0000\u0000\u00004\u01aa"+
- "\u0001\u0000\u0000\u00006\u01ae\u0001\u0000\u0000\u00008\u01b0\u0001\u0000"+
- "\u0000\u0000:\u01b9\u0001\u0000\u0000\u0000<\u01bd\u0001\u0000\u0000\u0000"+
- ">\u01cd\u0001\u0000\u0000\u0000@\u01d0\u0001\u0000\u0000\u0000B\u01d8"+
- "\u0001\u0000\u0000\u0000D\u01e0\u0001\u0000\u0000\u0000F\u01e5\u0001\u0000"+
- "\u0000\u0000H\u01ed\u0001\u0000\u0000\u0000J\u01f5\u0001\u0000\u0000\u0000"+
- "L\u01fd\u0001\u0000\u0000\u0000N\u0202\u0001\u0000\u0000\u0000P\u022e"+
- "\u0001\u0000\u0000\u0000R\u0232\u0001\u0000\u0000\u0000T\u0236\u0001\u0000"+
- "\u0000\u0000V\u023b\u0001\u0000\u0000\u0000X\u023d\u0001\u0000\u0000\u0000"+
- "Z\u0240\u0001\u0000\u0000\u0000\\\u0249\u0001\u0000\u0000\u0000^\u0251"+
- "\u0001\u0000\u0000\u0000`\u0254\u0001\u0000\u0000\u0000b\u0257\u0001\u0000"+
- "\u0000\u0000d\u0268\u0001\u0000\u0000\u0000f\u026a\u0001\u0000\u0000\u0000"+
- "h\u0270\u0001\u0000\u0000\u0000j\u0274\u0001\u0000\u0000\u0000l\u0277"+
- "\u0001\u0000\u0000\u0000n\u027f\u0001\u0000\u0000\u0000p\u0283\u0001\u0000"+
- "\u0000\u0000r\u0287\u0001\u0000\u0000\u0000t\u028a\u0001\u0000\u0000\u0000"+
- "v\u028f\u0001\u0000\u0000\u0000x\u0293\u0001\u0000\u0000\u0000z\u0295"+
- "\u0001\u0000\u0000\u0000|\u0297\u0001\u0000\u0000\u0000~\u029a\u0001\u0000"+
- "\u0000\u0000\u0080\u029e\u0001\u0000\u0000\u0000\u0082\u02a1\u0001\u0000"+
- "\u0000\u0000\u0084\u02b5\u0001\u0000\u0000\u0000\u0086\u02b9\u0001\u0000"+
- "\u0000\u0000\u0088\u02c6\u0001\u0000\u0000\u0000\u008a\u02cb\u0001\u0000"+
- "\u0000\u0000\u008c\u02d1\u0001\u0000\u0000\u0000\u008e\u02d6\u0001\u0000"+
- "\u0000\u0000\u0090\u02d8\u0001\u0000\u0000\u0000\u0092\u02e1\u0001\u0000"+
- "\u0000\u0000\u0094\u02e3\u0001\u0000\u0000\u0000\u0096\u02eb\u0001\u0000"+
- "\u0000\u0000\u0098\u02f5\u0001\u0000\u0000\u0000\u009a\u009b\u0003\u0002"+
- "\u0001\u0000\u009b\u009c\u0005\u0000\u0000\u0001\u009c\u0001\u0001\u0000"+
- "\u0000\u0000\u009d\u009e\u0006\u0001\uffff\uffff\u0000\u009e\u009f\u0003"+
- "\u0004\u0002\u0000\u009f\u00a5\u0001\u0000\u0000\u0000\u00a0\u00a1\n\u0001"+
- "\u0000\u0000\u00a1\u00a2\u0005 \u0000\u0000\u00a2\u00a4\u0003\u0006\u0003"+
- "\u0000\u00a3\u00a0\u0001\u0000\u0000\u0000\u00a4\u00a7\u0001\u0000\u0000"+
- "\u0000\u00a5\u00a3\u0001\u0000\u0000\u0000\u00a5\u00a6\u0001\u0000\u0000"+
- "\u0000\u00a6\u0003\u0001\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000"+
- "\u0000\u00a8\u00af\u0003|>\u0000\u00a9\u00af\u0003*\u0015\u0000\u00aa"+
- "\u00af\u0003 \u0010\u0000\u00ab\u00af\u0003\u0080@\u0000\u00ac\u00ad\u0004"+
- "\u0002\u0001\u0000\u00ad\u00af\u0003<\u001e\u0000\u00ae\u00a8\u0001\u0000"+
- "\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000\u0000\u00ae\u00aa\u0001\u0000"+
- "\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000"+
- "\u0000\u0000\u00af\u0005\u0001\u0000\u0000\u0000\u00b0\u00c8\u0003>\u001f"+
- "\u0000\u00b1\u00c8\u0003\b\u0004\u0000\u00b2\u00c8\u0003^/\u0000\u00b3"+
- "\u00c8\u0003X,\u0000\u00b4\u00c8\u0003@ \u0000\u00b5\u00c8\u0003Z-\u0000"+
- "\u00b6\u00c8\u0003`0\u0000\u00b7\u00c8\u0003b1\u0000\u00b8\u00c8\u0003"+
- "f3\u0000\u00b9\u00c8\u0003h4\u0000\u00ba\u00c8\u0003\u0082A\u0000\u00bb"+
- "\u00c8\u0003j5\u0000\u00bc\u00c8\u0003\u008cF\u0000\u00bd\u00c8\u0003"+
- "\u0086C\u0000\u00be\u00c8\u0003\u0096K\u0000\u00bf\u00c0\u0004\u0003\u0002"+
- "\u0000\u00c0\u00c8\u0003\u008aE\u0000\u00c1\u00c2\u0004\u0003\u0003\u0000"+
- "\u00c2\u00c8\u0003\u0088D\u0000\u00c3\u00c4\u0004\u0003\u0004\u0000\u00c4"+
- "\u00c8\u0003\u0094J\u0000\u00c5\u00c6\u0004\u0003\u0005\u0000\u00c6\u00c8"+
- "\u0003\u0098L\u0000\u00c7\u00b0\u0001\u0000\u0000\u0000\u00c7\u00b1\u0001"+
- "\u0000\u0000\u0000\u00c7\u00b2\u0001\u0000\u0000\u0000\u00c7\u00b3\u0001"+
- "\u0000\u0000\u0000\u00c7\u00b4\u0001\u0000\u0000\u0000\u00c7\u00b5\u0001"+
- "\u0000\u0000\u0000\u00c7\u00b6\u0001\u0000\u0000\u0000\u00c7\u00b7\u0001"+
- "\u0000\u0000\u0000\u00c7\u00b8\u0001\u0000\u0000\u0000\u00c7\u00b9\u0001"+
- "\u0000\u0000\u0000\u00c7\u00ba\u0001\u0000\u0000\u0000\u00c7\u00bb\u0001"+
- "\u0000\u0000\u0000\u00c7\u00bc\u0001\u0000\u0000\u0000\u00c7\u00bd\u0001"+
- "\u0000\u0000\u0000\u00c7\u00be\u0001\u0000\u0000\u0000\u00c7\u00bf\u0001"+
- "\u0000\u0000\u0000\u00c7\u00c1\u0001\u0000\u0000\u0000\u00c7\u00c3\u0001"+
- "\u0000\u0000\u0000\u00c7\u00c5\u0001\u0000\u0000\u0000\u00c8\u0007\u0001"+
- "\u0000\u0000\u0000\u00c9\u00ca\u0005\u0011\u0000\u0000\u00ca\u00cb\u0003"+
- "\n\u0005\u0000\u00cb\t\u0001\u0000\u0000\u0000\u00cc\u00cd\u0006\u0005"+
- "\uffff\uffff\u0000\u00cd\u00ce\u00054\u0000\u0000\u00ce\u00ea\u0003\n"+
- "\u0005\b\u00cf\u00ea\u0003\u0010\b\u0000\u00d0\u00ea\u0003\f\u0006\u0000"+
- "\u00d1\u00d3\u0003\u0010\b\u0000\u00d2\u00d4\u00054\u0000\u0000\u00d3"+
- "\u00d2\u0001\u0000\u0000\u0000\u00d3\u00d4\u0001\u0000\u0000\u0000\u00d4"+
- "\u00d5\u0001\u0000\u0000\u0000\u00d5\u00d6\u0005/\u0000\u0000\u00d6\u00d7"+
- "\u00053\u0000\u0000\u00d7\u00dc\u0003\u0010\b\u0000\u00d8\u00d9\u0005"+
- "*\u0000\u0000\u00d9\u00db\u0003\u0010\b\u0000\u00da\u00d8\u0001\u0000"+
- "\u0000\u0000\u00db\u00de\u0001\u0000\u0000\u0000\u00dc\u00da\u0001\u0000"+
- "\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000\u0000\u00dd\u00df\u0001\u0000"+
- "\u0000\u0000\u00de\u00dc\u0001\u0000\u0000\u0000\u00df\u00e0\u0005;\u0000"+
- "\u0000\u00e0\u00ea\u0001\u0000\u0000\u0000\u00e1\u00e2\u0003\u0010\b\u0000"+
- "\u00e2\u00e4\u00050\u0000\u0000\u00e3\u00e5\u00054\u0000\u0000\u00e4\u00e3"+
- "\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001\u0000\u0000\u0000\u00e5\u00e6"+
- "\u0001\u0000\u0000\u0000\u00e6\u00e7\u00055\u0000\u0000\u00e7\u00ea\u0001"+
- "\u0000\u0000\u0000\u00e8\u00ea\u0003\u000e\u0007\u0000\u00e9\u00cc\u0001"+
- "\u0000\u0000\u0000\u00e9\u00cf\u0001\u0000\u0000\u0000\u00e9\u00d0\u0001"+
- "\u0000\u0000\u0000\u00e9\u00d1\u0001\u0000\u0000\u0000\u00e9\u00e1\u0001"+
- "\u0000\u0000\u0000\u00e9\u00e8\u0001\u0000\u0000\u0000\u00ea\u00f3\u0001"+
- "\u0000\u0000\u0000\u00eb\u00ec\n\u0005\u0000\u0000\u00ec\u00ed\u0005$"+
- "\u0000\u0000\u00ed\u00f2\u0003\n\u0005\u0006\u00ee\u00ef\n\u0004\u0000"+
- "\u0000\u00ef\u00f0\u00058\u0000\u0000\u00f0\u00f2\u0003\n\u0005\u0005"+
- "\u00f1\u00eb\u0001\u0000\u0000\u0000\u00f1\u00ee\u0001\u0000\u0000\u0000"+
- "\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3\u00f1\u0001\u0000\u0000\u0000"+
- "\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4\u000b\u0001\u0000\u0000\u0000"+
- "\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6\u00f8\u0003\u0010\b\u0000\u00f7"+
- "\u00f9\u00054\u0000\u0000\u00f8\u00f7\u0001\u0000\u0000\u0000\u00f8\u00f9"+
- "\u0001\u0000\u0000\u0000\u00f9\u00fa\u0001\u0000\u0000\u0000\u00fa\u00fb"+
- "\u00052\u0000\u0000\u00fb\u00fc\u0003x<\u0000\u00fc\u0115\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\u0005:\u0000\u0000"+
- "\u0102\u0103\u0003x<\u0000\u0103\u0115\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\u00052\u0000\u0000\u0109\u010a\u00053\u0000"+
- "\u0000\u010a\u010f\u0003x<\u0000\u010b\u010c\u0005*\u0000\u0000\u010c"+
- "\u010e\u0003x<\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010e\u0111\u0001"+
- "\u0000\u0000\u0000\u010f\u010d\u0001\u0000\u0000\u0000\u010f\u0110\u0001"+
- "\u0000\u0000\u0000\u0110\u0112\u0001\u0000\u0000\u0000\u0111\u010f\u0001"+
- "\u0000\u0000\u0000\u0112\u0113\u0005;\u0000\u0000\u0113\u0115\u0001\u0000"+
- "\u0000\u0000\u0114\u00f6\u0001\u0000\u0000\u0000\u0114\u00fd\u0001\u0000"+
- "\u0000\u0000\u0114\u0104\u0001\u0000\u0000\u0000\u0115\r\u0001\u0000\u0000"+
- "\u0000\u0116\u0119\u0003F#\u0000\u0117\u0118\u0005(\u0000\u0000\u0118"+
- "\u011a\u0003\u001e\u000f\u0000\u0119\u0117\u0001\u0000\u0000\u0000\u0119"+
- "\u011a\u0001\u0000\u0000\u0000\u011a\u011b\u0001\u0000\u0000\u0000\u011b"+
- "\u011c\u0005)\u0000\u0000\u011c\u011d\u0003P(\u0000\u011d\u000f\u0001"+
- "\u0000\u0000\u0000\u011e\u0124\u0003\u0012\t\u0000\u011f\u0120\u0003\u0012"+
- "\t\u0000\u0120\u0121\u0003z=\u0000\u0121\u0122\u0003\u0012\t\u0000\u0122"+
- "\u0124\u0001\u0000\u0000\u0000\u0123\u011e\u0001\u0000\u0000\u0000\u0123"+
- "\u011f\u0001\u0000\u0000\u0000\u0124\u0011\u0001\u0000\u0000\u0000\u0125"+
- "\u0126\u0006\t\uffff\uffff\u0000\u0126\u012a\u0003\u0014\n\u0000\u0127"+
- "\u0128\u0007\u0000\u0000\u0000\u0128\u012a\u0003\u0012\t\u0003\u0129\u0125"+
- "\u0001\u0000\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u012a\u0133"+
- "\u0001\u0000\u0000\u0000\u012b\u012c\n\u0002\u0000\u0000\u012c\u012d\u0007"+
- "\u0001\u0000\u0000\u012d\u0132\u0003\u0012\t\u0003\u012e\u012f\n\u0001"+
- "\u0000\u0000\u012f\u0130\u0007\u0000\u0000\u0000\u0130\u0132\u0003\u0012"+
- "\t\u0002\u0131\u012b\u0001\u0000\u0000\u0000\u0131\u012e\u0001\u0000\u0000"+
- "\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133\u0131\u0001\u0000\u0000"+
- "\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134\u0013\u0001\u0000\u0000"+
- "\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u0137\u0006\n\uffff\uffff"+
- "\u0000\u0137\u013f\u0003P(\u0000\u0138\u013f\u0003F#\u0000\u0139\u013f"+
- "\u0003\u0016\u000b\u0000\u013a\u013b\u00053\u0000\u0000\u013b\u013c\u0003"+
- "\n\u0005\u0000\u013c\u013d\u0005;\u0000\u0000\u013d\u013f\u0001\u0000"+
- "\u0000\u0000\u013e\u0136\u0001\u0000\u0000\u0000\u013e\u0138\u0001\u0000"+
- "\u0000\u0000\u013e\u0139\u0001\u0000\u0000\u0000\u013e\u013a\u0001\u0000"+
- "\u0000\u0000\u013f\u0145\u0001\u0000\u0000\u0000\u0140\u0141\n\u0001\u0000"+
- "\u0000\u0141\u0142\u0005(\u0000\u0000\u0142\u0144\u0003\u001e\u000f\u0000"+
- "\u0143\u0140\u0001\u0000\u0000\u0000\u0144\u0147\u0001\u0000\u0000\u0000"+
- "\u0145\u0143\u0001\u0000\u0000\u0000\u0145\u0146\u0001\u0000\u0000\u0000"+
- "\u0146\u0015\u0001\u0000\u0000\u0000\u0147\u0145\u0001\u0000\u0000\u0000"+
- "\u0148\u0149\u0003\u0018\f\u0000\u0149\u0157\u00053\u0000\u0000\u014a"+
- "\u0158\u0005G\u0000\u0000\u014b\u0150\u0003\n\u0005\u0000\u014c\u014d"+
- "\u0005*\u0000\u0000\u014d\u014f\u0003\n\u0005\u0000\u014e\u014c\u0001"+
- "\u0000\u0000\u0000\u014f\u0152\u0001\u0000\u0000\u0000\u0150\u014e\u0001"+
- "\u0000\u0000\u0000\u0150\u0151\u0001\u0000\u0000\u0000\u0151\u0155\u0001"+
- "\u0000\u0000\u0000\u0152\u0150\u0001\u0000\u0000\u0000\u0153\u0154\u0005"+
- "*\u0000\u0000\u0154\u0156\u0003\u001a\r\u0000\u0155\u0153\u0001\u0000"+
- "\u0000\u0000\u0155\u0156\u0001\u0000\u0000\u0000\u0156\u0158\u0001\u0000"+
- "\u0000\u0000\u0157\u014a\u0001\u0000\u0000\u0000\u0157\u014b\u0001\u0000"+
- "\u0000\u0000\u0157\u0158\u0001\u0000\u0000\u0000\u0158\u0159\u0001\u0000"+
- "\u0000\u0000\u0159\u015a\u0005;\u0000\u0000\u015a\u0017\u0001\u0000\u0000"+
- "\u0000\u015b\u015c\u0003V+\u0000\u015c\u0019\u0001\u0000\u0000\u0000\u015d"+
- "\u015e\u0005J\u0000\u0000\u015e\u0163\u0003\u001c\u000e\u0000\u015f\u0160"+
- "\u0005*\u0000\u0000\u0160\u0162\u0003\u001c\u000e\u0000\u0161\u015f\u0001"+
- "\u0000\u0000\u0000\u0162\u0165\u0001\u0000\u0000\u0000\u0163\u0161\u0001"+
- "\u0000\u0000\u0000\u0163\u0164\u0001\u0000\u0000\u0000\u0164\u0166\u0001"+
- "\u0000\u0000\u0000\u0165\u0163\u0001\u0000\u0000\u0000\u0166\u0167\u0005"+
- "K\u0000\u0000\u0167\u001b\u0001\u0000\u0000\u0000\u0168\u0169\u0003x<"+
- "\u0000\u0169\u016a\u0005)\u0000\u0000\u016a\u016b\u0003P(\u0000\u016b"+
- "\u001d\u0001\u0000\u0000\u0000\u016c\u016d\u0003L&\u0000\u016d\u001f\u0001"+
- "\u0000\u0000\u0000\u016e\u016f\u0005\r\u0000\u0000\u016f\u0170\u0003\""+
- "\u0011\u0000\u0170!\u0001\u0000\u0000\u0000\u0171\u0176\u0003$\u0012\u0000"+
- "\u0172\u0173\u0005*\u0000\u0000\u0173\u0175\u0003$\u0012\u0000\u0174\u0172"+
- "\u0001\u0000\u0000\u0000\u0175\u0178\u0001\u0000\u0000\u0000\u0176\u0174"+
- "\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177#\u0001"+
- "\u0000\u0000\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0179\u017a\u0003"+
- "F#\u0000\u017a\u017b\u0005&\u0000\u0000\u017b\u017d\u0001\u0000\u0000"+
- "\u0000\u017c\u0179\u0001\u0000\u0000\u0000\u017c\u017d\u0001\u0000\u0000"+
- "\u0000\u017d\u017e\u0001\u0000\u0000\u0000\u017e\u017f\u0003\n\u0005\u0000"+
- "\u017f%\u0001\u0000\u0000\u0000\u0180\u0185\u0003(\u0014\u0000\u0181\u0182"+
- "\u0005*\u0000\u0000\u0182\u0184\u0003(\u0014\u0000\u0183\u0181\u0001\u0000"+
- "\u0000\u0000\u0184\u0187\u0001\u0000\u0000\u0000\u0185\u0183\u0001\u0000"+
- "\u0000\u0000\u0185\u0186\u0001\u0000\u0000\u0000\u0186\'\u0001\u0000\u0000"+
- "\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0188\u018b\u0003F#\u0000\u0189"+
- "\u018a\u0005&\u0000\u0000\u018a\u018c\u0003\n\u0005\u0000\u018b\u0189"+
- "\u0001\u0000\u0000\u0000\u018b\u018c\u0001\u0000\u0000\u0000\u018c)\u0001"+
- "\u0000\u0000\u0000\u018d\u018e\u0005\u0007\u0000\u0000\u018e\u0193\u0003"+
- ",\u0016\u0000\u018f\u0190\u0005*\u0000\u0000\u0190\u0192\u0003,\u0016"+
- "\u0000\u0191\u018f\u0001\u0000\u0000\u0000\u0192\u0195\u0001\u0000\u0000"+
- "\u0000\u0193\u0191\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000"+
- "\u0000\u0194\u0197\u0001\u0000\u0000\u0000\u0195\u0193\u0001\u0000\u0000"+
- "\u0000\u0196\u0198\u00036\u001b\u0000\u0197\u0196\u0001\u0000\u0000\u0000"+
- "\u0197\u0198\u0001\u0000\u0000\u0000\u0198+\u0001\u0000\u0000\u0000\u0199"+
- "\u019a\u0003.\u0017\u0000\u019a\u019b\u0005)\u0000\u0000\u019b\u019c\u0003"+
- "2\u0019\u0000\u019c\u01a3\u0001\u0000\u0000\u0000\u019d\u019e\u00032\u0019"+
- "\u0000\u019e\u019f\u0005(\u0000\u0000\u019f\u01a0\u00030\u0018\u0000\u01a0"+
- "\u01a3\u0001\u0000\u0000\u0000\u01a1\u01a3\u00034\u001a\u0000\u01a2\u0199"+
- "\u0001\u0000\u0000\u0000\u01a2\u019d\u0001\u0000\u0000\u0000\u01a2\u01a1"+
- "\u0001\u0000\u0000\u0000\u01a3-\u0001\u0000\u0000\u0000\u01a4\u01a5\u0005"+
- "Z\u0000\u0000\u01a5/\u0001\u0000\u0000\u0000\u01a6\u01a7\u0005Z\u0000"+
- "\u0000\u01a71\u0001\u0000\u0000\u0000\u01a8\u01a9\u0005Z\u0000\u0000\u01a9"+
- "3\u0001\u0000\u0000\u0000\u01aa\u01ab\u0007\u0002\u0000\u0000\u01ab5\u0001"+
- "\u0000\u0000\u0000\u01ac\u01af\u00038\u001c\u0000\u01ad\u01af\u0003:\u001d"+
- "\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01ae\u01ad\u0001\u0000\u0000"+
- "\u0000\u01af7\u0001\u0000\u0000\u0000\u01b0\u01b1\u0005Y\u0000\u0000\u01b1"+
- "\u01b6\u0005Z\u0000\u0000\u01b2\u01b3\u0005*\u0000\u0000\u01b3\u01b5\u0005"+
- "Z\u0000\u0000\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b8\u0001\u0000"+
- "\u0000\u0000\u01b6\u01b4\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000"+
- "\u0000\u0000\u01b79\u0001\u0000\u0000\u0000\u01b8\u01b6\u0001\u0000\u0000"+
- "\u0000\u01b9\u01ba\u0005O\u0000\u0000\u01ba\u01bb\u00038\u001c\u0000\u01bb"+
- "\u01bc\u0005P\u0000\u0000\u01bc;\u0001\u0000\u0000\u0000\u01bd\u01be\u0005"+
- "\u0016\u0000\u0000\u01be\u01c3\u0003,\u0016\u0000\u01bf\u01c0\u0005*\u0000"+
- "\u0000\u01c0\u01c2\u0003,\u0016\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000"+
- "\u01c2\u01c5\u0001\u0000\u0000\u0000\u01c3\u01c1\u0001\u0000\u0000\u0000"+
- "\u01c3\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000"+
- "\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c6\u01c8\u0003B!\u0000\u01c7\u01c6"+
- "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0001\u0000\u0000\u0000\u01c8\u01cb"+
- "\u0001\u0000\u0000\u0000\u01c9\u01ca\u0005\'\u0000\u0000\u01ca\u01cc\u0003"+
- "\"\u0011\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000"+
- "\u0000\u0000\u01cc=\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005\u0005\u0000"+
- "\u0000\u01ce\u01cf\u0003\"\u0011\u0000\u01cf?\u0001\u0000\u0000\u0000"+
- "\u01d0\u01d2\u0005\u0010\u0000\u0000\u01d1\u01d3\u0003B!\u0000\u01d2\u01d1"+
- "\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3\u01d6"+
- "\u0001\u0000\u0000\u0000\u01d4\u01d5\u0005\'\u0000\u0000\u01d5\u01d7\u0003"+
- "\"\u0011\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000"+
- "\u0000\u0000\u01d7A\u0001\u0000\u0000\u0000\u01d8\u01dd\u0003D\"\u0000"+
- "\u01d9\u01da\u0005*\u0000\u0000\u01da\u01dc\u0003D\"\u0000\u01db\u01d9"+
- "\u0001\u0000\u0000\u0000\u01dc\u01df\u0001\u0000\u0000\u0000\u01dd\u01db"+
- "\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01deC\u0001"+
- "\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000\u01e0\u01e3\u0003"+
- "$\u0012\u0000\u01e1\u01e2\u0005\u0011\u0000\u0000\u01e2\u01e4\u0003\n"+
- "\u0005\u0000\u01e3\u01e1\u0001\u0000\u0000\u0000\u01e3\u01e4\u0001\u0000"+
- "\u0000\u0000\u01e4E\u0001\u0000\u0000\u0000\u01e5\u01ea\u0003V+\u0000"+
- "\u01e6\u01e7\u0005,\u0000\u0000\u01e7\u01e9\u0003V+\u0000\u01e8\u01e6"+
- "\u0001\u0000\u0000\u0000\u01e9\u01ec\u0001\u0000\u0000\u0000\u01ea\u01e8"+
- "\u0001\u0000\u0000\u0000\u01ea\u01eb\u0001\u0000\u0000\u0000\u01ebG\u0001"+
- "\u0000\u0000\u0000\u01ec\u01ea\u0001\u0000\u0000\u0000\u01ed\u01f2\u0003"+
- "N\'\u0000\u01ee\u01ef\u0005,\u0000\u0000\u01ef\u01f1\u0003N\'\u0000\u01f0"+
- "\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f4\u0001\u0000\u0000\u0000\u01f2"+
- "\u01f0\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3"+
- "I\u0001\u0000\u0000\u0000\u01f4\u01f2\u0001\u0000\u0000\u0000\u01f5\u01fa"+
- "\u0003H$\u0000\u01f6\u01f7\u0005*\u0000\u0000\u01f7\u01f9\u0003H$\u0000"+
- "\u01f8\u01f6\u0001\u0000\u0000\u0000\u01f9\u01fc\u0001\u0000\u0000\u0000"+
- "\u01fa\u01f8\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000"+
- "\u01fbK\u0001\u0000\u0000\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fd"+
- "\u01fe\u0007\u0003\u0000\u0000\u01feM\u0001\u0000\u0000\u0000\u01ff\u0203"+
- "\u0005^\u0000\u0000\u0200\u0203\u0003R)\u0000\u0201\u0203\u0003T*\u0000"+
- "\u0202\u01ff\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000\u0000\u0000"+
- "\u0202\u0201\u0001\u0000\u0000\u0000\u0203O\u0001\u0000\u0000\u0000\u0204"+
- "\u022f\u00055\u0000\u0000\u0205\u0206\u0003v;\u0000\u0206\u0207\u0005"+
- "Q\u0000\u0000\u0207\u022f\u0001\u0000\u0000\u0000\u0208\u022f\u0003t:"+
- "\u0000\u0209\u022f\u0003v;\u0000\u020a\u022f\u0003p8\u0000\u020b\u022f"+
- "\u0003R)\u0000\u020c\u022f\u0003x<\u0000\u020d\u020e\u0005O\u0000\u0000"+
- "\u020e\u0213\u0003r9\u0000\u020f\u0210\u0005*\u0000\u0000\u0210\u0212"+
- "\u0003r9\u0000\u0211\u020f\u0001\u0000\u0000\u0000\u0212\u0215\u0001\u0000"+
- "\u0000\u0000\u0213\u0211\u0001\u0000\u0000\u0000\u0213\u0214\u0001\u0000"+
- "\u0000\u0000\u0214\u0216\u0001\u0000\u0000\u0000\u0215\u0213\u0001\u0000"+
- "\u0000\u0000\u0216\u0217\u0005P\u0000\u0000\u0217\u022f\u0001\u0000\u0000"+
- "\u0000\u0218\u0219\u0005O\u0000\u0000\u0219\u021e\u0003p8\u0000\u021a"+
- "\u021b\u0005*\u0000\u0000\u021b\u021d\u0003p8\u0000\u021c\u021a\u0001"+
- "\u0000\u0000\u0000\u021d\u0220\u0001\u0000\u0000\u0000\u021e\u021c\u0001"+
- "\u0000\u0000\u0000\u021e\u021f\u0001\u0000\u0000\u0000\u021f\u0221\u0001"+
- "\u0000\u0000\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0221\u0222\u0005"+
- "P\u0000\u0000\u0222\u022f\u0001\u0000\u0000\u0000\u0223\u0224\u0005O\u0000"+
- "\u0000\u0224\u0229\u0003x<\u0000\u0225\u0226\u0005*\u0000\u0000\u0226"+
- "\u0228\u0003x<\u0000\u0227\u0225\u0001\u0000\u0000\u0000\u0228\u022b\u0001"+
- "\u0000\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001"+
- "\u0000\u0000\u0000\u022a\u022c\u0001\u0000\u0000\u0000\u022b\u0229\u0001"+
- "\u0000\u0000\u0000\u022c\u022d\u0005P\u0000\u0000\u022d\u022f\u0001\u0000"+
- "\u0000\u0000\u022e\u0204\u0001\u0000\u0000\u0000\u022e\u0205\u0001\u0000"+
- "\u0000\u0000\u022e\u0208\u0001\u0000\u0000\u0000\u022e\u0209\u0001\u0000"+
- "\u0000\u0000\u022e\u020a\u0001\u0000\u0000\u0000\u022e\u020b\u0001\u0000"+
- "\u0000\u0000\u022e\u020c\u0001\u0000\u0000\u0000\u022e\u020d\u0001\u0000"+
- "\u0000\u0000\u022e\u0218\u0001\u0000\u0000\u0000\u022e\u0223\u0001\u0000"+
- "\u0000\u0000\u022fQ\u0001\u0000\u0000\u0000\u0230\u0233\u00059\u0000\u0000"+
- "\u0231\u0233\u0005M\u0000\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0232"+
- "\u0231\u0001\u0000\u0000\u0000\u0233S\u0001\u0000\u0000\u0000\u0234\u0237"+
- "\u0005L\u0000\u0000\u0235\u0237\u0005N\u0000\u0000\u0236\u0234\u0001\u0000"+
- "\u0000\u0000\u0236\u0235\u0001\u0000\u0000\u0000\u0237U\u0001\u0000\u0000"+
- "\u0000\u0238\u023c\u0003L&\u0000\u0239\u023c\u0003R)\u0000\u023a\u023c"+
- "\u0003T*\u0000\u023b\u0238\u0001\u0000\u0000\u0000\u023b\u0239\u0001\u0000"+
- "\u0000\u0000\u023b\u023a\u0001\u0000\u0000\u0000\u023cW\u0001\u0000\u0000"+
- "\u0000\u023d\u023e\u0005\n\u0000\u0000\u023e\u023f\u0003P(\u0000\u023f"+
- "Y\u0001\u0000\u0000\u0000\u0240\u0241\u0005\u000f\u0000\u0000\u0241\u0246"+
- "\u0003\\.\u0000\u0242\u0243\u0005*\u0000\u0000\u0243\u0245\u0003\\.\u0000"+
- "\u0244\u0242\u0001\u0000\u0000\u0000\u0245\u0248\u0001\u0000\u0000\u0000"+
- "\u0246\u0244\u0001\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000\u0000"+
- "\u0247[\u0001\u0000\u0000\u0000\u0248\u0246\u0001\u0000\u0000\u0000\u0249"+
- "\u024b\u0003\n\u0005\u0000\u024a\u024c\u0007\u0004\u0000\u0000\u024b\u024a"+
- "\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000\u024c\u024f"+
- "\u0001\u0000\u0000\u0000\u024d\u024e\u00056\u0000\u0000\u024e\u0250\u0007"+
- "\u0005\u0000\u0000\u024f\u024d\u0001\u0000\u0000\u0000\u024f\u0250\u0001"+
- "\u0000\u0000\u0000\u0250]\u0001\u0000\u0000\u0000\u0251\u0252\u0005\t"+
- "\u0000\u0000\u0252\u0253\u0003J%\u0000\u0253_\u0001\u0000\u0000\u0000"+
- "\u0254\u0255\u0005\u0003\u0000\u0000\u0255\u0256\u0003J%\u0000\u0256a"+
- "\u0001\u0000\u0000\u0000\u0257\u0258\u0005\f\u0000\u0000\u0258\u025d\u0003"+
- "d2\u0000\u0259\u025a\u0005*\u0000\u0000\u025a\u025c\u0003d2\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"+
- "c\u0001\u0000\u0000\u0000\u025f\u025d\u0001\u0000\u0000\u0000\u0260\u0261"+
- "\u0003H$\u0000\u0261\u0262\u0005b\u0000\u0000\u0262\u0263\u0003H$\u0000"+
- "\u0263\u0269\u0001\u0000\u0000\u0000\u0264\u0265\u0003H$\u0000\u0265\u0266"+
- "\u0005&\u0000\u0000\u0266\u0267\u0003H$\u0000\u0267\u0269\u0001\u0000"+
- "\u0000\u0000\u0268\u0260\u0001\u0000\u0000\u0000\u0268\u0264\u0001\u0000"+
- "\u0000\u0000\u0269e\u0001\u0000\u0000\u0000\u026a\u026b\u0005\u0002\u0000"+
- "\u0000\u026b\u026c\u0003\u0014\n\u0000\u026c\u026e\u0003x<\u0000\u026d"+
- "\u026f\u0003l6\u0000\u026e\u026d\u0001\u0000\u0000\u0000\u026e\u026f\u0001"+
- "\u0000\u0000\u0000\u026fg\u0001\u0000\u0000\u0000\u0270\u0271\u0005\b"+
- "\u0000\u0000\u0271\u0272\u0003\u0014\n\u0000\u0272\u0273\u0003x<\u0000"+
- "\u0273i\u0001\u0000\u0000\u0000\u0274\u0275\u0005\u000b\u0000\u0000\u0275"+
- "\u0276\u0003F#\u0000\u0276k\u0001\u0000\u0000\u0000\u0277\u027c\u0003"+
- "n7\u0000\u0278\u0279\u0005*\u0000\u0000\u0279\u027b\u0003n7\u0000\u027a"+
- "\u0278\u0001\u0000\u0000\u0000\u027b\u027e\u0001\u0000\u0000\u0000\u027c"+
- "\u027a\u0001\u0000\u0000\u0000\u027c\u027d\u0001\u0000\u0000\u0000\u027d"+
- "m\u0001\u0000\u0000\u0000\u027e\u027c\u0001\u0000\u0000\u0000\u027f\u0280"+
- "\u0003L&\u0000\u0280\u0281\u0005&\u0000\u0000\u0281\u0282\u0003P(\u0000"+
- "\u0282o\u0001\u0000\u0000\u0000\u0283\u0284\u0007\u0006\u0000\u0000\u0284"+
- "q\u0001\u0000\u0000\u0000\u0285\u0288\u0003t:\u0000\u0286\u0288\u0003"+
- "v;\u0000\u0287\u0285\u0001\u0000\u0000\u0000\u0287\u0286\u0001\u0000\u0000"+
- "\u0000\u0288s\u0001\u0000\u0000\u0000\u0289\u028b\u0007\u0000\u0000\u0000"+
- "\u028a\u0289\u0001\u0000\u0000\u0000\u028a\u028b\u0001\u0000\u0000\u0000"+
- "\u028b\u028c\u0001\u0000\u0000\u0000\u028c\u028d\u0005#\u0000\u0000\u028d"+
- "u\u0001\u0000\u0000\u0000\u028e\u0290\u0007\u0000\u0000\u0000\u028f\u028e"+
- "\u0001\u0000\u0000\u0000\u028f\u0290\u0001\u0000\u0000\u0000\u0290\u0291"+
- "\u0001\u0000\u0000\u0000\u0291\u0292\u0005\"\u0000\u0000\u0292w\u0001"+
- "\u0000\u0000\u0000\u0293\u0294\u0005!\u0000\u0000\u0294y\u0001\u0000\u0000"+
- "\u0000\u0295\u0296\u0007\u0007\u0000\u0000\u0296{\u0001\u0000\u0000\u0000"+
- "\u0297\u0298\u0005\u0006\u0000\u0000\u0298\u0299\u0003~?\u0000\u0299}"+
- "\u0001\u0000\u0000\u0000\u029a\u029b\u0005O\u0000\u0000\u029b\u029c\u0003"+
- "\u0002\u0001\u0000\u029c\u029d\u0005P\u0000\u0000\u029d\u007f\u0001\u0000"+
- "\u0000\u0000\u029e\u029f\u0005\u000e\u0000\u0000\u029f\u02a0\u0005p\u0000"+
- "\u0000\u02a0\u0081\u0001\u0000\u0000\u0000\u02a1\u02a2\u0005\u0004\u0000"+
- "\u0000\u02a2\u02a5\u0005f\u0000\u0000\u02a3\u02a4\u00057\u0000\u0000\u02a4"+
- "\u02a6\u0003H$\u0000\u02a5\u02a3\u0001\u0000\u0000\u0000\u02a5\u02a6\u0001"+
- "\u0000\u0000\u0000\u02a6\u02b0\u0001\u0000\u0000\u0000\u02a7\u02a8\u0005"+
- "=\u0000\u0000\u02a8\u02ad\u0003\u0084B\u0000\u02a9\u02aa\u0005*\u0000"+
- "\u0000\u02aa\u02ac\u0003\u0084B\u0000\u02ab\u02a9\u0001\u0000\u0000\u0000"+
- "\u02ac\u02af\u0001\u0000\u0000\u0000\u02ad\u02ab\u0001\u0000\u0000\u0000"+
- "\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae\u02b1\u0001\u0000\u0000\u0000"+
- "\u02af\u02ad\u0001\u0000\u0000\u0000\u02b0\u02a7\u0001\u0000\u0000\u0000"+
- "\u02b0\u02b1\u0001\u0000\u0000\u0000\u02b1\u0083\u0001\u0000\u0000\u0000"+
- "\u02b2\u02b3\u0003H$\u0000\u02b3\u02b4\u0005&\u0000\u0000\u02b4\u02b6"+
- "\u0001\u0000\u0000\u0000\u02b5\u02b2\u0001\u0000\u0000\u0000\u02b5\u02b6"+
- "\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000\u02b7\u02b8"+
- "\u0003H$\u0000\u02b8\u0085\u0001\u0000\u0000\u0000\u02b9\u02ba\u0005\u0013"+
- "\u0000\u0000\u02ba\u02bd\u0003F#\u0000\u02bb\u02bc\u00057\u0000\u0000"+
- "\u02bc\u02be\u0003F#\u0000\u02bd\u02bb\u0001\u0000\u0000\u0000\u02bd\u02be"+
- "\u0001\u0000\u0000\u0000\u02be\u02c4\u0001\u0000\u0000\u0000\u02bf\u02c0"+
- "\u0005b\u0000\u0000\u02c0\u02c1\u0003F#\u0000\u02c1\u02c2\u0005*\u0000"+
- "\u0000\u02c2\u02c3\u0003F#\u0000\u02c3\u02c5\u0001\u0000\u0000\u0000\u02c4"+
- "\u02bf\u0001\u0000\u0000\u0000\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5"+
- "\u0087\u0001\u0000\u0000\u0000\u02c6\u02c7\u0005\u0015\u0000\u0000\u02c7"+
- "\u02c8\u0003,\u0016\u0000\u02c8\u02c9\u00057\u0000\u0000\u02c9\u02ca\u0003"+
- "J%\u0000\u02ca\u0089\u0001\u0000\u0000\u0000\u02cb\u02cc\u0005\u0014\u0000"+
- "\u0000\u02cc\u02cf\u0003B!\u0000\u02cd\u02ce\u0005\'\u0000\u0000\u02ce"+
- "\u02d0\u0003\"\u0011\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000\u02cf\u02d0"+
- "\u0001\u0000\u0000\u0000\u02d0\u008b\u0001\u0000\u0000\u0000\u02d1\u02d2"+
- "\u0007\b\u0000\u0000\u02d2\u02d3\u0005~\u0000\u0000\u02d3\u02d4\u0003"+
- "\u008eG\u0000\u02d4\u02d5\u0003\u0090H\u0000\u02d5\u008d\u0001\u0000\u0000"+
- "\u0000\u02d6\u02d7\u0003,\u0016\u0000\u02d7\u008f\u0001\u0000\u0000\u0000"+
- "\u02d8\u02d9\u00057\u0000\u0000\u02d9\u02de\u0003\u0092I\u0000\u02da\u02db"+
- "\u0005*\u0000\u0000\u02db\u02dd\u0003\u0092I\u0000\u02dc\u02da\u0001\u0000"+
- "\u0000\u0000\u02dd\u02e0\u0001\u0000\u0000\u0000\u02de\u02dc\u0001\u0000"+
- "\u0000\u0000\u02de\u02df\u0001\u0000\u0000\u0000\u02df\u0091\u0001\u0000"+
- "\u0000\u0000\u02e0\u02de\u0001\u0000\u0000\u0000\u02e1\u02e2\u0003\u0010"+
- "\b\u0000\u02e2\u0093\u0001\u0000\u0000\u0000\u02e3\u02e4\u0005\u0017\u0000"+
- "\u0000\u02e4\u02e5\u0003P(\u0000\u02e5\u02e6\u00057\u0000\u0000\u02e6"+
- "\u02e9\u0003&\u0013\u0000\u02e7\u02e8\u0005=\u0000\u0000\u02e8\u02ea\u0003"+
- "V+\u0000\u02e9\u02e7\u0001\u0000\u0000\u0000\u02e9\u02ea\u0001\u0000\u0000"+
- "\u0000\u02ea\u0095\u0001\u0000\u0000\u0000\u02eb\u02ef\u0005\u0001\u0000"+
- "\u0000\u02ec\u02ed\u0003F#\u0000\u02ed\u02ee\u0005&\u0000\u0000\u02ee"+
- "\u02f0\u0001\u0000\u0000\u0000\u02ef\u02ec\u0001\u0000\u0000\u0000\u02ef"+
- "\u02f0\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1"+
- "\u02f2\u0003\u0014\n\u0000\u02f2\u02f3\u0005=\u0000\u0000\u02f3\u02f4"+
- "\u0003V+\u0000\u02f4\u0097\u0001\u0000\u0000\u0000\u02f5\u02f6\u0005\u0018"+
- "\u0000\u0000\u02f6\u02f7\u0003P(\u0000\u02f7\u0099\u0001\u0000\u0000\u0000"+
- "H\u00a5\u00ae\u00c7\u00d3\u00dc\u00e4\u00e9\u00f1\u00f3\u00f8\u00ff\u0106"+
- "\u010f\u0114\u0119\u0123\u0129\u0131\u0133\u013e\u0145\u0150\u0155\u0157"+
- "\u0163\u0176\u017c\u0185\u018b\u0193\u0197\u01a2\u01ae\u01b6\u01c3\u01c7"+
- "\u01cb\u01d2\u01d6\u01dd\u01e3\u01ea\u01f2\u01fa\u0202\u0213\u021e\u0229"+
- "\u022e\u0232\u0236\u023b\u0246\u024b\u024f\u025d\u0268\u026e\u027c\u0287"+
- "\u028a\u028f\u02a5\u02ad\u02b0\u02b5\u02bd\u02c4\u02cf\u02de\u02e9\u02ef";
+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003\u00c7\b\u0003"+
+ "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00d3\b\u0005"+
+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005"+
+ "\u00da\b\u0005\n\u0005\f\u0005\u00dd\t\u0005\u0001\u0005\u0001\u0005\u0001"+
+ "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e4\b\u0005\u0001\u0005\u0001"+
+ "\u0005\u0001\u0005\u0003\u0005\u00e9\b\u0005\u0001\u0005\u0001\u0005\u0001"+
+ "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00f1\b\u0005\n"+
+ "\u0005\f\u0005\u00f4\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00f8"+
+ "\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003"+
+ "\u0006\u00ff\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
+ "\u0006\u0003\u0006\u0106\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
+ "\u0006\u0001\u0006\u0005\u0006\u010d\b\u0006\n\u0006\f\u0006\u0110\t\u0006"+
+ "\u0001\u0006\u0001\u0006\u0003\u0006\u0114\b\u0006\u0001\u0007\u0001\u0007"+
+ "\u0001\u0007\u0003\u0007\u0119\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+
+ "\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u0123\b\b\u0001\t\u0001"+
+ "\t\u0001\t\u0001\t\u0003\t\u0129\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+
+ "\t\u0001\t\u0005\t\u0131\b\t\n\t\f\t\u0134\t\t\u0001\n\u0001\n\u0001\n"+
+ "\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u013e\b\n\u0001\n\u0001"+
+ "\n\u0001\n\u0005\n\u0143\b\n\n\n\f\n\u0146\t\n\u0001\u000b\u0001\u000b"+
+ "\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u014e\b\u000b"+
+ "\n\u000b\f\u000b\u0151\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u0155"+
+ "\b\u000b\u0003\u000b\u0157\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001"+
+ "\f\u0001\r\u0001\r\u0001\r\u0001\r\u0005\r\u0161\b\r\n\r\f\r\u0164\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\u0174\b\u0011\n\u0011\f\u0011\u0177\t\u0011"+
+ "\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u017c\b\u0012\u0001\u0012"+
+ "\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0183\b\u0013"+
+ "\n\u0013\f\u0013\u0186\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003"+
+ "\u0014\u018b\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0005"+
+ "\u0015\u0191\b\u0015\n\u0015\f\u0015\u0194\t\u0015\u0001\u0015\u0003\u0015"+
+ "\u0197\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
+ "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u01a2\b\u0016"+
+ "\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019"+
+ "\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u01ae\b\u001b"+
+ "\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u01b4\b\u001c"+
+ "\n\u001c\f\u001c\u01b7\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
+ "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01c1"+
+ "\b\u001e\n\u001e\f\u001e\u01c4\t\u001e\u0001\u001e\u0003\u001e\u01c7\b"+
+ "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01cb\b\u001e\u0001\u001f\u0001"+
+ "\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01d2\b \u0001 \u0001 \u0003 "+
+ "\u01d6\b \u0001!\u0001!\u0001!\u0005!\u01db\b!\n!\f!\u01de\t!\u0001\""+
+ "\u0001\"\u0001\"\u0003\"\u01e3\b\"\u0001#\u0001#\u0001#\u0005#\u01e8\b"+
+ "#\n#\f#\u01eb\t#\u0001$\u0001$\u0001$\u0005$\u01f0\b$\n$\f$\u01f3\t$\u0001"+
+ "%\u0001%\u0001%\u0005%\u01f8\b%\n%\f%\u01fb\t%\u0001&\u0001&\u0001\'\u0001"+
+ "\'\u0001\'\u0003\'\u0202\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
+ "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0211\b(\n("+
+ "\f(\u0214\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u021c\b"+
+ "(\n(\f(\u021f\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0227"+
+ "\b(\n(\f(\u022a\t(\u0001(\u0001(\u0003(\u022e\b(\u0001)\u0001)\u0003)"+
+ "\u0232\b)\u0001*\u0001*\u0003*\u0236\b*\u0001+\u0001+\u0001+\u0003+\u023b"+
+ "\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0005-\u0244\b-\n"+
+ "-\f-\u0247\t-\u0001.\u0001.\u0003.\u024b\b.\u0001.\u0001.\u0003.\u024f"+
+ "\b.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u00011\u00011\u0001"+
+ "1\u00051\u025b\b1\n1\f1\u025e\t1\u00012\u00012\u00012\u00012\u00012\u0001"+
+ "2\u00012\u00012\u00032\u0268\b2\u00013\u00013\u00013\u00013\u00033\u026e"+
+ "\b3\u00014\u00014\u00014\u00014\u00015\u00015\u00015\u00016\u00016\u0001"+
+ "6\u00056\u027a\b6\n6\f6\u027d\t6\u00017\u00017\u00017\u00017\u00018\u0001"+
+ "8\u00019\u00019\u00039\u0287\b9\u0001:\u0003:\u028a\b:\u0001:\u0001:\u0001"+
+ ";\u0003;\u028f\b;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001>\u0001"+
+ ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001"+
+ "A\u0001A\u0001A\u0003A\u02a5\bA\u0001A\u0001A\u0001A\u0001A\u0005A\u02ab"+
+ "\bA\nA\fA\u02ae\tA\u0003A\u02b0\bA\u0001B\u0001B\u0001B\u0003B\u02b5\b"+
+ "B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003C\u02bd\bC\u0001C\u0001"+
+ "C\u0001C\u0001C\u0001C\u0003C\u02c4\bC\u0001D\u0001D\u0001D\u0001E\u0001"+
+ "E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0003F\u02d2\bF\u0001"+
+ "G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001I\u0001"+
+ "I\u0005I\u02df\bI\nI\fI\u02e2\tI\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+
+ "K\u0001K\u0001K\u0003K\u02ec\bK\u0001L\u0001L\u0001L\u0001L\u0003L\u02f2"+
+ "\bL\u0001L\u0001L\u0001L\u0001L\u0001L\u0000\u0004\u0002\n\u0012\u0014"+
+ "M\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a"+
+ "\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082"+
+ "\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u0000"+
+ "\t\u0001\u0000EF\u0001\u0000GI\u0002\u0000!!ZZ\u0001\u0000QR\u0002\u0000"+
+ "%%++\u0002\u0000..11\u0002\u0000--<<\u0002\u0000>>@D\u0002\u0000\u0013"+
+ "\u0013\u001a\u001b\u0319\u0000\u009a\u0001\u0000\u0000\u0000\u0002\u009d"+
+ "\u0001\u0000\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006\u00c6"+
+ "\u0001\u0000\u0000\u0000\b\u00c8\u0001\u0000\u0000\u0000\n\u00e8\u0001"+
+ "\u0000\u0000\u0000\f\u0113\u0001\u0000\u0000\u0000\u000e\u0115\u0001\u0000"+
+ "\u0000\u0000\u0010\u0122\u0001\u0000\u0000\u0000\u0012\u0128\u0001\u0000"+
+ "\u0000\u0000\u0014\u013d\u0001\u0000\u0000\u0000\u0016\u0147\u0001\u0000"+
+ "\u0000\u0000\u0018\u015a\u0001\u0000\u0000\u0000\u001a\u015c\u0001\u0000"+
+ "\u0000\u0000\u001c\u0167\u0001\u0000\u0000\u0000\u001e\u016b\u0001\u0000"+
+ "\u0000\u0000 \u016d\u0001\u0000\u0000\u0000\"\u0170\u0001\u0000\u0000"+
+ "\u0000$\u017b\u0001\u0000\u0000\u0000&\u017f\u0001\u0000\u0000\u0000("+
+ "\u0187\u0001\u0000\u0000\u0000*\u018c\u0001\u0000\u0000\u0000,\u01a1\u0001"+
+ "\u0000\u0000\u0000.\u01a3\u0001\u0000\u0000\u00000\u01a5\u0001\u0000\u0000"+
+ "\u00002\u01a7\u0001\u0000\u0000\u00004\u01a9\u0001\u0000\u0000\u00006"+
+ "\u01ad\u0001\u0000\u0000\u00008\u01af\u0001\u0000\u0000\u0000:\u01b8\u0001"+
+ "\u0000\u0000\u0000<\u01bc\u0001\u0000\u0000\u0000>\u01cc\u0001\u0000\u0000"+
+ "\u0000@\u01cf\u0001\u0000\u0000\u0000B\u01d7\u0001\u0000\u0000\u0000D"+
+ "\u01df\u0001\u0000\u0000\u0000F\u01e4\u0001\u0000\u0000\u0000H\u01ec\u0001"+
+ "\u0000\u0000\u0000J\u01f4\u0001\u0000\u0000\u0000L\u01fc\u0001\u0000\u0000"+
+ "\u0000N\u0201\u0001\u0000\u0000\u0000P\u022d\u0001\u0000\u0000\u0000R"+
+ "\u0231\u0001\u0000\u0000\u0000T\u0235\u0001\u0000\u0000\u0000V\u023a\u0001"+
+ "\u0000\u0000\u0000X\u023c\u0001\u0000\u0000\u0000Z\u023f\u0001\u0000\u0000"+
+ "\u0000\\\u0248\u0001\u0000\u0000\u0000^\u0250\u0001\u0000\u0000\u0000"+
+ "`\u0253\u0001\u0000\u0000\u0000b\u0256\u0001\u0000\u0000\u0000d\u0267"+
+ "\u0001\u0000\u0000\u0000f\u0269\u0001\u0000\u0000\u0000h\u026f\u0001\u0000"+
+ "\u0000\u0000j\u0273\u0001\u0000\u0000\u0000l\u0276\u0001\u0000\u0000\u0000"+
+ "n\u027e\u0001\u0000\u0000\u0000p\u0282\u0001\u0000\u0000\u0000r\u0286"+
+ "\u0001\u0000\u0000\u0000t\u0289\u0001\u0000\u0000\u0000v\u028e\u0001\u0000"+
+ "\u0000\u0000x\u0292\u0001\u0000\u0000\u0000z\u0294\u0001\u0000\u0000\u0000"+
+ "|\u0296\u0001\u0000\u0000\u0000~\u0299\u0001\u0000\u0000\u0000\u0080\u029d"+
+ "\u0001\u0000\u0000\u0000\u0082\u02a0\u0001\u0000\u0000\u0000\u0084\u02b4"+
+ "\u0001\u0000\u0000\u0000\u0086\u02b8\u0001\u0000\u0000\u0000\u0088\u02c5"+
+ "\u0001\u0000\u0000\u0000\u008a\u02c8\u0001\u0000\u0000\u0000\u008c\u02cd"+
+ "\u0001\u0000\u0000\u0000\u008e\u02d3\u0001\u0000\u0000\u0000\u0090\u02d8"+
+ "\u0001\u0000\u0000\u0000\u0092\u02da\u0001\u0000\u0000\u0000\u0094\u02e3"+
+ "\u0001\u0000\u0000\u0000\u0096\u02e5\u0001\u0000\u0000\u0000\u0098\u02ed"+
+ "\u0001\u0000\u0000\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b\u009c"+
+ "\u0005\u0000\u0000\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d\u009e"+
+ "\u0006\u0001\uffff\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000\u009f"+
+ "\u00a5\u0001\u0000\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2"+
+ "\u0005 \u0000\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001"+
+ "\u0000\u0000\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001"+
+ "\u0000\u0000\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001"+
+ "\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003"+
+ "|>\u0000\u00a9\u00af\u0003*\u0015\u0000\u00aa\u00af\u0003 \u0010\u0000"+
+ "\u00ab\u00af\u0003\u0080@\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad"+
+ "\u00af\u0003<\u001e\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9"+
+ "\u0001\u0000\u0000\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab"+
+ "\u0001\u0000\u0000\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005"+
+ "\u0001\u0000\u0000\u0000\u00b0\u00c7\u0003>\u001f\u0000\u00b1\u00c7\u0003"+
+ "\b\u0004\u0000\u00b2\u00c7\u0003^/\u0000\u00b3\u00c7\u0003X,\u0000\u00b4"+
+ "\u00c7\u0003@ \u0000\u00b5\u00c7\u0003Z-\u0000\u00b6\u00c7\u0003`0\u0000"+
+ "\u00b7\u00c7\u0003b1\u0000\u00b8\u00c7\u0003f3\u0000\u00b9\u00c7\u0003"+
+ "h4\u0000\u00ba\u00c7\u0003\u0082A\u0000\u00bb\u00c7\u0003j5\u0000\u00bc"+
+ "\u00c7\u0003\u008eG\u0000\u00bd\u00c7\u0003\u0086C\u0000\u00be\u00c7\u0003"+
+ "\u0098L\u0000\u00bf\u00c7\u0003\u0088D\u0000\u00c0\u00c1\u0004\u0003\u0002"+
+ "\u0000\u00c1\u00c7\u0003\u008cF\u0000\u00c2\u00c3\u0004\u0003\u0003\u0000"+
+ "\u00c3\u00c7\u0003\u008aE\u0000\u00c4\u00c5\u0004\u0003\u0004\u0000\u00c5"+
+ "\u00c7\u0003\u0096K\u0000\u00c6\u00b0\u0001\u0000\u0000\u0000\u00c6\u00b1"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00b2\u0001\u0000\u0000\u0000\u00c6\u00b3"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00b4\u0001\u0000\u0000\u0000\u00c6\u00b5"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00b6\u0001\u0000\u0000\u0000\u00c6\u00b7"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00b8\u0001\u0000\u0000\u0000\u00c6\u00b9"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00ba\u0001\u0000\u0000\u0000\u00c6\u00bb"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00bc\u0001\u0000\u0000\u0000\u00c6\u00bd"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00be\u0001\u0000\u0000\u0000\u00c6\u00bf"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00c0\u0001\u0000\u0000\u0000\u00c6\u00c2"+
+ "\u0001\u0000\u0000\u0000\u00c6\u00c4\u0001\u0000\u0000\u0000\u00c7\u0007"+
+ "\u0001\u0000\u0000\u0000\u00c8\u00c9\u0005\u0012\u0000\u0000\u00c9\u00ca"+
+ "\u0003\n\u0005\u0000\u00ca\t\u0001\u0000\u0000\u0000\u00cb\u00cc\u0006"+
+ "\u0005\uffff\uffff\u0000\u00cc\u00cd\u00054\u0000\u0000\u00cd\u00e9\u0003"+
+ "\n\u0005\b\u00ce\u00e9\u0003\u0010\b\u0000\u00cf\u00e9\u0003\f\u0006\u0000"+
+ "\u00d0\u00d2\u0003\u0010\b\u0000\u00d1\u00d3\u00054\u0000\u0000\u00d2"+
+ "\u00d1\u0001\u0000\u0000\u0000\u00d2\u00d3\u0001\u0000\u0000\u0000\u00d3"+
+ "\u00d4\u0001\u0000\u0000\u0000\u00d4\u00d5\u0005/\u0000\u0000\u00d5\u00d6"+
+ "\u00053\u0000\u0000\u00d6\u00db\u0003\u0010\b\u0000\u00d7\u00d8\u0005"+
+ "*\u0000\u0000\u00d8\u00da\u0003\u0010\b\u0000\u00d9\u00d7\u0001\u0000"+
+ "\u0000\u0000\u00da\u00dd\u0001\u0000\u0000\u0000\u00db\u00d9\u0001\u0000"+
+ "\u0000\u0000\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc\u00de\u0001\u0000"+
+ "\u0000\u0000\u00dd\u00db\u0001\u0000\u0000\u0000\u00de\u00df\u0005;\u0000"+
+ "\u0000\u00df\u00e9\u0001\u0000\u0000\u0000\u00e0\u00e1\u0003\u0010\b\u0000"+
+ "\u00e1\u00e3\u00050\u0000\u0000\u00e2\u00e4\u00054\u0000\u0000\u00e3\u00e2"+
+ "\u0001\u0000\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000\u0000\u00e4\u00e5"+
+ "\u0001\u0000\u0000\u0000\u00e5\u00e6\u00055\u0000\u0000\u00e6\u00e9\u0001"+
+ "\u0000\u0000\u0000\u00e7\u00e9\u0003\u000e\u0007\u0000\u00e8\u00cb\u0001"+
+ "\u0000\u0000\u0000\u00e8\u00ce\u0001\u0000\u0000\u0000\u00e8\u00cf\u0001"+
+ "\u0000\u0000\u0000\u00e8\u00d0\u0001\u0000\u0000\u0000\u00e8\u00e0\u0001"+
+ "\u0000\u0000\u0000\u00e8\u00e7\u0001\u0000\u0000\u0000\u00e9\u00f2\u0001"+
+ "\u0000\u0000\u0000\u00ea\u00eb\n\u0005\u0000\u0000\u00eb\u00ec\u0005$"+
+ "\u0000\u0000\u00ec\u00f1\u0003\n\u0005\u0006\u00ed\u00ee\n\u0004\u0000"+
+ "\u0000\u00ee\u00ef\u00058\u0000\u0000\u00ef\u00f1\u0003\n\u0005\u0005"+
+ "\u00f0\u00ea\u0001\u0000\u0000\u0000\u00f0\u00ed\u0001\u0000\u0000\u0000"+
+ "\u00f1\u00f4\u0001\u0000\u0000\u0000\u00f2\u00f0\u0001\u0000\u0000\u0000"+
+ "\u00f2\u00f3\u0001\u0000\u0000\u0000\u00f3\u000b\u0001\u0000\u0000\u0000"+
+ "\u00f4\u00f2\u0001\u0000\u0000\u0000\u00f5\u00f7\u0003\u0010\b\u0000\u00f6"+
+ "\u00f8\u00054\u0000\u0000\u00f7\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8"+
+ "\u0001\u0000\u0000\u0000\u00f8\u00f9\u0001\u0000\u0000\u0000\u00f9\u00fa"+
+ "\u00052\u0000\u0000\u00fa\u00fb\u0003x<\u0000\u00fb\u0114\u0001\u0000"+
+ "\u0000\u0000\u00fc\u00fe\u0003\u0010\b\u0000\u00fd\u00ff\u00054\u0000"+
+ "\u0000\u00fe\u00fd\u0001\u0000\u0000\u0000\u00fe\u00ff\u0001\u0000\u0000"+
+ "\u0000\u00ff\u0100\u0001\u0000\u0000\u0000\u0100\u0101\u0005:\u0000\u0000"+
+ "\u0101\u0102\u0003x<\u0000\u0102\u0114\u0001\u0000\u0000\u0000\u0103\u0105"+
+ "\u0003\u0010\b\u0000\u0104\u0106\u00054\u0000\u0000\u0105\u0104\u0001"+
+ "\u0000\u0000\u0000\u0105\u0106\u0001\u0000\u0000\u0000\u0106\u0107\u0001"+
+ "\u0000\u0000\u0000\u0107\u0108\u00052\u0000\u0000\u0108\u0109\u00053\u0000"+
+ "\u0000\u0109\u010e\u0003x<\u0000\u010a\u010b\u0005*\u0000\u0000\u010b"+
+ "\u010d\u0003x<\u0000\u010c\u010a\u0001\u0000\u0000\u0000\u010d\u0110\u0001"+
+ "\u0000\u0000\u0000\u010e\u010c\u0001\u0000\u0000\u0000\u010e\u010f\u0001"+
+ "\u0000\u0000\u0000\u010f\u0111\u0001\u0000\u0000\u0000\u0110\u010e\u0001"+
+ "\u0000\u0000\u0000\u0111\u0112\u0005;\u0000\u0000\u0112\u0114\u0001\u0000"+
+ "\u0000\u0000\u0113\u00f5\u0001\u0000\u0000\u0000\u0113\u00fc\u0001\u0000"+
+ "\u0000\u0000\u0113\u0103\u0001\u0000\u0000\u0000\u0114\r\u0001\u0000\u0000"+
+ "\u0000\u0115\u0118\u0003F#\u0000\u0116\u0117\u0005(\u0000\u0000\u0117"+
+ "\u0119\u0003\u001e\u000f\u0000\u0118\u0116\u0001\u0000\u0000\u0000\u0118"+
+ "\u0119\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a"+
+ "\u011b\u0005)\u0000\u0000\u011b\u011c\u0003P(\u0000\u011c\u000f\u0001"+
+ "\u0000\u0000\u0000\u011d\u0123\u0003\u0012\t\u0000\u011e\u011f\u0003\u0012"+
+ "\t\u0000\u011f\u0120\u0003z=\u0000\u0120\u0121\u0003\u0012\t\u0000\u0121"+
+ "\u0123\u0001\u0000\u0000\u0000\u0122\u011d\u0001\u0000\u0000\u0000\u0122"+
+ "\u011e\u0001\u0000\u0000\u0000\u0123\u0011\u0001\u0000\u0000\u0000\u0124"+
+ "\u0125\u0006\t\uffff\uffff\u0000\u0125\u0129\u0003\u0014\n\u0000\u0126"+
+ "\u0127\u0007\u0000\u0000\u0000\u0127\u0129\u0003\u0012\t\u0003\u0128\u0124"+
+ "\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0129\u0132"+
+ "\u0001\u0000\u0000\u0000\u012a\u012b\n\u0002\u0000\u0000\u012b\u012c\u0007"+
+ "\u0001\u0000\u0000\u012c\u0131\u0003\u0012\t\u0003\u012d\u012e\n\u0001"+
+ "\u0000\u0000\u012e\u012f\u0007\u0000\u0000\u0000\u012f\u0131\u0003\u0012"+
+ "\t\u0002\u0130\u012a\u0001\u0000\u0000\u0000\u0130\u012d\u0001\u0000\u0000"+
+ "\u0000\u0131\u0134\u0001\u0000\u0000\u0000\u0132\u0130\u0001\u0000\u0000"+
+ "\u0000\u0132\u0133\u0001\u0000\u0000\u0000\u0133\u0013\u0001\u0000\u0000"+
+ "\u0000\u0134\u0132\u0001\u0000\u0000\u0000\u0135\u0136\u0006\n\uffff\uffff"+
+ "\u0000\u0136\u013e\u0003P(\u0000\u0137\u013e\u0003F#\u0000\u0138\u013e"+
+ "\u0003\u0016\u000b\u0000\u0139\u013a\u00053\u0000\u0000\u013a\u013b\u0003"+
+ "\n\u0005\u0000\u013b\u013c\u0005;\u0000\u0000\u013c\u013e\u0001\u0000"+
+ "\u0000\u0000\u013d\u0135\u0001\u0000\u0000\u0000\u013d\u0137\u0001\u0000"+
+ "\u0000\u0000\u013d\u0138\u0001\u0000\u0000\u0000\u013d\u0139\u0001\u0000"+
+ "\u0000\u0000\u013e\u0144\u0001\u0000\u0000\u0000\u013f\u0140\n\u0001\u0000"+
+ "\u0000\u0140\u0141\u0005(\u0000\u0000\u0141\u0143\u0003\u001e\u000f\u0000"+
+ "\u0142\u013f\u0001\u0000\u0000\u0000\u0143\u0146\u0001\u0000\u0000\u0000"+
+ "\u0144\u0142\u0001\u0000\u0000\u0000\u0144\u0145\u0001\u0000\u0000\u0000"+
+ "\u0145\u0015\u0001\u0000\u0000\u0000\u0146\u0144\u0001\u0000\u0000\u0000"+
+ "\u0147\u0148\u0003\u0018\f\u0000\u0148\u0156\u00053\u0000\u0000\u0149"+
+ "\u0157\u0005G\u0000\u0000\u014a\u014f\u0003\n\u0005\u0000\u014b\u014c"+
+ "\u0005*\u0000\u0000\u014c\u014e\u0003\n\u0005\u0000\u014d\u014b\u0001"+
+ "\u0000\u0000\u0000\u014e\u0151\u0001\u0000\u0000\u0000\u014f\u014d\u0001"+
+ "\u0000\u0000\u0000\u014f\u0150\u0001\u0000\u0000\u0000\u0150\u0154\u0001"+
+ "\u0000\u0000\u0000\u0151\u014f\u0001\u0000\u0000\u0000\u0152\u0153\u0005"+
+ "*\u0000\u0000\u0153\u0155\u0003\u001a\r\u0000\u0154\u0152\u0001\u0000"+
+ "\u0000\u0000\u0154\u0155\u0001\u0000\u0000\u0000\u0155\u0157\u0001\u0000"+
+ "\u0000\u0000\u0156\u0149\u0001\u0000\u0000\u0000\u0156\u014a\u0001\u0000"+
+ "\u0000\u0000\u0156\u0157\u0001\u0000\u0000\u0000\u0157\u0158\u0001\u0000"+
+ "\u0000\u0000\u0158\u0159\u0005;\u0000\u0000\u0159\u0017\u0001\u0000\u0000"+
+ "\u0000\u015a\u015b\u0003V+\u0000\u015b\u0019\u0001\u0000\u0000\u0000\u015c"+
+ "\u015d\u0005J\u0000\u0000\u015d\u0162\u0003\u001c\u000e\u0000\u015e\u015f"+
+ "\u0005*\u0000\u0000\u015f\u0161\u0003\u001c\u000e\u0000\u0160\u015e\u0001"+
+ "\u0000\u0000\u0000\u0161\u0164\u0001\u0000\u0000\u0000\u0162\u0160\u0001"+
+ "\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000\u0000\u0163\u0165\u0001"+
+ "\u0000\u0000\u0000\u0164\u0162\u0001\u0000\u0000\u0000\u0165\u0166\u0005"+
+ "K\u0000\u0000\u0166\u001b\u0001\u0000\u0000\u0000\u0167\u0168\u0003x<"+
+ "\u0000\u0168\u0169\u0005)\u0000\u0000\u0169\u016a\u0003P(\u0000\u016a"+
+ "\u001d\u0001\u0000\u0000\u0000\u016b\u016c\u0003L&\u0000\u016c\u001f\u0001"+
+ "\u0000\u0000\u0000\u016d\u016e\u0005\r\u0000\u0000\u016e\u016f\u0003\""+
+ "\u0011\u0000\u016f!\u0001\u0000\u0000\u0000\u0170\u0175\u0003$\u0012\u0000"+
+ "\u0171\u0172\u0005*\u0000\u0000\u0172\u0174\u0003$\u0012\u0000\u0173\u0171"+
+ "\u0001\u0000\u0000\u0000\u0174\u0177\u0001\u0000\u0000\u0000\u0175\u0173"+
+ "\u0001\u0000\u0000\u0000\u0175\u0176\u0001\u0000\u0000\u0000\u0176#\u0001"+
+ "\u0000\u0000\u0000\u0177\u0175\u0001\u0000\u0000\u0000\u0178\u0179\u0003"+
+ "F#\u0000\u0179\u017a\u0005&\u0000\u0000\u017a\u017c\u0001\u0000\u0000"+
+ "\u0000\u017b\u0178\u0001\u0000\u0000\u0000\u017b\u017c\u0001\u0000\u0000"+
+ "\u0000\u017c\u017d\u0001\u0000\u0000\u0000\u017d\u017e\u0003\n\u0005\u0000"+
+ "\u017e%\u0001\u0000\u0000\u0000\u017f\u0184\u0003(\u0014\u0000\u0180\u0181"+
+ "\u0005*\u0000\u0000\u0181\u0183\u0003(\u0014\u0000\u0182\u0180\u0001\u0000"+
+ "\u0000\u0000\u0183\u0186\u0001\u0000\u0000\u0000\u0184\u0182\u0001\u0000"+
+ "\u0000\u0000\u0184\u0185\u0001\u0000\u0000\u0000\u0185\'\u0001\u0000\u0000"+
+ "\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0187\u018a\u0003F#\u0000\u0188"+
+ "\u0189\u0005&\u0000\u0000\u0189\u018b\u0003\n\u0005\u0000\u018a\u0188"+
+ "\u0001\u0000\u0000\u0000\u018a\u018b\u0001\u0000\u0000\u0000\u018b)\u0001"+
+ "\u0000\u0000\u0000\u018c\u018d\u0005\u0007\u0000\u0000\u018d\u0192\u0003"+
+ ",\u0016\u0000\u018e\u018f\u0005*\u0000\u0000\u018f\u0191\u0003,\u0016"+
+ "\u0000\u0190\u018e\u0001\u0000\u0000\u0000\u0191\u0194\u0001\u0000\u0000"+
+ "\u0000\u0192\u0190\u0001\u0000\u0000\u0000\u0192\u0193\u0001\u0000\u0000"+
+ "\u0000\u0193\u0196\u0001\u0000\u0000\u0000\u0194\u0192\u0001\u0000\u0000"+
+ "\u0000\u0195\u0197\u00036\u001b\u0000\u0196\u0195\u0001\u0000\u0000\u0000"+
+ "\u0196\u0197\u0001\u0000\u0000\u0000\u0197+\u0001\u0000\u0000\u0000\u0198"+
+ "\u0199\u0003.\u0017\u0000\u0199\u019a\u0005)\u0000\u0000\u019a\u019b\u0003"+
+ "2\u0019\u0000\u019b\u01a2\u0001\u0000\u0000\u0000\u019c\u019d\u00032\u0019"+
+ "\u0000\u019d\u019e\u0005(\u0000\u0000\u019e\u019f\u00030\u0018\u0000\u019f"+
+ "\u01a2\u0001\u0000\u0000\u0000\u01a0\u01a2\u00034\u001a\u0000\u01a1\u0198"+
+ "\u0001\u0000\u0000\u0000\u01a1\u019c\u0001\u0000\u0000\u0000\u01a1\u01a0"+
+ "\u0001\u0000\u0000\u0000\u01a2-\u0001\u0000\u0000\u0000\u01a3\u01a4\u0005"+
+ "Z\u0000\u0000\u01a4/\u0001\u0000\u0000\u0000\u01a5\u01a6\u0005Z\u0000"+
+ "\u0000\u01a61\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005Z\u0000\u0000\u01a8"+
+ "3\u0001\u0000\u0000\u0000\u01a9\u01aa\u0007\u0002\u0000\u0000\u01aa5\u0001"+
+ "\u0000\u0000\u0000\u01ab\u01ae\u00038\u001c\u0000\u01ac\u01ae\u0003:\u001d"+
+ "\u0000\u01ad\u01ab\u0001\u0000\u0000\u0000\u01ad\u01ac\u0001\u0000\u0000"+
+ "\u0000\u01ae7\u0001\u0000\u0000\u0000\u01af\u01b0\u0005Y\u0000\u0000\u01b0"+
+ "\u01b5\u0005Z\u0000\u0000\u01b1\u01b2\u0005*\u0000\u0000\u01b2\u01b4\u0005"+
+ "Z\u0000\u0000\u01b3\u01b1\u0001\u0000\u0000\u0000\u01b4\u01b7\u0001\u0000"+
+ "\u0000\u0000\u01b5\u01b3\u0001\u0000\u0000\u0000\u01b5\u01b6\u0001\u0000"+
+ "\u0000\u0000\u01b69\u0001\u0000\u0000\u0000\u01b7\u01b5\u0001\u0000\u0000"+
+ "\u0000\u01b8\u01b9\u0005O\u0000\u0000\u01b9\u01ba\u00038\u001c\u0000\u01ba"+
+ "\u01bb\u0005P\u0000\u0000\u01bb;\u0001\u0000\u0000\u0000\u01bc\u01bd\u0005"+
+ "\u0017\u0000\u0000\u01bd\u01c2\u0003,\u0016\u0000\u01be\u01bf\u0005*\u0000"+
+ "\u0000\u01bf\u01c1\u0003,\u0016\u0000\u01c0\u01be\u0001\u0000\u0000\u0000"+
+ "\u01c1\u01c4\u0001\u0000\u0000\u0000\u01c2\u01c0\u0001\u0000\u0000\u0000"+
+ "\u01c2\u01c3\u0001\u0000\u0000\u0000\u01c3\u01c6\u0001\u0000\u0000\u0000"+
+ "\u01c4\u01c2\u0001\u0000\u0000\u0000\u01c5\u01c7\u0003B!\u0000\u01c6\u01c5"+
+ "\u0001\u0000\u0000\u0000\u01c6\u01c7\u0001\u0000\u0000\u0000\u01c7\u01ca"+
+ "\u0001\u0000\u0000\u0000\u01c8\u01c9\u0005\'\u0000\u0000\u01c9\u01cb\u0003"+
+ "\"\u0011\u0000\u01ca\u01c8\u0001\u0000\u0000\u0000\u01ca\u01cb\u0001\u0000"+
+ "\u0000\u0000\u01cb=\u0001\u0000\u0000\u0000\u01cc\u01cd\u0005\u0005\u0000"+
+ "\u0000\u01cd\u01ce\u0003\"\u0011\u0000\u01ce?\u0001\u0000\u0000\u0000"+
+ "\u01cf\u01d1\u0005\u0011\u0000\u0000\u01d0\u01d2\u0003B!\u0000\u01d1\u01d0"+
+ "\u0001\u0000\u0000\u0000\u01d1\u01d2\u0001\u0000\u0000\u0000\u01d2\u01d5"+
+ "\u0001\u0000\u0000\u0000\u01d3\u01d4\u0005\'\u0000\u0000\u01d4\u01d6\u0003"+
+ "\"\u0011\u0000\u01d5\u01d3\u0001\u0000\u0000\u0000\u01d5\u01d6\u0001\u0000"+
+ "\u0000\u0000\u01d6A\u0001\u0000\u0000\u0000\u01d7\u01dc\u0003D\"\u0000"+
+ "\u01d8\u01d9\u0005*\u0000\u0000\u01d9\u01db\u0003D\"\u0000\u01da\u01d8"+
+ "\u0001\u0000\u0000\u0000\u01db\u01de\u0001\u0000\u0000\u0000\u01dc\u01da"+
+ "\u0001\u0000\u0000\u0000\u01dc\u01dd\u0001\u0000\u0000\u0000\u01ddC\u0001"+
+ "\u0000\u0000\u0000\u01de\u01dc\u0001\u0000\u0000\u0000\u01df\u01e2\u0003"+
+ "$\u0012\u0000\u01e0\u01e1\u0005\u0012\u0000\u0000\u01e1\u01e3\u0003\n"+
+ "\u0005\u0000\u01e2\u01e0\u0001\u0000\u0000\u0000\u01e2\u01e3\u0001\u0000"+
+ "\u0000\u0000\u01e3E\u0001\u0000\u0000\u0000\u01e4\u01e9\u0003V+\u0000"+
+ "\u01e5\u01e6\u0005,\u0000\u0000\u01e6\u01e8\u0003V+\u0000\u01e7\u01e5"+
+ "\u0001\u0000\u0000\u0000\u01e8\u01eb\u0001\u0000\u0000\u0000\u01e9\u01e7"+
+ "\u0001\u0000\u0000\u0000\u01e9\u01ea\u0001\u0000\u0000\u0000\u01eaG\u0001"+
+ "\u0000\u0000\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01ec\u01f1\u0003"+
+ "N\'\u0000\u01ed\u01ee\u0005,\u0000\u0000\u01ee\u01f0\u0003N\'\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\u01f2"+
+ "I\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f4\u01f9"+
+ "\u0003H$\u0000\u01f5\u01f6\u0005*\u0000\u0000\u01f6\u01f8\u0003H$\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"+
+ "\u01faK\u0001\u0000\u0000\u0000\u01fb\u01f9\u0001\u0000\u0000\u0000\u01fc"+
+ "\u01fd\u0007\u0003\u0000\u0000\u01fdM\u0001\u0000\u0000\u0000\u01fe\u0202"+
+ "\u0005^\u0000\u0000\u01ff\u0202\u0003R)\u0000\u0200\u0202\u0003T*\u0000"+
+ "\u0201\u01fe\u0001\u0000\u0000\u0000\u0201\u01ff\u0001\u0000\u0000\u0000"+
+ "\u0201\u0200\u0001\u0000\u0000\u0000\u0202O\u0001\u0000\u0000\u0000\u0203"+
+ "\u022e\u00055\u0000\u0000\u0204\u0205\u0003v;\u0000\u0205\u0206\u0005"+
+ "Q\u0000\u0000\u0206\u022e\u0001\u0000\u0000\u0000\u0207\u022e\u0003t:"+
+ "\u0000\u0208\u022e\u0003v;\u0000\u0209\u022e\u0003p8\u0000\u020a\u022e"+
+ "\u0003R)\u0000\u020b\u022e\u0003x<\u0000\u020c\u020d\u0005O\u0000\u0000"+
+ "\u020d\u0212\u0003r9\u0000\u020e\u020f\u0005*\u0000\u0000\u020f\u0211"+
+ "\u0003r9\u0000\u0210\u020e\u0001\u0000\u0000\u0000\u0211\u0214\u0001\u0000"+
+ "\u0000\u0000\u0212\u0210\u0001\u0000\u0000\u0000\u0212\u0213\u0001\u0000"+
+ "\u0000\u0000\u0213\u0215\u0001\u0000\u0000\u0000\u0214\u0212\u0001\u0000"+
+ "\u0000\u0000\u0215\u0216\u0005P\u0000\u0000\u0216\u022e\u0001\u0000\u0000"+
+ "\u0000\u0217\u0218\u0005O\u0000\u0000\u0218\u021d\u0003p8\u0000\u0219"+
+ "\u021a\u0005*\u0000\u0000\u021a\u021c\u0003p8\u0000\u021b\u0219\u0001"+
+ "\u0000\u0000\u0000\u021c\u021f\u0001\u0000\u0000\u0000\u021d\u021b\u0001"+
+ "\u0000\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021e\u0220\u0001"+
+ "\u0000\u0000\u0000\u021f\u021d\u0001\u0000\u0000\u0000\u0220\u0221\u0005"+
+ "P\u0000\u0000\u0221\u022e\u0001\u0000\u0000\u0000\u0222\u0223\u0005O\u0000"+
+ "\u0000\u0223\u0228\u0003x<\u0000\u0224\u0225\u0005*\u0000\u0000\u0225"+
+ "\u0227\u0003x<\u0000\u0226\u0224\u0001\u0000\u0000\u0000\u0227\u022a\u0001"+
+ "\u0000\u0000\u0000\u0228\u0226\u0001\u0000\u0000\u0000\u0228\u0229\u0001"+
+ "\u0000\u0000\u0000\u0229\u022b\u0001\u0000\u0000\u0000\u022a\u0228\u0001"+
+ "\u0000\u0000\u0000\u022b\u022c\u0005P\u0000\u0000\u022c\u022e\u0001\u0000"+
+ "\u0000\u0000\u022d\u0203\u0001\u0000\u0000\u0000\u022d\u0204\u0001\u0000"+
+ "\u0000\u0000\u022d\u0207\u0001\u0000\u0000\u0000\u022d\u0208\u0001\u0000"+
+ "\u0000\u0000\u022d\u0209\u0001\u0000\u0000\u0000\u022d\u020a\u0001\u0000"+
+ "\u0000\u0000\u022d\u020b\u0001\u0000\u0000\u0000\u022d\u020c\u0001\u0000"+
+ "\u0000\u0000\u022d\u0217\u0001\u0000\u0000\u0000\u022d\u0222\u0001\u0000"+
+ "\u0000\u0000\u022eQ\u0001\u0000\u0000\u0000\u022f\u0232\u00059\u0000\u0000"+
+ "\u0230\u0232\u0005M\u0000\u0000\u0231\u022f\u0001\u0000\u0000\u0000\u0231"+
+ "\u0230\u0001\u0000\u0000\u0000\u0232S\u0001\u0000\u0000\u0000\u0233\u0236"+
+ "\u0005L\u0000\u0000\u0234\u0236\u0005N\u0000\u0000\u0235\u0233\u0001\u0000"+
+ "\u0000\u0000\u0235\u0234\u0001\u0000\u0000\u0000\u0236U\u0001\u0000\u0000"+
+ "\u0000\u0237\u023b\u0003L&\u0000\u0238\u023b\u0003R)\u0000\u0239\u023b"+
+ "\u0003T*\u0000\u023a\u0237\u0001\u0000\u0000\u0000\u023a\u0238\u0001\u0000"+
+ "\u0000\u0000\u023a\u0239\u0001\u0000\u0000\u0000\u023bW\u0001\u0000\u0000"+
+ "\u0000\u023c\u023d\u0005\n\u0000\u0000\u023d\u023e\u0003P(\u0000\u023e"+
+ "Y\u0001\u0000\u0000\u0000\u023f\u0240\u0005\u0010\u0000\u0000\u0240\u0245"+
+ "\u0003\\.\u0000\u0241\u0242\u0005*\u0000\u0000\u0242\u0244\u0003\\.\u0000"+
+ "\u0243\u0241\u0001\u0000\u0000\u0000\u0244\u0247\u0001\u0000\u0000\u0000"+
+ "\u0245\u0243\u0001\u0000\u0000\u0000\u0245\u0246\u0001\u0000\u0000\u0000"+
+ "\u0246[\u0001\u0000\u0000\u0000\u0247\u0245\u0001\u0000\u0000\u0000\u0248"+
+ "\u024a\u0003\n\u0005\u0000\u0249\u024b\u0007\u0004\u0000\u0000\u024a\u0249"+
+ "\u0001\u0000\u0000\u0000\u024a\u024b\u0001\u0000\u0000\u0000\u024b\u024e"+
+ "\u0001\u0000\u0000\u0000\u024c\u024d\u00056\u0000\u0000\u024d\u024f\u0007"+
+ "\u0005\u0000\u0000\u024e\u024c\u0001\u0000\u0000\u0000\u024e\u024f\u0001"+
+ "\u0000\u0000\u0000\u024f]\u0001\u0000\u0000\u0000\u0250\u0251\u0005\t"+
+ "\u0000\u0000\u0251\u0252\u0003J%\u0000\u0252_\u0001\u0000\u0000\u0000"+
+ "\u0253\u0254\u0005\u0003\u0000\u0000\u0254\u0255\u0003J%\u0000\u0255a"+
+ "\u0001\u0000\u0000\u0000\u0256\u0257\u0005\f\u0000\u0000\u0257\u025c\u0003"+
+ "d2\u0000\u0258\u0259\u0005*\u0000\u0000\u0259\u025b\u0003d2\u0000\u025a"+
+ "\u0258\u0001\u0000\u0000\u0000\u025b\u025e\u0001\u0000\u0000\u0000\u025c"+
+ "\u025a\u0001\u0000\u0000\u0000\u025c\u025d\u0001\u0000\u0000\u0000\u025d"+
+ "c\u0001\u0000\u0000\u0000\u025e\u025c\u0001\u0000\u0000\u0000\u025f\u0260"+
+ "\u0003H$\u0000\u0260\u0261\u0005b\u0000\u0000\u0261\u0262\u0003H$\u0000"+
+ "\u0262\u0268\u0001\u0000\u0000\u0000\u0263\u0264\u0003H$\u0000\u0264\u0265"+
+ "\u0005&\u0000\u0000\u0265\u0266\u0003H$\u0000\u0266\u0268\u0001\u0000"+
+ "\u0000\u0000\u0267\u025f\u0001\u0000\u0000\u0000\u0267\u0263\u0001\u0000"+
+ "\u0000\u0000\u0268e\u0001\u0000\u0000\u0000\u0269\u026a\u0005\u0002\u0000"+
+ "\u0000\u026a\u026b\u0003\u0014\n\u0000\u026b\u026d\u0003x<\u0000\u026c"+
+ "\u026e\u0003l6\u0000\u026d\u026c\u0001\u0000\u0000\u0000\u026d\u026e\u0001"+
+ "\u0000\u0000\u0000\u026eg\u0001\u0000\u0000\u0000\u026f\u0270\u0005\b"+
+ "\u0000\u0000\u0270\u0271\u0003\u0014\n\u0000\u0271\u0272\u0003x<\u0000"+
+ "\u0272i\u0001\u0000\u0000\u0000\u0273\u0274\u0005\u000b\u0000\u0000\u0274"+
+ "\u0275\u0003F#\u0000\u0275k\u0001\u0000\u0000\u0000\u0276\u027b\u0003"+
+ "n7\u0000\u0277\u0278\u0005*\u0000\u0000\u0278\u027a\u0003n7\u0000\u0279"+
+ "\u0277\u0001\u0000\u0000\u0000\u027a\u027d\u0001\u0000\u0000\u0000\u027b"+
+ "\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001\u0000\u0000\u0000\u027c"+
+ "m\u0001\u0000\u0000\u0000\u027d\u027b\u0001\u0000\u0000\u0000\u027e\u027f"+
+ "\u0003L&\u0000\u027f\u0280\u0005&\u0000\u0000\u0280\u0281\u0003P(\u0000"+
+ "\u0281o\u0001\u0000\u0000\u0000\u0282\u0283\u0007\u0006\u0000\u0000\u0283"+
+ "q\u0001\u0000\u0000\u0000\u0284\u0287\u0003t:\u0000\u0285\u0287\u0003"+
+ "v;\u0000\u0286\u0284\u0001\u0000\u0000\u0000\u0286\u0285\u0001\u0000\u0000"+
+ "\u0000\u0287s\u0001\u0000\u0000\u0000\u0288\u028a\u0007\u0000\u0000\u0000"+
+ "\u0289\u0288\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000\u0000\u0000"+
+ "\u028a\u028b\u0001\u0000\u0000\u0000\u028b\u028c\u0005#\u0000\u0000\u028c"+
+ "u\u0001\u0000\u0000\u0000\u028d\u028f\u0007\u0000\u0000\u0000\u028e\u028d"+
+ "\u0001\u0000\u0000\u0000\u028e\u028f\u0001\u0000\u0000\u0000\u028f\u0290"+
+ "\u0001\u0000\u0000\u0000\u0290\u0291\u0005\"\u0000\u0000\u0291w\u0001"+
+ "\u0000\u0000\u0000\u0292\u0293\u0005!\u0000\u0000\u0293y\u0001\u0000\u0000"+
+ "\u0000\u0294\u0295\u0007\u0007\u0000\u0000\u0295{\u0001\u0000\u0000\u0000"+
+ "\u0296\u0297\u0005\u0006\u0000\u0000\u0297\u0298\u0003~?\u0000\u0298}"+
+ "\u0001\u0000\u0000\u0000\u0299\u029a\u0005O\u0000\u0000\u029a\u029b\u0003"+
+ "\u0002\u0001\u0000\u029b\u029c\u0005P\u0000\u0000\u029c\u007f\u0001\u0000"+
+ "\u0000\u0000\u029d\u029e\u0005\u000f\u0000\u0000\u029e\u029f\u0005p\u0000"+
+ "\u0000\u029f\u0081\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005\u0004\u0000"+
+ "\u0000\u02a1\u02a4\u0005f\u0000\u0000\u02a2\u02a3\u00057\u0000\u0000\u02a3"+
+ "\u02a5\u0003H$\u0000\u02a4\u02a2\u0001\u0000\u0000\u0000\u02a4\u02a5\u0001"+
+ "\u0000\u0000\u0000\u02a5\u02af\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005"+
+ "=\u0000\u0000\u02a7\u02ac\u0003\u0084B\u0000\u02a8\u02a9\u0005*\u0000"+
+ "\u0000\u02a9\u02ab\u0003\u0084B\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000"+
+ "\u02ab\u02ae\u0001\u0000\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000"+
+ "\u02ac\u02ad\u0001\u0000\u0000\u0000\u02ad\u02b0\u0001\u0000\u0000\u0000"+
+ "\u02ae\u02ac\u0001\u0000\u0000\u0000\u02af\u02a6\u0001\u0000\u0000\u0000"+
+ "\u02af\u02b0\u0001\u0000\u0000\u0000\u02b0\u0083\u0001\u0000\u0000\u0000"+
+ "\u02b1\u02b2\u0003H$\u0000\u02b2\u02b3\u0005&\u0000\u0000\u02b3\u02b5"+
+ "\u0001\u0000\u0000\u0000\u02b4\u02b1\u0001\u0000\u0000\u0000\u02b4\u02b5"+
+ "\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b7"+
+ "\u0003H$\u0000\u02b7\u0085\u0001\u0000\u0000\u0000\u02b8\u02b9\u0005\u0014"+
+ "\u0000\u0000\u02b9\u02bc\u0003F#\u0000\u02ba\u02bb\u00057\u0000\u0000"+
+ "\u02bb\u02bd\u0003F#\u0000\u02bc\u02ba\u0001\u0000\u0000\u0000\u02bc\u02bd"+
+ "\u0001\u0000\u0000\u0000\u02bd\u02c3\u0001\u0000\u0000\u0000\u02be\u02bf"+
+ "\u0005b\u0000\u0000\u02bf\u02c0\u0003F#\u0000\u02c0\u02c1\u0005*\u0000"+
+ "\u0000\u02c1\u02c2\u0003F#\u0000\u02c2\u02c4\u0001\u0000\u0000\u0000\u02c3"+
+ "\u02be\u0001\u0000\u0000\u0000\u02c3\u02c4\u0001\u0000\u0000\u0000\u02c4"+
+ "\u0087\u0001\u0000\u0000\u0000\u02c5\u02c6\u0005\u000e\u0000\u0000\u02c6"+
+ "\u02c7\u0003P(\u0000\u02c7\u0089\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005"+
+ "\u0016\u0000\u0000\u02c9\u02ca\u0003,\u0016\u0000\u02ca\u02cb\u00057\u0000"+
+ "\u0000\u02cb\u02cc\u0003J%\u0000\u02cc\u008b\u0001\u0000\u0000\u0000\u02cd"+
+ "\u02ce\u0005\u0015\u0000\u0000\u02ce\u02d1\u0003B!\u0000\u02cf\u02d0\u0005"+
+ "\'\u0000\u0000\u02d0\u02d2\u0003\"\u0011\u0000\u02d1\u02cf\u0001\u0000"+
+ "\u0000\u0000\u02d1\u02d2\u0001\u0000\u0000\u0000\u02d2\u008d\u0001\u0000"+
+ "\u0000\u0000\u02d3\u02d4\u0007\b\u0000\u0000\u02d4\u02d5\u0005~\u0000"+
+ "\u0000\u02d5\u02d6\u0003\u0090H\u0000\u02d6\u02d7\u0003\u0092I\u0000\u02d7"+
+ "\u008f\u0001\u0000\u0000\u0000\u02d8\u02d9\u0003,\u0016\u0000\u02d9\u0091"+
+ "\u0001\u0000\u0000\u0000\u02da\u02db\u00057\u0000\u0000\u02db\u02e0\u0003"+
+ "\u0094J\u0000\u02dc\u02dd\u0005*\u0000\u0000\u02dd\u02df\u0003\u0094J"+
+ "\u0000\u02de\u02dc\u0001\u0000\u0000\u0000\u02df\u02e2\u0001\u0000\u0000"+
+ "\u0000\u02e0\u02de\u0001\u0000\u0000\u0000\u02e0\u02e1\u0001\u0000\u0000"+
+ "\u0000\u02e1\u0093\u0001\u0000\u0000\u0000\u02e2\u02e0\u0001\u0000\u0000"+
+ "\u0000\u02e3\u02e4\u0003\u0010\b\u0000\u02e4\u0095\u0001\u0000\u0000\u0000"+
+ "\u02e5\u02e6\u0005\u0018\u0000\u0000\u02e6\u02e7\u0003P(\u0000\u02e7\u02e8"+
+ "\u00057\u0000\u0000\u02e8\u02eb\u0003&\u0013\u0000\u02e9\u02ea\u0005="+
+ "\u0000\u0000\u02ea\u02ec\u0003V+\u0000\u02eb\u02e9\u0001\u0000\u0000\u0000"+
+ "\u02eb\u02ec\u0001\u0000\u0000\u0000\u02ec\u0097\u0001\u0000\u0000\u0000"+
+ "\u02ed\u02f1\u0005\u0001\u0000\u0000\u02ee\u02ef\u0003F#\u0000\u02ef\u02f0"+
+ "\u0005&\u0000\u0000\u02f0\u02f2\u0001\u0000\u0000\u0000\u02f1\u02ee\u0001"+
+ "\u0000\u0000\u0000\u02f1\u02f2\u0001\u0000\u0000\u0000\u02f2\u02f3\u0001"+
+ "\u0000\u0000\u0000\u02f3\u02f4\u0003\u0014\n\u0000\u02f4\u02f5\u0005="+
+ "\u0000\u0000\u02f5\u02f6\u0003V+\u0000\u02f6\u0099\u0001\u0000\u0000\u0000"+
+ "H\u00a5\u00ae\u00c6\u00d2\u00db\u00e3\u00e8\u00f0\u00f2\u00f7\u00fe\u0105"+
+ "\u010e\u0113\u0118\u0122\u0128\u0130\u0132\u013d\u0144\u014f\u0154\u0156"+
+ "\u0162\u0175\u017b\u0184\u018a\u0192\u0196\u01a1\u01ad\u01b5\u01c2\u01c6"+
+ "\u01ca\u01d1\u01d5\u01dc\u01e2\u01e9\u01f1\u01f9\u0201\u0212\u021d\u0228"+
+ "\u022d\u0231\u0235\u023a\u0245\u024a\u024e\u025c\u0267\u026d\u027b\u0286"+
+ "\u0289\u028e\u02a4\u02ac\u02af\u02b4\u02bc\u02c3\u02d1\u02e0\u02eb\u02f1";
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 5bde96a4ea3c7..14f992376d1ed 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
@@ -1160,6 +1160,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitChangePointCommand(EsqlBaseParser.ChangePointCommandContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { }
/**
* {@inheritDoc}
*
@@ -1256,18 +1268,6 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx) { }
- /**
- * {@inheritDoc}
- *
- * The default implementation does nothing.
- */
- @Override public void enterSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { }
- /**
- * {@inheritDoc}
- *
- * The default implementation does nothing.
- */
- @Override public void exitSampleCommand(EsqlBaseParser.SampleCommandContext 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 a4918d43cbefe..16a851b40218f 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
@@ -685,6 +685,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitChangePointCommand(EsqlBaseParser.ChangePointCommandContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -741,11 +748,4 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx) { return visitChildren(ctx); }
- /**
- * {@inheritDoc}
- *
- * The default implementation returns the result of calling
- * {@link #visitChildren} on {@code ctx}.
- */
- @Override public T visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { return visitChildren(ctx); }
}
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 cd19190d814d1..f1382615dfe2d 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
@@ -1041,6 +1041,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitChangePointCommand(EsqlBaseParser.ChangePointCommandContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
+ * @param ctx the parse tree
+ */
+ void enterSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
+ * @param ctx the parse tree
+ */
+ void exitSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
/**
* Enter a parse tree produced by {@link EsqlBaseParser#lookupCommand}.
* @param ctx the parse tree
@@ -1121,14 +1131,4 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx);
- /**
- * Enter a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
- * @param ctx the parse tree
- */
- void enterSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
- /**
- * Exit a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
- * @param ctx the parse tree
- */
- void exitSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
}
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 1367cab3337da..51890695dcaa6 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
@@ -626,6 +626,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitChangePointCommand(EsqlBaseParser.ChangePointCommandContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
/**
* Visit a parse tree produced by {@link EsqlBaseParser#lookupCommand}.
* @param ctx the parse tree
@@ -674,10 +680,4 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx);
- /**
- * Visit a parse tree produced by {@link EsqlBaseParser#sampleCommand}.
- * @param ctx the parse tree
- * @return the visitor result
- */
- T visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx);
}