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/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/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" : { 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..56ba95f66f5fa --- /dev/null +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/SampleOperator.java @@ -0,0 +1,242 @@ +/* + * 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.Randomness; +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 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 == null ? Randomness.get().nextInt() : seed); + } + + @Override + public String describe() { + return "SampleOperator[probability = " + probability + "]"; + } + } + + 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..11d22b7630031 --- /dev/null +++ b/x-pack/plugin/esql/compute/src/test/java/org/elasticsearch/compute/operator/SampleOperatorTests.java @@ -0,0 +1,74 @@ +/* + * 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; + +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 equalTo("SampleOperator[probability = 0.5]"); + } + + @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..913dff4655a2b --- /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_V3.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> defaultOutputColumns() { + return List.of(Map.of("name", "value", "type", "integer")); + } + + private Map runEsqlQuery(String query) throws IOException { + RestEsqlTestCase.RequestObjectBuilder builder = RestEsqlTestCase.requestObjectBuilder().query(query); + return RestEsqlTestCase.runEsqlSync(builder); + } + + private void createTestIndex() throws IOException { + Request request = new Request("PUT", "/sample-test-index"); + request.setJsonEntity(""" + { + "mappings": { + "properties": { + "value": { "type": "integer" } + } + } + }"""); + assertEquals(200, client().performRequest(request).getStatusLine().getStatusCode()); + + StringBuilder requestJsonEntity = new StringBuilder(); + for (int i = 0; i < 1000; i++) { + requestJsonEntity.append("{ \"index\": {\"_id\": " + i + "} }\n"); + requestJsonEntity.append("{ \"value\": " + i + " }\n"); + } + + request = new Request("POST", "/sample-test-index/_bulk"); + request.addParameter("refresh", "true"); + request.setJsonEntity(requestJsonEntity.toString()); + assertEquals(200, client().performRequest(request).getStatusLine().getStatusCode()); + } + + private void deleteTestIndex() throws IOException { + try { + adminClient().performRequest(new Request("DELETE", "/sample-test-index")); + } catch (ResponseException e) { + throw e; + } + } +} 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 new file mode 100644 index 0000000000000..8ecf1b7d374de --- /dev/null +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/sample.csv-spec @@ -0,0 +1,248 @@ +// Tests focused on the SAMPLE command +// Note: this tests only basic behavior, because of limitations of the CSV tests. +// Most tests assert that the count, average and sum of some values are within a +// 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 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. + +row +required_capability: sample_v3 + +ROW x = 1 | SAMPLE .999999999 +; + +x:integer +1 +; + + +row and mv_expand +required_capability: sample_v3 + +ROW x = [1,2,3,4,5] | MV_EXPAND x | SAMPLE .999999999 +; + +x:integer +1 +2 +3 +4 +5 +; + + +adjust stats for sampling +required_capability: sample_v3 + +FROM employees + | SAMPLE 0.5 + | 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 > 10*10010 AND sum_emp_no < 90*10090 + | KEEP is_expected +; + +is_expected:boolean +true +; + + +before where +required_capability: sample_v3 + +FROM employees + | SAMPLE 0.5 + | WHERE emp_no > 10050 + | 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 +; + +is_expected:boolean +true +; + + +after where +required_capability: sample_v3 + +FROM employees + | WHERE emp_no <= 10050 + | SAMPLE 0.5 + | 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 +; + +is_expected:boolean +true +; + + +before sort +required_capability: sample_v3 + +FROM employees + | SAMPLE 0.5 + | SORT emp_no + | 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 +; + +is_expected:boolean +true +; + + +after sort +required_capability: sample_v3 + +FROM employees + | SORT emp_no + | SAMPLE 0.5 + | 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 +; + +is_expected:boolean +true +; + + +before limit +required_capability: sample_v3 + +FROM employees + | SAMPLE 0.5 + | LIMIT 10 + | STATS count = COUNT(emp_no) + | EVAL is_expected = count == 10 + | KEEP is_expected +; + +is_expected:boolean +true +; + + +after limit +required_capability: sample_v3 + +FROM employees + | LIMIT 50 + | SAMPLE 0.5 + | STATS count = COUNT(emp_no) + | EVAL is_expected = count >= 2 AND count <= 48 + | KEEP is_expected +; + +is_expected:boolean +true +; + + +before mv_expand +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 + | SAMPLE 0.85 + | MV_EXPAND y + | STATS count = COUNT() BY x + | STATS counts = VALUES(count) + | EVAL is_expected = MV_COUNT(counts) == 1 AND MV_MIN(counts) == 2 + | KEEP is_expected +; + +is_expected:boolean +true +; + + +after mv_expand +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 + | MV_EXPAND y + | SAMPLE 0.85 + | STATS count = COUNT() BY x + | STATS counts = VALUES(count) + | EVAL is_expected = MV_COUNT(counts) == 2 AND MV_MIN(counts) == 1 AND MV_MAX(counts) == 2 + | KEEP is_expected +; + +is_expected:boolean +true +; + + +multiple samples +required_capability: sample_v3 + +FROM employees + | SAMPLE 0.7 + | SAMPLE 0.8 + | SAMPLE 0.9 + | 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 +; + +is_expected:boolean +true +; + + +after stats +required_capability: sample_v3 + +FROM employees + | SAMPLE 0.5 + | STATS avg_salary = AVG(salary) BY job_positions + | SAMPLE 0.8 + | 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 +; + +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[] +; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 index 8fbf553a55780..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,6 +92,7 @@ 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); + // list of all JOIN commands DEV_JOIN_FULL : {this.isDevVersion()}? 'full' -> pushMode(JOIN_MODE); DEV_JOIN_LEFT : {this.isDevVersion()}? 'left' -> 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 4a1a8def01733..a82dbdd829966 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens @@ -11,131 +11,132 @@ 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_JOIN_FULL=24 -DEV_JOIN_LEFT=25 -DEV_JOIN_RIGHT=26 -UNKNOWN_CMD=27 -LINE_COMMENT=28 -MULTILINE_COMMENT=29 -WS=30 -PIPE=31 -QUOTED_STRING=32 -INTEGER_LITERAL=33 -DECIMAL_LITERAL=34 -AND=35 -ASC=36 -ASSIGN=37 -BY=38 -CAST_OP=39 -COLON=40 -COMMA=41 -DESC=42 -DOT=43 -FALSE=44 -FIRST=45 -IN=46 -IS=47 -LAST=48 -LIKE=49 -LP=50 -NOT=51 -NULL=52 -NULLS=53 -ON=54 -OR=55 -PARAM=56 -RLIKE=57 -RP=58 -TRUE=59 -WITH=60 -EQ=61 -CIEQ=62 -NEQ=63 -LT=64 -LTE=65 -GT=66 -GTE=67 -PLUS=68 -MINUS=69 -ASTERISK=70 -SLASH=71 -PERCENT=72 -LEFT_BRACES=73 -RIGHT_BRACES=74 -DOUBLE_PARAMS=75 -NAMED_OR_POSITIONAL_PARAM=76 -NAMED_OR_POSITIONAL_DOUBLE_PARAMS=77 -OPENING_BRACKET=78 -CLOSING_BRACKET=79 -UNQUOTED_IDENTIFIER=80 -QUOTED_IDENTIFIER=81 -EXPR_LINE_COMMENT=82 -EXPR_MULTILINE_COMMENT=83 -EXPR_WS=84 -EXPLAIN_WS=85 -EXPLAIN_LINE_COMMENT=86 -EXPLAIN_MULTILINE_COMMENT=87 -METADATA=88 -UNQUOTED_SOURCE=89 -FROM_LINE_COMMENT=90 -FROM_MULTILINE_COMMENT=91 -FROM_WS=92 -ID_PATTERN=93 -PROJECT_LINE_COMMENT=94 -PROJECT_MULTILINE_COMMENT=95 -PROJECT_WS=96 -AS=97 -RENAME_LINE_COMMENT=98 -RENAME_MULTILINE_COMMENT=99 -RENAME_WS=100 -ENRICH_POLICY_NAME=101 -ENRICH_LINE_COMMENT=102 -ENRICH_MULTILINE_COMMENT=103 -ENRICH_WS=104 -ENRICH_FIELD_LINE_COMMENT=105 -ENRICH_FIELD_MULTILINE_COMMENT=106 -ENRICH_FIELD_WS=107 -MVEXPAND_LINE_COMMENT=108 -MVEXPAND_MULTILINE_COMMENT=109 -MVEXPAND_WS=110 -INFO=111 -SHOW_LINE_COMMENT=112 -SHOW_MULTILINE_COMMENT=113 -SHOW_WS=114 -SETTING=115 -SETTING_LINE_COMMENT=116 -SETTTING_MULTILINE_COMMENT=117 -SETTING_WS=118 -LOOKUP_LINE_COMMENT=119 -LOOKUP_MULTILINE_COMMENT=120 -LOOKUP_WS=121 -LOOKUP_FIELD_LINE_COMMENT=122 -LOOKUP_FIELD_MULTILINE_COMMENT=123 -LOOKUP_FIELD_WS=124 -JOIN=125 -USING=126 -JOIN_LINE_COMMENT=127 -JOIN_MULTILINE_COMMENT=128 -JOIN_WS=129 -METRICS_LINE_COMMENT=130 -METRICS_MULTILINE_COMMENT=131 -METRICS_WS=132 -CLOSING_METRICS_LINE_COMMENT=133 -CLOSING_METRICS_MULTILINE_COMMENT=134 -CLOSING_METRICS_WS=135 -CHANGE_POINT_LINE_COMMENT=136 -CHANGE_POINT_MULTILINE_COMMENT=137 -CHANGE_POINT_WS=138 +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 +COMMA=42 +DESC=43 +DOT=44 +FALSE=45 +FIRST=46 +IN=47 +IS=48 +LAST=49 +LIKE=50 +LP=51 +NOT=52 +NULL=53 +NULLS=54 +ON=55 +OR=56 +PARAM=57 +RLIKE=58 +RP=59 +TRUE=60 +WITH=61 +EQ=62 +CIEQ=63 +NEQ=64 +LT=65 +LTE=66 +GT=67 +GTE=68 +PLUS=69 +MINUS=70 +ASTERISK=71 +SLASH=72 +PERCENT=73 +LEFT_BRACES=74 +RIGHT_BRACES=75 +DOUBLE_PARAMS=76 +NAMED_OR_POSITIONAL_PARAM=77 +NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78 +OPENING_BRACKET=79 +CLOSING_BRACKET=80 +UNQUOTED_IDENTIFIER=81 +QUOTED_IDENTIFIER=82 +EXPR_LINE_COMMENT=83 +EXPR_MULTILINE_COMMENT=84 +EXPR_WS=85 +EXPLAIN_WS=86 +EXPLAIN_LINE_COMMENT=87 +EXPLAIN_MULTILINE_COMMENT=88 +METADATA=89 +UNQUOTED_SOURCE=90 +FROM_LINE_COMMENT=91 +FROM_MULTILINE_COMMENT=92 +FROM_WS=93 +ID_PATTERN=94 +PROJECT_LINE_COMMENT=95 +PROJECT_MULTILINE_COMMENT=96 +PROJECT_WS=97 +AS=98 +RENAME_LINE_COMMENT=99 +RENAME_MULTILINE_COMMENT=100 +RENAME_WS=101 +ENRICH_POLICY_NAME=102 +ENRICH_LINE_COMMENT=103 +ENRICH_MULTILINE_COMMENT=104 +ENRICH_WS=105 +ENRICH_FIELD_LINE_COMMENT=106 +ENRICH_FIELD_MULTILINE_COMMENT=107 +ENRICH_FIELD_WS=108 +MVEXPAND_LINE_COMMENT=109 +MVEXPAND_MULTILINE_COMMENT=110 +MVEXPAND_WS=111 +INFO=112 +SHOW_LINE_COMMENT=113 +SHOW_MULTILINE_COMMENT=114 +SHOW_WS=115 +SETTING=116 +SETTING_LINE_COMMENT=117 +SETTTING_MULTILINE_COMMENT=118 +SETTING_WS=119 +LOOKUP_LINE_COMMENT=120 +LOOKUP_MULTILINE_COMMENT=121 +LOOKUP_WS=122 +LOOKUP_FIELD_LINE_COMMENT=123 +LOOKUP_FIELD_MULTILINE_COMMENT=124 +LOOKUP_FIELD_WS=125 +JOIN=126 +USING=127 +JOIN_LINE_COMMENT=128 +JOIN_MULTILINE_COMMENT=129 +JOIN_WS=130 +METRICS_LINE_COMMENT=131 +METRICS_MULTILINE_COMMENT=132 +METRICS_WS=133 +CLOSING_METRICS_LINE_COMMENT=134 +CLOSING_METRICS_MULTILINE_COMMENT=135 +CLOSING_METRICS_WS=136 +CHANGE_POINT_LINE_COMMENT=137 +CHANGE_POINT_MULTILINE_COMMENT=138 +CHANGE_POINT_WS=139 'completion'=1 'dissect'=2 'drop'=3 @@ -149,57 +150,58 @@ CHANGE_POINT_WS=138 'mv_expand'=11 'rename'=12 'row'=13 -'show'=14 -'sort'=15 -'stats'=16 -'where'=17 -'lookup'=18 -'change_point'=19 -'|'=31 -'and'=35 -'asc'=36 -'='=37 -'by'=38 -'::'=39 -':'=40 -','=41 -'desc'=42 -'.'=43 -'false'=44 -'first'=45 -'in'=46 -'is'=47 -'last'=48 -'like'=49 -'('=50 -'not'=51 -'null'=52 -'nulls'=53 -'on'=54 -'or'=55 -'?'=56 -'rlike'=57 -')'=58 -'true'=59 -'with'=60 -'=='=61 -'=~'=62 -'!='=63 -'<'=64 -'<='=65 -'>'=66 -'>='=67 -'+'=68 -'-'=69 -'*'=70 -'/'=71 -'%'=72 -'{'=73 -'}'=74 -'??'=75 -']'=79 -'metadata'=88 -'as'=97 -'info'=111 -'join'=125 -'USING'=126 +'sample'=14 +'show'=15 +'sort'=16 +'stats'=17 +'where'=18 +'lookup'=19 +'change_point'=20 +'|'=32 +'and'=36 +'asc'=37 +'='=38 +'by'=39 +'::'=40 +':'=41 +','=42 +'desc'=43 +'.'=44 +'false'=45 +'first'=46 +'in'=47 +'is'=48 +'last'=49 +'like'=50 +'('=51 +'not'=52 +'null'=53 +'nulls'=54 +'on'=55 +'or'=56 +'?'=57 +'rlike'=58 +')'=59 +'true'=60 +'with'=61 +'=='=62 +'=~'=63 +'!='=64 +'<'=65 +'<='=66 +'>'=67 +'>='=68 +'+'=69 +'-'=70 +'*'=71 +'/'=72 +'%'=73 +'{'=74 +'}'=75 +'??'=76 +']'=80 +'metadata'=89 +'as'=98 +'info'=112 +'join'=126 +'USING'=127 diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index c13b0f4f522c6..5ab13a638ab4e 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -54,6 +54,7 @@ processingCommand | joinCommand | changePointCommand | completionCommand + | sampleCommand // in development | {this.isDevVersion()}? inlinestatsCommand | {this.isDevVersion()}? lookupCommand @@ -355,6 +356,10 @@ changePointCommand : CHANGE_POINT value=qualifiedName (ON key=qualifiedName)? (AS targetType=qualifiedName COMMA targetPvalue=qualifiedName)? ; +sampleCommand + : SAMPLE probability=constant + ; + // // In development // diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens index 4a1a8def01733..a82dbdd829966 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens @@ -11,131 +11,132 @@ 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_JOIN_FULL=24 -DEV_JOIN_LEFT=25 -DEV_JOIN_RIGHT=26 -UNKNOWN_CMD=27 -LINE_COMMENT=28 -MULTILINE_COMMENT=29 -WS=30 -PIPE=31 -QUOTED_STRING=32 -INTEGER_LITERAL=33 -DECIMAL_LITERAL=34 -AND=35 -ASC=36 -ASSIGN=37 -BY=38 -CAST_OP=39 -COLON=40 -COMMA=41 -DESC=42 -DOT=43 -FALSE=44 -FIRST=45 -IN=46 -IS=47 -LAST=48 -LIKE=49 -LP=50 -NOT=51 -NULL=52 -NULLS=53 -ON=54 -OR=55 -PARAM=56 -RLIKE=57 -RP=58 -TRUE=59 -WITH=60 -EQ=61 -CIEQ=62 -NEQ=63 -LT=64 -LTE=65 -GT=66 -GTE=67 -PLUS=68 -MINUS=69 -ASTERISK=70 -SLASH=71 -PERCENT=72 -LEFT_BRACES=73 -RIGHT_BRACES=74 -DOUBLE_PARAMS=75 -NAMED_OR_POSITIONAL_PARAM=76 -NAMED_OR_POSITIONAL_DOUBLE_PARAMS=77 -OPENING_BRACKET=78 -CLOSING_BRACKET=79 -UNQUOTED_IDENTIFIER=80 -QUOTED_IDENTIFIER=81 -EXPR_LINE_COMMENT=82 -EXPR_MULTILINE_COMMENT=83 -EXPR_WS=84 -EXPLAIN_WS=85 -EXPLAIN_LINE_COMMENT=86 -EXPLAIN_MULTILINE_COMMENT=87 -METADATA=88 -UNQUOTED_SOURCE=89 -FROM_LINE_COMMENT=90 -FROM_MULTILINE_COMMENT=91 -FROM_WS=92 -ID_PATTERN=93 -PROJECT_LINE_COMMENT=94 -PROJECT_MULTILINE_COMMENT=95 -PROJECT_WS=96 -AS=97 -RENAME_LINE_COMMENT=98 -RENAME_MULTILINE_COMMENT=99 -RENAME_WS=100 -ENRICH_POLICY_NAME=101 -ENRICH_LINE_COMMENT=102 -ENRICH_MULTILINE_COMMENT=103 -ENRICH_WS=104 -ENRICH_FIELD_LINE_COMMENT=105 -ENRICH_FIELD_MULTILINE_COMMENT=106 -ENRICH_FIELD_WS=107 -MVEXPAND_LINE_COMMENT=108 -MVEXPAND_MULTILINE_COMMENT=109 -MVEXPAND_WS=110 -INFO=111 -SHOW_LINE_COMMENT=112 -SHOW_MULTILINE_COMMENT=113 -SHOW_WS=114 -SETTING=115 -SETTING_LINE_COMMENT=116 -SETTTING_MULTILINE_COMMENT=117 -SETTING_WS=118 -LOOKUP_LINE_COMMENT=119 -LOOKUP_MULTILINE_COMMENT=120 -LOOKUP_WS=121 -LOOKUP_FIELD_LINE_COMMENT=122 -LOOKUP_FIELD_MULTILINE_COMMENT=123 -LOOKUP_FIELD_WS=124 -JOIN=125 -USING=126 -JOIN_LINE_COMMENT=127 -JOIN_MULTILINE_COMMENT=128 -JOIN_WS=129 -METRICS_LINE_COMMENT=130 -METRICS_MULTILINE_COMMENT=131 -METRICS_WS=132 -CLOSING_METRICS_LINE_COMMENT=133 -CLOSING_METRICS_MULTILINE_COMMENT=134 -CLOSING_METRICS_WS=135 -CHANGE_POINT_LINE_COMMENT=136 -CHANGE_POINT_MULTILINE_COMMENT=137 -CHANGE_POINT_WS=138 +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 +COMMA=42 +DESC=43 +DOT=44 +FALSE=45 +FIRST=46 +IN=47 +IS=48 +LAST=49 +LIKE=50 +LP=51 +NOT=52 +NULL=53 +NULLS=54 +ON=55 +OR=56 +PARAM=57 +RLIKE=58 +RP=59 +TRUE=60 +WITH=61 +EQ=62 +CIEQ=63 +NEQ=64 +LT=65 +LTE=66 +GT=67 +GTE=68 +PLUS=69 +MINUS=70 +ASTERISK=71 +SLASH=72 +PERCENT=73 +LEFT_BRACES=74 +RIGHT_BRACES=75 +DOUBLE_PARAMS=76 +NAMED_OR_POSITIONAL_PARAM=77 +NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78 +OPENING_BRACKET=79 +CLOSING_BRACKET=80 +UNQUOTED_IDENTIFIER=81 +QUOTED_IDENTIFIER=82 +EXPR_LINE_COMMENT=83 +EXPR_MULTILINE_COMMENT=84 +EXPR_WS=85 +EXPLAIN_WS=86 +EXPLAIN_LINE_COMMENT=87 +EXPLAIN_MULTILINE_COMMENT=88 +METADATA=89 +UNQUOTED_SOURCE=90 +FROM_LINE_COMMENT=91 +FROM_MULTILINE_COMMENT=92 +FROM_WS=93 +ID_PATTERN=94 +PROJECT_LINE_COMMENT=95 +PROJECT_MULTILINE_COMMENT=96 +PROJECT_WS=97 +AS=98 +RENAME_LINE_COMMENT=99 +RENAME_MULTILINE_COMMENT=100 +RENAME_WS=101 +ENRICH_POLICY_NAME=102 +ENRICH_LINE_COMMENT=103 +ENRICH_MULTILINE_COMMENT=104 +ENRICH_WS=105 +ENRICH_FIELD_LINE_COMMENT=106 +ENRICH_FIELD_MULTILINE_COMMENT=107 +ENRICH_FIELD_WS=108 +MVEXPAND_LINE_COMMENT=109 +MVEXPAND_MULTILINE_COMMENT=110 +MVEXPAND_WS=111 +INFO=112 +SHOW_LINE_COMMENT=113 +SHOW_MULTILINE_COMMENT=114 +SHOW_WS=115 +SETTING=116 +SETTING_LINE_COMMENT=117 +SETTTING_MULTILINE_COMMENT=118 +SETTING_WS=119 +LOOKUP_LINE_COMMENT=120 +LOOKUP_MULTILINE_COMMENT=121 +LOOKUP_WS=122 +LOOKUP_FIELD_LINE_COMMENT=123 +LOOKUP_FIELD_MULTILINE_COMMENT=124 +LOOKUP_FIELD_WS=125 +JOIN=126 +USING=127 +JOIN_LINE_COMMENT=128 +JOIN_MULTILINE_COMMENT=129 +JOIN_WS=130 +METRICS_LINE_COMMENT=131 +METRICS_MULTILINE_COMMENT=132 +METRICS_WS=133 +CLOSING_METRICS_LINE_COMMENT=134 +CLOSING_METRICS_MULTILINE_COMMENT=135 +CLOSING_METRICS_WS=136 +CHANGE_POINT_LINE_COMMENT=137 +CHANGE_POINT_MULTILINE_COMMENT=138 +CHANGE_POINT_WS=139 'completion'=1 'dissect'=2 'drop'=3 @@ -149,57 +150,58 @@ CHANGE_POINT_WS=138 'mv_expand'=11 'rename'=12 'row'=13 -'show'=14 -'sort'=15 -'stats'=16 -'where'=17 -'lookup'=18 -'change_point'=19 -'|'=31 -'and'=35 -'asc'=36 -'='=37 -'by'=38 -'::'=39 -':'=40 -','=41 -'desc'=42 -'.'=43 -'false'=44 -'first'=45 -'in'=46 -'is'=47 -'last'=48 -'like'=49 -'('=50 -'not'=51 -'null'=52 -'nulls'=53 -'on'=54 -'or'=55 -'?'=56 -'rlike'=57 -')'=58 -'true'=59 -'with'=60 -'=='=61 -'=~'=62 -'!='=63 -'<'=64 -'<='=65 -'>'=66 -'>='=67 -'+'=68 -'-'=69 -'*'=70 -'/'=71 -'%'=72 -'{'=73 -'}'=74 -'??'=75 -']'=79 -'metadata'=88 -'as'=97 -'info'=111 -'join'=125 -'USING'=126 +'sample'=14 +'show'=15 +'sort'=16 +'stats'=17 +'where'=18 +'lookup'=19 +'change_point'=20 +'|'=32 +'and'=36 +'asc'=37 +'='=38 +'by'=39 +'::'=40 +':'=41 +','=42 +'desc'=43 +'.'=44 +'false'=45 +'first'=46 +'in'=47 +'is'=48 +'last'=49 +'like'=50 +'('=51 +'not'=52 +'null'=53 +'nulls'=54 +'on'=55 +'or'=56 +'?'=57 +'rlike'=58 +')'=59 +'true'=60 +'with'=61 +'=='=62 +'=~'=63 +'!='=64 +'<'=65 +'<='=66 +'>'=67 +'>='=68 +'+'=69 +'-'=70 +'*'=71 +'/'=72 +'%'=73 +'{'=74 +'}'=75 +'??'=76 +']'=80 +'metadata'=89 +'as'=98 +'info'=112 +'join'=126 +'USING'=127 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 38876c938f917..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 @@ -928,7 +928,7 @@ public enum Cap { TO_LOWER_EMPTY_STRING, /** - * Support parameters for LiMIT command. + * Support parameters for LIMIT command. */ PARAMETER_FOR_LIMIT, @@ -960,7 +960,16 @@ public enum Cap { /** * Support for LIKE operator with a list of patterns */ - LIKE_WITH_LIST_OF_PATTERNS; + LIKE_WITH_LIST_OF_PATTERNS, + /** + * Support for the SAMPLE command + */ + SAMPLE_V3, + + /** + * Support parameters for SAMPLE command. + */ + PARAMETER_FOR_SAMPLE; private final boolean enabled; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/capabilities/PostPhysicalOptimizationVerificationAware.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/capabilities/PostPhysicalOptimizationVerificationAware.java new file mode 100644 index 0000000000000..4946d865b281f --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/capabilities/PostPhysicalOptimizationVerificationAware.java @@ -0,0 +1,22 @@ +/* + * 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.capabilities; + +import org.elasticsearch.xpack.esql.common.Failures; + +/** + * Interface implemented by expressions that require validation post physical optimization. + */ +public interface PostPhysicalOptimizationVerificationAware { + + /** + * Validates the implementing expression - discovered failures are reported to the given + * {@link Failures} class. + */ + void postPhysicalOptimizationVerification(Failures failures); +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizer.java index 0798bf388eeb1..74e9e7411aa7b 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizer.java @@ -8,11 +8,12 @@ package org.elasticsearch.xpack.esql.optimizer; import org.elasticsearch.xpack.esql.VerificationException; -import org.elasticsearch.xpack.esql.common.Failure; +import org.elasticsearch.xpack.esql.common.Failures; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.EnableSpatialDistancePushdown; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.InsertFieldExtraction; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.PushFiltersToSource; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.PushLimitToSource; +import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.PushSampleToSource; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.PushStatsToSource; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.PushTopNToSource; import org.elasticsearch.xpack.esql.optimizer.rules.physical.local.ReplaceSourceAttributes; @@ -23,7 +24,6 @@ import org.elasticsearch.xpack.esql.rule.Rule; import java.util.ArrayList; -import java.util.Collection; import java.util.List; /** @@ -45,8 +45,8 @@ public PhysicalPlan localOptimize(PhysicalPlan plan) { } PhysicalPlan verify(PhysicalPlan plan) { - Collection failures = verifier.verify(plan); - if (failures.isEmpty() == false) { + Failures failures = verifier.verify(plan); + if (failures.hasFailures()) { throw new VerificationException(failures); } return plan; @@ -64,6 +64,7 @@ protected static List> rules(boolean optimizeForEsSource) { esSourceRules.add(new PushTopNToSource()); esSourceRules.add(new PushLimitToSource()); esSourceRules.add(new PushFiltersToSource()); + esSourceRules.add(new PushSampleToSource()); esSourceRules.add(new PushStatsToSource()); esSourceRules.add(new EnableSpatialDistancePushdown()); } 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 3d01213e0c646..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 @@ -36,6 +36,7 @@ import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineFilters; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineLimits; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineOrderBy; +import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineSample; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownCompletion; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEnrich; import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEval; @@ -185,6 +186,7 @@ protected static Batch operators() { new PruneLiteralsInOrderBy(), new PushDownAndCombineLimits(), new PushDownAndCombineFilters(), + new PushDownAndCombineSample(), new PushDownCompletion(), new PushDownEval(), new PushDownRegexExtract(), diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizer.java index 2595b5190f7d7..57e2c8cba4c32 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizer.java @@ -8,14 +8,13 @@ package org.elasticsearch.xpack.esql.optimizer; import org.elasticsearch.xpack.esql.VerificationException; -import org.elasticsearch.xpack.esql.common.Failure; +import org.elasticsearch.xpack.esql.common.Failures; import org.elasticsearch.xpack.esql.optimizer.rules.physical.ProjectAwayColumns; import org.elasticsearch.xpack.esql.plan.physical.FragmentExec; import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.rule.ParameterizedRuleExecutor; import org.elasticsearch.xpack.esql.rule.RuleExecutor; -import java.util.Collection; import java.util.List; /** @@ -39,8 +38,8 @@ public PhysicalPlan optimize(PhysicalPlan plan) { } PhysicalPlan verify(PhysicalPlan plan) { - Collection failures = verifier.verify(plan); - if (failures.isEmpty() == false) { + Failures failures = verifier.verify(plan); + if (failures.hasFailures()) { throw new VerificationException(failures); } return plan; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalVerifier.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalVerifier.java index 4ec90fc1ed50a..629361a40530c 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalVerifier.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/PhysicalVerifier.java @@ -7,7 +7,7 @@ package org.elasticsearch.xpack.esql.optimizer; -import org.elasticsearch.xpack.esql.common.Failure; +import org.elasticsearch.xpack.esql.capabilities.PostPhysicalOptimizationVerificationAware; import org.elasticsearch.xpack.esql.common.Failures; import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expressions; @@ -17,10 +17,6 @@ import org.elasticsearch.xpack.esql.plan.physical.FieldExtractExec; import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; -import java.util.Collection; -import java.util.LinkedHashSet; -import java.util.Set; - import static org.elasticsearch.xpack.esql.common.Failure.fail; /** Physical plan verifier. */ @@ -31,8 +27,8 @@ public final class PhysicalVerifier { private PhysicalVerifier() {} /** Verifies the physical plan. */ - public Collection verify(PhysicalPlan plan) { - Set failures = new LinkedHashSet<>(); + public Failures verify(PhysicalPlan plan) { + Failures failures = new Failures(); Failures depFailures = new Failures(); // AwaitsFix https://github.com/elastic/elasticsearch/issues/118531 @@ -56,6 +52,17 @@ public Collection verify(PhysicalPlan plan) { } } PlanConsistencyChecker.checkPlan(p, depFailures); + + if (failures.hasFailures() == false) { + if (p instanceof PostPhysicalOptimizationVerificationAware va) { + va.postPhysicalOptimizationVerification(failures); + } + p.forEachExpression(ex -> { + if (ex instanceof PostPhysicalOptimizationVerificationAware va) { + va.postPhysicalOptimizationVerification(failures); + } + }); + } }); if (depFailures.hasFailures()) { 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 new file mode 100644 index 0000000000000..439c7b785e8b4 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineSample.java @@ -0,0 +1,82 @@ +/* + * 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.expression.Foldables; +import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.optimizer.LogicalOptimizerContext; +import org.elasticsearch.xpack.esql.plan.logical.Enrich; +import org.elasticsearch.xpack.esql.plan.logical.Eval; +import org.elasticsearch.xpack.esql.plan.logical.Filter; +import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.OrderBy; +import org.elasticsearch.xpack.esql.plan.logical.Project; +import org.elasticsearch.xpack.esql.plan.logical.RegexExtract; +import org.elasticsearch.xpack.esql.plan.logical.Sample; +import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; + +/** + * Pushes down the SAMPLE operator. SAMPLE can be pushed down through an + * operator if + *

+ * | SAMPLE p | OPERATOR + *

+ * is equivalent to + *

+ * | OPERATOR | SAMPLE p + *

+ * statistically (i.e. same possible output with same probabilities). + * In that case, we push down sampling to Lucene for efficiency. + *

+ * + * As a rule of thumb, if an operator can be swapped with sampling if it maps: + *

    + *
  • + * one row to one row (e.g. DISSECT, DROP, ENRICH, + * EVAL, GROK, KEEP, RENAME) + *
  • + *
  • + * one row to zero or one row (WHERE) + *
  • + *
  • + * reorders the rows (SORT) + *
  • + *
+ */ +public class PushDownAndCombineSample extends OptimizerRules.ParameterizedOptimizerRule { + + public PushDownAndCombineSample() { + super(OptimizerRules.TransformDirection.DOWN); + } + + @Override + protected LogicalPlan rule(Sample sample, LogicalOptimizerContext context) { + LogicalPlan plan = sample; + var child = sample.child(); + if (child instanceof Sample sampleChild) { + var probability = combinedProbability(context, sample, sampleChild); + plan = new Sample(sample.source(), probability, sampleChild.child()); + } else if (child instanceof Enrich + || child instanceof Eval + || child instanceof Filter + || child instanceof OrderBy + || child instanceof Project + || child instanceof RegexExtract) { + var unaryChild = (UnaryPlan) child; + plan = unaryChild.replaceChild(sample.replaceChild(unaryChild.child())); + } + return plan; + } + + private static Expression combinedProbability(LogicalOptimizerContext context, Sample parent, Sample child) { + var parentProbability = (double) Foldables.valueOf(context.foldCtx(), parent.probability()); + var childProbability = (double) Foldables.valueOf(context.foldCtx(), child.probability()); + return Literal.of(parent.probability(), parentProbability * childProbability); + } +} 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 new file mode 100644 index 0000000000000..4e41b748ece08 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushSampleToSource.java @@ -0,0 +1,43 @@ +/* + * 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.physical.local; + +import org.elasticsearch.search.aggregations.bucket.sampler.random.RandomSamplingQueryBuilder; +import org.elasticsearch.xpack.esql.core.expression.Foldables; +import org.elasticsearch.xpack.esql.optimizer.LocalPhysicalOptimizerContext; +import org.elasticsearch.xpack.esql.optimizer.PhysicalOptimizerRules; +import org.elasticsearch.xpack.esql.plan.physical.EsQueryExec; +import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; +import org.elasticsearch.xpack.esql.plan.physical.SampleExec; + +import static org.elasticsearch.index.query.QueryBuilders.boolQuery; +import static org.elasticsearch.xpack.esql.planner.mapper.MapperUtils.hasScoreAttribute; + +public class PushSampleToSource extends PhysicalOptimizerRules.ParameterizedOptimizerRule { + @Override + protected PhysicalPlan rule(SampleExec sample, LocalPhysicalOptimizerContext ctx) { + PhysicalPlan plan = sample; + if (sample.child() instanceof EsQueryExec queryExec) { + var fullQuery = boolQuery(); + if (queryExec.query() != null) { + if (hasScoreAttribute(queryExec.output())) { + fullQuery.must(queryExec.query()); + } else { + fullQuery.filter(queryExec.query()); + } + } + + var sampleQuery = new RandomSamplingQueryBuilder((double) Foldables.valueOf(ctx.foldCtx(), sample.probability())); + + fullQuery.filter(sampleQuery); + + plan = queryExec.withQuery(fullQuery); + } + return plan; + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushTopNToSource.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushTopNToSource.java index 86e14961df01a..02d2f49605ced 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushTopNToSource.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/physical/local/PushTopNToSource.java @@ -200,7 +200,7 @@ private static boolean canPushDownOrders(List orders, LucenePushdownPredi // allow only exact FieldAttributes (no expressions) for sorting BiFunction isSortableAttribute = (exp, lpp) -> lpp.isPushableFieldAttribute(exp) // TODO: https://github.com/elastic/elasticsearch/issues/120219 - || (exp instanceof MetadataAttribute ma && MetadataAttribute.SCORE.equals(ma.name())); + || MetadataAttribute.isScoreAttribute(exp); return orders.stream().allMatch(o -> isSortableAttribute.apply(o.child(), lucenePushdownPredicates)); } @@ -209,7 +209,7 @@ private static List buildFieldSorts(List orders) { for (Order o : orders) { if (o.child() instanceof FieldAttribute fa) { sorts.add(new EsQueryExec.FieldSort(fa.exactAttribute(), o.direction(), o.nullsPosition())); - } else if (o.child() instanceof MetadataAttribute ma && MetadataAttribute.SCORE.equals(ma.name())) { + } else if (MetadataAttribute.isScoreAttribute(o.child())) { sorts.add(new EsQueryExec.ScoreSort(o.direction())); } else { assert false : "unexpected ordering on expression type " + o.child().getClass(); 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 c4936af94ccca..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' @@ -154,6 +155,7 @@ LIMIT MV_EXPAND RENAME ROW +SAMPLE SHOW SORT STATS @@ -294,6 +296,7 @@ LIMIT MV_EXPAND RENAME ROW +SAMPLE SHOW SORT STATS @@ -550,4 +553,4 @@ CLOSING_METRICS_MODE CHANGE_POINT_MODE atn: -[4, 0, 138, 1813, 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, 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, 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, 25, 1, 26, 4, 26, 746, 8, 26, 11, 26, 12, 26, 747, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 756, 8, 27, 10, 27, 12, 27, 759, 9, 27, 1, 27, 3, 27, 762, 8, 27, 1, 27, 3, 27, 765, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 774, 8, 28, 10, 28, 12, 28, 777, 9, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 4, 29, 785, 8, 29, 11, 29, 12, 29, 786, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 806, 8, 35, 1, 35, 4, 35, 809, 8, 35, 11, 35, 12, 35, 810, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 820, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 827, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 832, 8, 41, 10, 41, 12, 41, 835, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 843, 8, 41, 10, 41, 12, 41, 846, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 853, 8, 41, 1, 41, 3, 41, 856, 8, 41, 3, 41, 858, 8, 41, 1, 42, 4, 42, 861, 8, 42, 11, 42, 12, 42, 862, 1, 43, 4, 43, 866, 8, 43, 11, 43, 12, 43, 867, 1, 43, 1, 43, 5, 43, 872, 8, 43, 10, 43, 12, 43, 875, 9, 43, 1, 43, 1, 43, 4, 43, 879, 8, 43, 11, 43, 12, 43, 880, 1, 43, 4, 43, 884, 8, 43, 11, 43, 12, 43, 885, 1, 43, 1, 43, 5, 43, 890, 8, 43, 10, 43, 12, 43, 893, 9, 43, 3, 43, 895, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 4, 43, 901, 8, 43, 11, 43, 12, 43, 902, 1, 43, 1, 43, 3, 43, 907, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 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, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1050, 8, 86, 1, 86, 5, 86, 1053, 8, 86, 10, 86, 12, 86, 1056, 9, 86, 1, 86, 1, 86, 4, 86, 1060, 8, 86, 11, 86, 12, 86, 1061, 3, 86, 1064, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1069, 8, 87, 1, 87, 5, 87, 1072, 8, 87, 10, 87, 12, 87, 1075, 9, 87, 1, 87, 1, 87, 4, 87, 1079, 8, 87, 11, 87, 12, 87, 1080, 3, 87, 1083, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 5, 90, 1097, 8, 90, 10, 90, 12, 90, 1100, 9, 90, 1, 90, 1, 90, 3, 90, 1104, 8, 90, 1, 90, 4, 90, 1107, 8, 90, 11, 90, 12, 90, 1108, 3, 90, 1111, 8, 90, 1, 91, 1, 91, 4, 91, 1115, 8, 91, 11, 91, 12, 91, 1116, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 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, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 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, 101, 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, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1198, 8, 109, 1, 110, 4, 110, 1201, 8, 110, 11, 110, 12, 110, 1202, 1, 111, 1, 111, 1, 111, 1, 111, 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, 116, 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, 3, 123, 1258, 8, 123, 1, 124, 1, 124, 3, 124, 1262, 8, 124, 1, 124, 5, 124, 1265, 8, 124, 10, 124, 12, 124, 1268, 9, 124, 1, 124, 1, 124, 3, 124, 1272, 8, 124, 1, 124, 4, 124, 1275, 8, 124, 11, 124, 12, 124, 1276, 3, 124, 1279, 8, 124, 1, 125, 1, 125, 4, 125, 1283, 8, 125, 11, 125, 12, 125, 1284, 1, 126, 1, 126, 1, 126, 1, 126, 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, 129, 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, 138, 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, 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, 147, 4, 147, 1374, 8, 147, 11, 147, 12, 147, 1375, 1, 147, 1, 147, 3, 147, 1380, 8, 147, 1, 147, 4, 147, 1383, 8, 147, 11, 147, 12, 147, 1384, 1, 148, 1, 148, 1, 148, 1, 148, 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, 152, 1, 152, 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, 166, 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, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 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, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 4, 184, 1542, 8, 184, 11, 184, 12, 184, 1543, 1, 185, 1, 185, 1, 185, 1, 185, 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, 188, 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, 192, 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, 198, 1, 198, 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, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 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, 218, 1, 219, 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, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 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, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 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, 234, 1, 234, 1, 234, 1, 234, 1, 234, 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, 2, 775, 844, 0, 244, 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, 0, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 32, 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, 0, 189, 76, 191, 77, 193, 78, 195, 79, 197, 80, 199, 0, 201, 81, 203, 82, 205, 83, 207, 84, 209, 0, 211, 0, 213, 85, 215, 86, 217, 87, 219, 0, 221, 0, 223, 0, 225, 0, 227, 0, 229, 0, 231, 0, 233, 88, 235, 0, 237, 89, 239, 0, 241, 0, 243, 90, 245, 91, 247, 92, 249, 0, 251, 0, 253, 0, 255, 0, 257, 0, 259, 0, 261, 0, 263, 0, 265, 0, 267, 93, 269, 94, 271, 95, 273, 96, 275, 0, 277, 0, 279, 0, 281, 0, 283, 0, 285, 0, 287, 0, 289, 0, 291, 97, 293, 0, 295, 98, 297, 99, 299, 100, 301, 0, 303, 0, 305, 0, 307, 0, 309, 0, 311, 101, 313, 0, 315, 102, 317, 103, 319, 104, 321, 0, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 105, 345, 106, 347, 107, 349, 0, 351, 0, 353, 0, 355, 0, 357, 0, 359, 0, 361, 0, 363, 0, 365, 108, 367, 109, 369, 110, 371, 0, 373, 111, 375, 112, 377, 113, 379, 114, 381, 0, 383, 0, 385, 115, 387, 116, 389, 117, 391, 118, 393, 0, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 119, 409, 120, 411, 121, 413, 0, 415, 0, 417, 0, 419, 0, 421, 122, 423, 123, 425, 124, 427, 0, 429, 125, 431, 0, 433, 0, 435, 126, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 127, 449, 128, 451, 129, 453, 0, 455, 0, 457, 0, 459, 130, 461, 131, 463, 132, 465, 0, 467, 0, 469, 0, 471, 133, 473, 134, 475, 135, 477, 0, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 0, 497, 0, 499, 136, 501, 137, 503, 138, 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, 1843, 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, 1, 77, 1, 0, 0, 0, 1, 99, 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, 201, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 1, 207, 1, 0, 0, 0, 2, 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, 3, 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, 237, 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, 4, 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, 267, 1, 0, 0, 0, 4, 269, 1, 0, 0, 0, 4, 271, 1, 0, 0, 0, 4, 273, 1, 0, 0, 0, 5, 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, 6, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 305, 1, 0, 0, 0, 6, 307, 1, 0, 0, 0, 6, 311, 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, 7, 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, 8, 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, 9, 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, 10, 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, 11, 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, 12, 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, 13, 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, 14, 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, 15, 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, 16, 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, 17, 505, 1, 0, 0, 0, 19, 518, 1, 0, 0, 0, 21, 528, 1, 0, 0, 0, 23, 535, 1, 0, 0, 0, 25, 544, 1, 0, 0, 0, 27, 551, 1, 0, 0, 0, 29, 561, 1, 0, 0, 0, 31, 568, 1, 0, 0, 0, 33, 575, 1, 0, 0, 0, 35, 582, 1, 0, 0, 0, 37, 590, 1, 0, 0, 0, 39, 602, 1, 0, 0, 0, 41, 611, 1, 0, 0, 0, 43, 617, 1, 0, 0, 0, 45, 624, 1, 0, 0, 0, 47, 631, 1, 0, 0, 0, 49, 639, 1, 0, 0, 0, 51, 647, 1, 0, 0, 0, 53, 656, 1, 0, 0, 0, 55, 671, 1, 0, 0, 0, 57, 686, 1, 0, 0, 0, 59, 698, 1, 0, 0, 0, 61, 709, 1, 0, 0, 0, 63, 719, 1, 0, 0, 0, 65, 727, 1, 0, 0, 0, 67, 735, 1, 0, 0, 0, 69, 745, 1, 0, 0, 0, 71, 751, 1, 0, 0, 0, 73, 768, 1, 0, 0, 0, 75, 784, 1, 0, 0, 0, 77, 790, 1, 0, 0, 0, 79, 794, 1, 0, 0, 0, 81, 796, 1, 0, 0, 0, 83, 798, 1, 0, 0, 0, 85, 801, 1, 0, 0, 0, 87, 803, 1, 0, 0, 0, 89, 812, 1, 0, 0, 0, 91, 814, 1, 0, 0, 0, 93, 819, 1, 0, 0, 0, 95, 821, 1, 0, 0, 0, 97, 826, 1, 0, 0, 0, 99, 857, 1, 0, 0, 0, 101, 860, 1, 0, 0, 0, 103, 906, 1, 0, 0, 0, 105, 908, 1, 0, 0, 0, 107, 912, 1, 0, 0, 0, 109, 916, 1, 0, 0, 0, 111, 918, 1, 0, 0, 0, 113, 921, 1, 0, 0, 0, 115, 924, 1, 0, 0, 0, 117, 926, 1, 0, 0, 0, 119, 928, 1, 0, 0, 0, 121, 933, 1, 0, 0, 0, 123, 935, 1, 0, 0, 0, 125, 941, 1, 0, 0, 0, 127, 947, 1, 0, 0, 0, 129, 950, 1, 0, 0, 0, 131, 953, 1, 0, 0, 0, 133, 958, 1, 0, 0, 0, 135, 963, 1, 0, 0, 0, 137, 965, 1, 0, 0, 0, 139, 969, 1, 0, 0, 0, 141, 974, 1, 0, 0, 0, 143, 980, 1, 0, 0, 0, 145, 983, 1, 0, 0, 0, 147, 986, 1, 0, 0, 0, 149, 988, 1, 0, 0, 0, 151, 994, 1, 0, 0, 0, 153, 996, 1, 0, 0, 0, 155, 1001, 1, 0, 0, 0, 157, 1006, 1, 0, 0, 0, 159, 1009, 1, 0, 0, 0, 161, 1012, 1, 0, 0, 0, 163, 1015, 1, 0, 0, 0, 165, 1017, 1, 0, 0, 0, 167, 1020, 1, 0, 0, 0, 169, 1022, 1, 0, 0, 0, 171, 1025, 1, 0, 0, 0, 173, 1027, 1, 0, 0, 0, 175, 1029, 1, 0, 0, 0, 177, 1031, 1, 0, 0, 0, 179, 1033, 1, 0, 0, 0, 181, 1035, 1, 0, 0, 0, 183, 1037, 1, 0, 0, 0, 185, 1039, 1, 0, 0, 0, 187, 1042, 1, 0, 0, 0, 189, 1063, 1, 0, 0, 0, 191, 1082, 1, 0, 0, 0, 193, 1084, 1, 0, 0, 0, 195, 1089, 1, 0, 0, 0, 197, 1110, 1, 0, 0, 0, 199, 1112, 1, 0, 0, 0, 201, 1120, 1, 0, 0, 0, 203, 1122, 1, 0, 0, 0, 205, 1126, 1, 0, 0, 0, 207, 1130, 1, 0, 0, 0, 209, 1134, 1, 0, 0, 0, 211, 1139, 1, 0, 0, 0, 213, 1144, 1, 0, 0, 0, 215, 1148, 1, 0, 0, 0, 217, 1152, 1, 0, 0, 0, 219, 1156, 1, 0, 0, 0, 221, 1161, 1, 0, 0, 0, 223, 1165, 1, 0, 0, 0, 225, 1169, 1, 0, 0, 0, 227, 1173, 1, 0, 0, 0, 229, 1177, 1, 0, 0, 0, 231, 1181, 1, 0, 0, 0, 233, 1185, 1, 0, 0, 0, 235, 1197, 1, 0, 0, 0, 237, 1200, 1, 0, 0, 0, 239, 1204, 1, 0, 0, 0, 241, 1208, 1, 0, 0, 0, 243, 1212, 1, 0, 0, 0, 245, 1216, 1, 0, 0, 0, 247, 1220, 1, 0, 0, 0, 249, 1224, 1, 0, 0, 0, 251, 1229, 1, 0, 0, 0, 253, 1233, 1, 0, 0, 0, 255, 1237, 1, 0, 0, 0, 257, 1241, 1, 0, 0, 0, 259, 1245, 1, 0, 0, 0, 261, 1249, 1, 0, 0, 0, 263, 1257, 1, 0, 0, 0, 265, 1278, 1, 0, 0, 0, 267, 1282, 1, 0, 0, 0, 269, 1286, 1, 0, 0, 0, 271, 1290, 1, 0, 0, 0, 273, 1294, 1, 0, 0, 0, 275, 1298, 1, 0, 0, 0, 277, 1303, 1, 0, 0, 0, 279, 1307, 1, 0, 0, 0, 281, 1311, 1, 0, 0, 0, 283, 1315, 1, 0, 0, 0, 285, 1319, 1, 0, 0, 0, 287, 1323, 1, 0, 0, 0, 289, 1327, 1, 0, 0, 0, 291, 1331, 1, 0, 0, 0, 293, 1334, 1, 0, 0, 0, 295, 1338, 1, 0, 0, 0, 297, 1342, 1, 0, 0, 0, 299, 1346, 1, 0, 0, 0, 301, 1350, 1, 0, 0, 0, 303, 1355, 1, 0, 0, 0, 305, 1360, 1, 0, 0, 0, 307, 1365, 1, 0, 0, 0, 309, 1370, 1, 0, 0, 0, 311, 1379, 1, 0, 0, 0, 313, 1386, 1, 0, 0, 0, 315, 1390, 1, 0, 0, 0, 317, 1394, 1, 0, 0, 0, 319, 1398, 1, 0, 0, 0, 321, 1402, 1, 0, 0, 0, 323, 1408, 1, 0, 0, 0, 325, 1412, 1, 0, 0, 0, 327, 1416, 1, 0, 0, 0, 329, 1420, 1, 0, 0, 0, 331, 1424, 1, 0, 0, 0, 333, 1428, 1, 0, 0, 0, 335, 1432, 1, 0, 0, 0, 337, 1436, 1, 0, 0, 0, 339, 1440, 1, 0, 0, 0, 341, 1444, 1, 0, 0, 0, 343, 1448, 1, 0, 0, 0, 345, 1452, 1, 0, 0, 0, 347, 1456, 1, 0, 0, 0, 349, 1460, 1, 0, 0, 0, 351, 1465, 1, 0, 0, 0, 353, 1469, 1, 0, 0, 0, 355, 1473, 1, 0, 0, 0, 357, 1477, 1, 0, 0, 0, 359, 1481, 1, 0, 0, 0, 361, 1485, 1, 0, 0, 0, 363, 1489, 1, 0, 0, 0, 365, 1493, 1, 0, 0, 0, 367, 1497, 1, 0, 0, 0, 369, 1501, 1, 0, 0, 0, 371, 1505, 1, 0, 0, 0, 373, 1510, 1, 0, 0, 0, 375, 1515, 1, 0, 0, 0, 377, 1519, 1, 0, 0, 0, 379, 1523, 1, 0, 0, 0, 381, 1527, 1, 0, 0, 0, 383, 1532, 1, 0, 0, 0, 385, 1541, 1, 0, 0, 0, 387, 1545, 1, 0, 0, 0, 389, 1549, 1, 0, 0, 0, 391, 1553, 1, 0, 0, 0, 393, 1557, 1, 0, 0, 0, 395, 1562, 1, 0, 0, 0, 397, 1566, 1, 0, 0, 0, 399, 1570, 1, 0, 0, 0, 401, 1574, 1, 0, 0, 0, 403, 1579, 1, 0, 0, 0, 405, 1583, 1, 0, 0, 0, 407, 1587, 1, 0, 0, 0, 409, 1591, 1, 0, 0, 0, 411, 1595, 1, 0, 0, 0, 413, 1599, 1, 0, 0, 0, 415, 1605, 1, 0, 0, 0, 417, 1609, 1, 0, 0, 0, 419, 1613, 1, 0, 0, 0, 421, 1617, 1, 0, 0, 0, 423, 1621, 1, 0, 0, 0, 425, 1625, 1, 0, 0, 0, 427, 1629, 1, 0, 0, 0, 429, 1634, 1, 0, 0, 0, 431, 1639, 1, 0, 0, 0, 433, 1643, 1, 0, 0, 0, 435, 1649, 1, 0, 0, 0, 437, 1658, 1, 0, 0, 0, 439, 1662, 1, 0, 0, 0, 441, 1666, 1, 0, 0, 0, 443, 1670, 1, 0, 0, 0, 445, 1674, 1, 0, 0, 0, 447, 1678, 1, 0, 0, 0, 449, 1682, 1, 0, 0, 0, 451, 1686, 1, 0, 0, 0, 453, 1690, 1, 0, 0, 0, 455, 1695, 1, 0, 0, 0, 457, 1701, 1, 0, 0, 0, 459, 1707, 1, 0, 0, 0, 461, 1711, 1, 0, 0, 0, 463, 1715, 1, 0, 0, 0, 465, 1719, 1, 0, 0, 0, 467, 1725, 1, 0, 0, 0, 469, 1731, 1, 0, 0, 0, 471, 1737, 1, 0, 0, 0, 473, 1741, 1, 0, 0, 0, 475, 1745, 1, 0, 0, 0, 477, 1749, 1, 0, 0, 0, 479, 1755, 1, 0, 0, 0, 481, 1761, 1, 0, 0, 0, 483, 1767, 1, 0, 0, 0, 485, 1772, 1, 0, 0, 0, 487, 1777, 1, 0, 0, 0, 489, 1781, 1, 0, 0, 0, 491, 1785, 1, 0, 0, 0, 493, 1789, 1, 0, 0, 0, 495, 1793, 1, 0, 0, 0, 497, 1797, 1, 0, 0, 0, 499, 1801, 1, 0, 0, 0, 501, 1805, 1, 0, 0, 0, 503, 1809, 1, 0, 0, 0, 505, 506, 7, 0, 0, 0, 506, 507, 7, 1, 0, 0, 507, 508, 7, 2, 0, 0, 508, 509, 7, 3, 0, 0, 509, 510, 7, 4, 0, 0, 510, 511, 7, 5, 0, 0, 511, 512, 7, 6, 0, 0, 512, 513, 7, 7, 0, 0, 513, 514, 7, 1, 0, 0, 514, 515, 7, 8, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 6, 0, 0, 0, 517, 18, 1, 0, 0, 0, 518, 519, 7, 9, 0, 0, 519, 520, 7, 7, 0, 0, 520, 521, 7, 10, 0, 0, 521, 522, 7, 10, 0, 0, 522, 523, 7, 5, 0, 0, 523, 524, 7, 0, 0, 0, 524, 525, 7, 6, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 6, 1, 0, 0, 527, 20, 1, 0, 0, 0, 528, 529, 7, 9, 0, 0, 529, 530, 7, 11, 0, 0, 530, 531, 7, 1, 0, 0, 531, 532, 7, 3, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 6, 2, 1, 0, 534, 22, 1, 0, 0, 0, 535, 536, 7, 5, 0, 0, 536, 537, 7, 8, 0, 0, 537, 538, 7, 11, 0, 0, 538, 539, 7, 7, 0, 0, 539, 540, 7, 0, 0, 0, 540, 541, 7, 12, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 6, 3, 2, 0, 543, 24, 1, 0, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 7, 13, 0, 0, 546, 547, 7, 14, 0, 0, 547, 548, 7, 4, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 6, 4, 0, 0, 550, 26, 1, 0, 0, 0, 551, 552, 7, 5, 0, 0, 552, 553, 7, 15, 0, 0, 553, 554, 7, 3, 0, 0, 554, 555, 7, 4, 0, 0, 555, 556, 7, 14, 0, 0, 556, 557, 7, 7, 0, 0, 557, 558, 7, 8, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 6, 5, 3, 0, 560, 28, 1, 0, 0, 0, 561, 562, 7, 16, 0, 0, 562, 563, 7, 11, 0, 0, 563, 564, 7, 1, 0, 0, 564, 565, 7, 2, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 6, 6, 4, 0, 567, 30, 1, 0, 0, 0, 568, 569, 7, 17, 0, 0, 569, 570, 7, 11, 0, 0, 570, 571, 7, 1, 0, 0, 571, 572, 7, 18, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 6, 7, 0, 0, 574, 32, 1, 0, 0, 0, 575, 576, 7, 18, 0, 0, 576, 577, 7, 5, 0, 0, 577, 578, 7, 5, 0, 0, 578, 579, 7, 3, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 6, 8, 1, 0, 581, 34, 1, 0, 0, 0, 582, 583, 7, 4, 0, 0, 583, 584, 7, 7, 0, 0, 584, 585, 7, 2, 0, 0, 585, 586, 7, 7, 0, 0, 586, 587, 7, 6, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 6, 9, 0, 0, 589, 36, 1, 0, 0, 0, 590, 591, 7, 2, 0, 0, 591, 592, 7, 13, 0, 0, 592, 593, 5, 95, 0, 0, 593, 594, 7, 5, 0, 0, 594, 595, 7, 15, 0, 0, 595, 596, 7, 3, 0, 0, 596, 597, 7, 14, 0, 0, 597, 598, 7, 8, 0, 0, 598, 599, 7, 9, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 6, 10, 5, 0, 601, 38, 1, 0, 0, 0, 602, 603, 7, 11, 0, 0, 603, 604, 7, 5, 0, 0, 604, 605, 7, 8, 0, 0, 605, 606, 7, 14, 0, 0, 606, 607, 7, 2, 0, 0, 607, 608, 7, 5, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 6, 11, 6, 0, 610, 40, 1, 0, 0, 0, 611, 612, 7, 11, 0, 0, 612, 613, 7, 1, 0, 0, 613, 614, 7, 19, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 6, 12, 0, 0, 616, 42, 1, 0, 0, 0, 617, 618, 7, 10, 0, 0, 618, 619, 7, 12, 0, 0, 619, 620, 7, 1, 0, 0, 620, 621, 7, 19, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 6, 13, 7, 0, 623, 44, 1, 0, 0, 0, 624, 625, 7, 10, 0, 0, 625, 626, 7, 1, 0, 0, 626, 627, 7, 11, 0, 0, 627, 628, 7, 6, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 6, 14, 0, 0, 630, 46, 1, 0, 0, 0, 631, 632, 7, 10, 0, 0, 632, 633, 7, 6, 0, 0, 633, 634, 7, 14, 0, 0, 634, 635, 7, 6, 0, 0, 635, 636, 7, 10, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 6, 15, 0, 0, 638, 48, 1, 0, 0, 0, 639, 640, 7, 19, 0, 0, 640, 641, 7, 12, 0, 0, 641, 642, 7, 5, 0, 0, 642, 643, 7, 11, 0, 0, 643, 644, 7, 5, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 6, 16, 0, 0, 646, 50, 1, 0, 0, 0, 647, 648, 7, 4, 0, 0, 648, 649, 7, 1, 0, 0, 649, 650, 7, 1, 0, 0, 650, 651, 7, 18, 0, 0, 651, 652, 7, 20, 0, 0, 652, 653, 7, 3, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 6, 17, 8, 0, 655, 52, 1, 0, 0, 0, 656, 657, 7, 0, 0, 0, 657, 658, 7, 12, 0, 0, 658, 659, 7, 14, 0, 0, 659, 660, 7, 8, 0, 0, 660, 661, 7, 17, 0, 0, 661, 662, 7, 5, 0, 0, 662, 663, 5, 95, 0, 0, 663, 664, 7, 3, 0, 0, 664, 665, 7, 1, 0, 0, 665, 666, 7, 7, 0, 0, 666, 667, 7, 8, 0, 0, 667, 668, 7, 6, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 6, 18, 9, 0, 670, 54, 1, 0, 0, 0, 671, 672, 4, 19, 0, 0, 672, 673, 7, 7, 0, 0, 673, 674, 7, 8, 0, 0, 674, 675, 7, 4, 0, 0, 675, 676, 7, 7, 0, 0, 676, 677, 7, 8, 0, 0, 677, 678, 7, 5, 0, 0, 678, 679, 7, 10, 0, 0, 679, 680, 7, 6, 0, 0, 680, 681, 7, 14, 0, 0, 681, 682, 7, 6, 0, 0, 682, 683, 7, 10, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 6, 19, 0, 0, 685, 56, 1, 0, 0, 0, 686, 687, 4, 20, 1, 0, 687, 688, 7, 4, 0, 0, 688, 689, 7, 1, 0, 0, 689, 690, 7, 1, 0, 0, 690, 691, 7, 18, 0, 0, 691, 692, 7, 20, 0, 0, 692, 693, 7, 3, 0, 0, 693, 694, 5, 95, 0, 0, 694, 695, 5, 128020, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 6, 20, 10, 0, 697, 58, 1, 0, 0, 0, 698, 699, 4, 21, 2, 0, 699, 700, 7, 2, 0, 0, 700, 701, 7, 5, 0, 0, 701, 702, 7, 6, 0, 0, 702, 703, 7, 11, 0, 0, 703, 704, 7, 7, 0, 0, 704, 705, 7, 0, 0, 0, 705, 706, 7, 10, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 6, 21, 11, 0, 708, 60, 1, 0, 0, 0, 709, 710, 4, 22, 3, 0, 710, 711, 7, 11, 0, 0, 711, 712, 7, 5, 0, 0, 712, 713, 7, 11, 0, 0, 713, 714, 7, 14, 0, 0, 714, 715, 7, 8, 0, 0, 715, 716, 7, 18, 0, 0, 716, 717, 1, 0, 0, 0, 717, 718, 6, 22, 0, 0, 718, 62, 1, 0, 0, 0, 719, 720, 4, 23, 4, 0, 720, 721, 7, 16, 0, 0, 721, 722, 7, 20, 0, 0, 722, 723, 7, 4, 0, 0, 723, 724, 7, 4, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 6, 23, 8, 0, 726, 64, 1, 0, 0, 0, 727, 728, 4, 24, 5, 0, 728, 729, 7, 4, 0, 0, 729, 730, 7, 5, 0, 0, 730, 731, 7, 16, 0, 0, 731, 732, 7, 6, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 6, 24, 8, 0, 734, 66, 1, 0, 0, 0, 735, 736, 4, 25, 6, 0, 736, 737, 7, 11, 0, 0, 737, 738, 7, 7, 0, 0, 738, 739, 7, 17, 0, 0, 739, 740, 7, 12, 0, 0, 740, 741, 7, 6, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 6, 25, 8, 0, 743, 68, 1, 0, 0, 0, 744, 746, 8, 21, 0, 0, 745, 744, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 6, 26, 0, 0, 750, 70, 1, 0, 0, 0, 751, 752, 5, 47, 0, 0, 752, 753, 5, 47, 0, 0, 753, 757, 1, 0, 0, 0, 754, 756, 8, 22, 0, 0, 755, 754, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 760, 762, 5, 13, 0, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 764, 1, 0, 0, 0, 763, 765, 5, 10, 0, 0, 764, 763, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 6, 27, 12, 0, 767, 72, 1, 0, 0, 0, 768, 769, 5, 47, 0, 0, 769, 770, 5, 42, 0, 0, 770, 775, 1, 0, 0, 0, 771, 774, 3, 73, 28, 0, 772, 774, 9, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 772, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 778, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 779, 5, 42, 0, 0, 779, 780, 5, 47, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 6, 28, 12, 0, 782, 74, 1, 0, 0, 0, 783, 785, 7, 23, 0, 0, 784, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 6, 29, 12, 0, 789, 76, 1, 0, 0, 0, 790, 791, 5, 124, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 6, 30, 13, 0, 793, 78, 1, 0, 0, 0, 794, 795, 7, 24, 0, 0, 795, 80, 1, 0, 0, 0, 796, 797, 7, 25, 0, 0, 797, 82, 1, 0, 0, 0, 798, 799, 5, 92, 0, 0, 799, 800, 7, 26, 0, 0, 800, 84, 1, 0, 0, 0, 801, 802, 8, 27, 0, 0, 802, 86, 1, 0, 0, 0, 803, 805, 7, 5, 0, 0, 804, 806, 7, 28, 0, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, 3, 79, 31, 0, 808, 807, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 808, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 88, 1, 0, 0, 0, 812, 813, 5, 64, 0, 0, 813, 90, 1, 0, 0, 0, 814, 815, 5, 96, 0, 0, 815, 92, 1, 0, 0, 0, 816, 820, 8, 29, 0, 0, 817, 818, 5, 96, 0, 0, 818, 820, 5, 96, 0, 0, 819, 816, 1, 0, 0, 0, 819, 817, 1, 0, 0, 0, 820, 94, 1, 0, 0, 0, 821, 822, 5, 95, 0, 0, 822, 96, 1, 0, 0, 0, 823, 827, 3, 81, 32, 0, 824, 827, 3, 79, 31, 0, 825, 827, 3, 95, 39, 0, 826, 823, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 825, 1, 0, 0, 0, 827, 98, 1, 0, 0, 0, 828, 833, 5, 34, 0, 0, 829, 832, 3, 83, 33, 0, 830, 832, 3, 85, 34, 0, 831, 829, 1, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 836, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 858, 5, 34, 0, 0, 837, 838, 5, 34, 0, 0, 838, 839, 5, 34, 0, 0, 839, 840, 5, 34, 0, 0, 840, 844, 1, 0, 0, 0, 841, 843, 8, 22, 0, 0, 842, 841, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 847, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 847, 848, 5, 34, 0, 0, 848, 849, 5, 34, 0, 0, 849, 850, 5, 34, 0, 0, 850, 852, 1, 0, 0, 0, 851, 853, 5, 34, 0, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 855, 1, 0, 0, 0, 854, 856, 5, 34, 0, 0, 855, 854, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 858, 1, 0, 0, 0, 857, 828, 1, 0, 0, 0, 857, 837, 1, 0, 0, 0, 858, 100, 1, 0, 0, 0, 859, 861, 3, 79, 31, 0, 860, 859, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 102, 1, 0, 0, 0, 864, 866, 3, 79, 31, 0, 865, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 873, 3, 121, 52, 0, 870, 872, 3, 79, 31, 0, 871, 870, 1, 0, 0, 0, 872, 875, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 907, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 876, 878, 3, 121, 52, 0, 877, 879, 3, 79, 31, 0, 878, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 907, 1, 0, 0, 0, 882, 884, 3, 79, 31, 0, 883, 882, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 894, 1, 0, 0, 0, 887, 891, 3, 121, 52, 0, 888, 890, 3, 79, 31, 0, 889, 888, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 895, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 894, 887, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 3, 87, 35, 0, 897, 907, 1, 0, 0, 0, 898, 900, 3, 121, 52, 0, 899, 901, 3, 79, 31, 0, 900, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 3, 87, 35, 0, 905, 907, 1, 0, 0, 0, 906, 865, 1, 0, 0, 0, 906, 876, 1, 0, 0, 0, 906, 883, 1, 0, 0, 0, 906, 898, 1, 0, 0, 0, 907, 104, 1, 0, 0, 0, 908, 909, 7, 14, 0, 0, 909, 910, 7, 8, 0, 0, 910, 911, 7, 9, 0, 0, 911, 106, 1, 0, 0, 0, 912, 913, 7, 14, 0, 0, 913, 914, 7, 10, 0, 0, 914, 915, 7, 0, 0, 0, 915, 108, 1, 0, 0, 0, 916, 917, 5, 61, 0, 0, 917, 110, 1, 0, 0, 0, 918, 919, 7, 30, 0, 0, 919, 920, 7, 31, 0, 0, 920, 112, 1, 0, 0, 0, 921, 922, 5, 58, 0, 0, 922, 923, 5, 58, 0, 0, 923, 114, 1, 0, 0, 0, 924, 925, 5, 58, 0, 0, 925, 116, 1, 0, 0, 0, 926, 927, 5, 44, 0, 0, 927, 118, 1, 0, 0, 0, 928, 929, 7, 9, 0, 0, 929, 930, 7, 5, 0, 0, 930, 931, 7, 10, 0, 0, 931, 932, 7, 0, 0, 0, 932, 120, 1, 0, 0, 0, 933, 934, 5, 46, 0, 0, 934, 122, 1, 0, 0, 0, 935, 936, 7, 16, 0, 0, 936, 937, 7, 14, 0, 0, 937, 938, 7, 4, 0, 0, 938, 939, 7, 10, 0, 0, 939, 940, 7, 5, 0, 0, 940, 124, 1, 0, 0, 0, 941, 942, 7, 16, 0, 0, 942, 943, 7, 7, 0, 0, 943, 944, 7, 11, 0, 0, 944, 945, 7, 10, 0, 0, 945, 946, 7, 6, 0, 0, 946, 126, 1, 0, 0, 0, 947, 948, 7, 7, 0, 0, 948, 949, 7, 8, 0, 0, 949, 128, 1, 0, 0, 0, 950, 951, 7, 7, 0, 0, 951, 952, 7, 10, 0, 0, 952, 130, 1, 0, 0, 0, 953, 954, 7, 4, 0, 0, 954, 955, 7, 14, 0, 0, 955, 956, 7, 10, 0, 0, 956, 957, 7, 6, 0, 0, 957, 132, 1, 0, 0, 0, 958, 959, 7, 4, 0, 0, 959, 960, 7, 7, 0, 0, 960, 961, 7, 18, 0, 0, 961, 962, 7, 5, 0, 0, 962, 134, 1, 0, 0, 0, 963, 964, 5, 40, 0, 0, 964, 136, 1, 0, 0, 0, 965, 966, 7, 8, 0, 0, 966, 967, 7, 1, 0, 0, 967, 968, 7, 6, 0, 0, 968, 138, 1, 0, 0, 0, 969, 970, 7, 8, 0, 0, 970, 971, 7, 20, 0, 0, 971, 972, 7, 4, 0, 0, 972, 973, 7, 4, 0, 0, 973, 140, 1, 0, 0, 0, 974, 975, 7, 8, 0, 0, 975, 976, 7, 20, 0, 0, 976, 977, 7, 4, 0, 0, 977, 978, 7, 4, 0, 0, 978, 979, 7, 10, 0, 0, 979, 142, 1, 0, 0, 0, 980, 981, 7, 1, 0, 0, 981, 982, 7, 8, 0, 0, 982, 144, 1, 0, 0, 0, 983, 984, 7, 1, 0, 0, 984, 985, 7, 11, 0, 0, 985, 146, 1, 0, 0, 0, 986, 987, 5, 63, 0, 0, 987, 148, 1, 0, 0, 0, 988, 989, 7, 11, 0, 0, 989, 990, 7, 4, 0, 0, 990, 991, 7, 7, 0, 0, 991, 992, 7, 18, 0, 0, 992, 993, 7, 5, 0, 0, 993, 150, 1, 0, 0, 0, 994, 995, 5, 41, 0, 0, 995, 152, 1, 0, 0, 0, 996, 997, 7, 6, 0, 0, 997, 998, 7, 11, 0, 0, 998, 999, 7, 20, 0, 0, 999, 1000, 7, 5, 0, 0, 1000, 154, 1, 0, 0, 0, 1001, 1002, 7, 19, 0, 0, 1002, 1003, 7, 7, 0, 0, 1003, 1004, 7, 6, 0, 0, 1004, 1005, 7, 12, 0, 0, 1005, 156, 1, 0, 0, 0, 1006, 1007, 5, 61, 0, 0, 1007, 1008, 5, 61, 0, 0, 1008, 158, 1, 0, 0, 0, 1009, 1010, 5, 61, 0, 0, 1010, 1011, 5, 126, 0, 0, 1011, 160, 1, 0, 0, 0, 1012, 1013, 5, 33, 0, 0, 1013, 1014, 5, 61, 0, 0, 1014, 162, 1, 0, 0, 0, 1015, 1016, 5, 60, 0, 0, 1016, 164, 1, 0, 0, 0, 1017, 1018, 5, 60, 0, 0, 1018, 1019, 5, 61, 0, 0, 1019, 166, 1, 0, 0, 0, 1020, 1021, 5, 62, 0, 0, 1021, 168, 1, 0, 0, 0, 1022, 1023, 5, 62, 0, 0, 1023, 1024, 5, 61, 0, 0, 1024, 170, 1, 0, 0, 0, 1025, 1026, 5, 43, 0, 0, 1026, 172, 1, 0, 0, 0, 1027, 1028, 5, 45, 0, 0, 1028, 174, 1, 0, 0, 0, 1029, 1030, 5, 42, 0, 0, 1030, 176, 1, 0, 0, 0, 1031, 1032, 5, 47, 0, 0, 1032, 178, 1, 0, 0, 0, 1033, 1034, 5, 37, 0, 0, 1034, 180, 1, 0, 0, 0, 1035, 1036, 5, 123, 0, 0, 1036, 182, 1, 0, 0, 0, 1037, 1038, 5, 125, 0, 0, 1038, 184, 1, 0, 0, 0, 1039, 1040, 5, 63, 0, 0, 1040, 1041, 5, 63, 0, 0, 1041, 186, 1, 0, 0, 0, 1042, 1043, 3, 49, 16, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 6, 85, 14, 0, 1045, 188, 1, 0, 0, 0, 1046, 1049, 3, 147, 65, 0, 1047, 1050, 3, 81, 32, 0, 1048, 1050, 3, 95, 39, 0, 1049, 1047, 1, 0, 0, 0, 1049, 1048, 1, 0, 0, 0, 1050, 1054, 1, 0, 0, 0, 1051, 1053, 3, 97, 40, 0, 1052, 1051, 1, 0, 0, 0, 1053, 1056, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1064, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1059, 3, 147, 65, 0, 1058, 1060, 3, 79, 31, 0, 1059, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1046, 1, 0, 0, 0, 1063, 1057, 1, 0, 0, 0, 1064, 190, 1, 0, 0, 0, 1065, 1068, 3, 185, 84, 0, 1066, 1069, 3, 81, 32, 0, 1067, 1069, 3, 95, 39, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1073, 1, 0, 0, 0, 1070, 1072, 3, 97, 40, 0, 1071, 1070, 1, 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1083, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1078, 3, 185, 84, 0, 1077, 1079, 3, 79, 31, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1083, 1, 0, 0, 0, 1082, 1065, 1, 0, 0, 0, 1082, 1076, 1, 0, 0, 0, 1083, 192, 1, 0, 0, 0, 1084, 1085, 5, 91, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 6, 88, 0, 0, 1087, 1088, 6, 88, 0, 0, 1088, 194, 1, 0, 0, 0, 1089, 1090, 5, 93, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 6, 89, 13, 0, 1092, 1093, 6, 89, 13, 0, 1093, 196, 1, 0, 0, 0, 1094, 1098, 3, 81, 32, 0, 1095, 1097, 3, 97, 40, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1111, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1101, 1104, 3, 95, 39, 0, 1102, 1104, 3, 89, 36, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 3, 97, 40, 0, 1106, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1094, 1, 0, 0, 0, 1110, 1103, 1, 0, 0, 0, 1111, 198, 1, 0, 0, 0, 1112, 1114, 3, 91, 37, 0, 1113, 1115, 3, 93, 38, 0, 1114, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1114, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 3, 91, 37, 0, 1119, 200, 1, 0, 0, 0, 1120, 1121, 3, 199, 91, 0, 1121, 202, 1, 0, 0, 0, 1122, 1123, 3, 71, 27, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 6, 93, 12, 0, 1125, 204, 1, 0, 0, 0, 1126, 1127, 3, 73, 28, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 6, 94, 12, 0, 1129, 206, 1, 0, 0, 0, 1130, 1131, 3, 75, 29, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 6, 95, 12, 0, 1133, 208, 1, 0, 0, 0, 1134, 1135, 3, 193, 88, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 6, 96, 15, 0, 1137, 1138, 6, 96, 16, 0, 1138, 210, 1, 0, 0, 0, 1139, 1140, 3, 77, 30, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 6, 97, 17, 0, 1142, 1143, 6, 97, 13, 0, 1143, 212, 1, 0, 0, 0, 1144, 1145, 3, 75, 29, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1147, 6, 98, 12, 0, 1147, 214, 1, 0, 0, 0, 1148, 1149, 3, 71, 27, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 6, 99, 12, 0, 1151, 216, 1, 0, 0, 0, 1152, 1153, 3, 73, 28, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 6, 100, 12, 0, 1155, 218, 1, 0, 0, 0, 1156, 1157, 3, 77, 30, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 6, 101, 17, 0, 1159, 1160, 6, 101, 13, 0, 1160, 220, 1, 0, 0, 0, 1161, 1162, 3, 193, 88, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 6, 102, 15, 0, 1164, 222, 1, 0, 0, 0, 1165, 1166, 3, 195, 89, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 6, 103, 18, 0, 1168, 224, 1, 0, 0, 0, 1169, 1170, 3, 115, 49, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 6, 104, 19, 0, 1172, 226, 1, 0, 0, 0, 1173, 1174, 3, 113, 48, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 6, 105, 20, 0, 1176, 228, 1, 0, 0, 0, 1177, 1178, 3, 117, 50, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 6, 106, 21, 0, 1180, 230, 1, 0, 0, 0, 1181, 1182, 3, 109, 46, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 6, 107, 22, 0, 1184, 232, 1, 0, 0, 0, 1185, 1186, 7, 2, 0, 0, 1186, 1187, 7, 5, 0, 0, 1187, 1188, 7, 6, 0, 0, 1188, 1189, 7, 14, 0, 0, 1189, 1190, 7, 9, 0, 0, 1190, 1191, 7, 14, 0, 0, 1191, 1192, 7, 6, 0, 0, 1192, 1193, 7, 14, 0, 0, 1193, 234, 1, 0, 0, 0, 1194, 1198, 8, 32, 0, 0, 1195, 1196, 5, 47, 0, 0, 1196, 1198, 8, 33, 0, 0, 1197, 1194, 1, 0, 0, 0, 1197, 1195, 1, 0, 0, 0, 1198, 236, 1, 0, 0, 0, 1199, 1201, 3, 235, 109, 0, 1200, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 238, 1, 0, 0, 0, 1204, 1205, 3, 237, 110, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 6, 111, 23, 0, 1207, 240, 1, 0, 0, 0, 1208, 1209, 3, 99, 41, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 6, 112, 24, 0, 1211, 242, 1, 0, 0, 0, 1212, 1213, 3, 71, 27, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 6, 113, 12, 0, 1215, 244, 1, 0, 0, 0, 1216, 1217, 3, 73, 28, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 6, 114, 12, 0, 1219, 246, 1, 0, 0, 0, 1220, 1221, 3, 75, 29, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 6, 115, 12, 0, 1223, 248, 1, 0, 0, 0, 1224, 1225, 3, 77, 30, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 6, 116, 17, 0, 1227, 1228, 6, 116, 13, 0, 1228, 250, 1, 0, 0, 0, 1229, 1230, 3, 121, 52, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 6, 117, 25, 0, 1232, 252, 1, 0, 0, 0, 1233, 1234, 3, 117, 50, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 6, 118, 21, 0, 1236, 254, 1, 0, 0, 0, 1237, 1238, 3, 147, 65, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1240, 6, 119, 26, 0, 1240, 256, 1, 0, 0, 0, 1241, 1242, 3, 189, 86, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 6, 120, 27, 0, 1244, 258, 1, 0, 0, 0, 1245, 1246, 3, 185, 84, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 6, 121, 28, 0, 1248, 260, 1, 0, 0, 0, 1249, 1250, 3, 191, 87, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 6, 122, 29, 0, 1252, 262, 1, 0, 0, 0, 1253, 1258, 3, 81, 32, 0, 1254, 1258, 3, 79, 31, 0, 1255, 1258, 3, 95, 39, 0, 1256, 1258, 3, 175, 79, 0, 1257, 1253, 1, 0, 0, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 264, 1, 0, 0, 0, 1259, 1262, 3, 81, 32, 0, 1260, 1262, 3, 175, 79, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1266, 1, 0, 0, 0, 1263, 1265, 3, 263, 123, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1279, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1272, 3, 95, 39, 0, 1270, 1272, 3, 89, 36, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1275, 3, 263, 123, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1261, 1, 0, 0, 0, 1278, 1271, 1, 0, 0, 0, 1279, 266, 1, 0, 0, 0, 1280, 1283, 3, 265, 124, 0, 1281, 1283, 3, 199, 91, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 268, 1, 0, 0, 0, 1286, 1287, 3, 71, 27, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 6, 126, 12, 0, 1289, 270, 1, 0, 0, 0, 1290, 1291, 3, 73, 28, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1293, 6, 127, 12, 0, 1293, 272, 1, 0, 0, 0, 1294, 1295, 3, 75, 29, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 6, 128, 12, 0, 1297, 274, 1, 0, 0, 0, 1298, 1299, 3, 77, 30, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 6, 129, 17, 0, 1301, 1302, 6, 129, 13, 0, 1302, 276, 1, 0, 0, 0, 1303, 1304, 3, 109, 46, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 6, 130, 22, 0, 1306, 278, 1, 0, 0, 0, 1307, 1308, 3, 117, 50, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 6, 131, 21, 0, 1310, 280, 1, 0, 0, 0, 1311, 1312, 3, 121, 52, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 6, 132, 25, 0, 1314, 282, 1, 0, 0, 0, 1315, 1316, 3, 147, 65, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 6, 133, 26, 0, 1318, 284, 1, 0, 0, 0, 1319, 1320, 3, 189, 86, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 6, 134, 27, 0, 1322, 286, 1, 0, 0, 0, 1323, 1324, 3, 185, 84, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 6, 135, 28, 0, 1326, 288, 1, 0, 0, 0, 1327, 1328, 3, 191, 87, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1330, 6, 136, 29, 0, 1330, 290, 1, 0, 0, 0, 1331, 1332, 7, 14, 0, 0, 1332, 1333, 7, 10, 0, 0, 1333, 292, 1, 0, 0, 0, 1334, 1335, 3, 267, 125, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 6, 138, 30, 0, 1337, 294, 1, 0, 0, 0, 1338, 1339, 3, 71, 27, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 6, 139, 12, 0, 1341, 296, 1, 0, 0, 0, 1342, 1343, 3, 73, 28, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1345, 6, 140, 12, 0, 1345, 298, 1, 0, 0, 0, 1346, 1347, 3, 75, 29, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 6, 141, 12, 0, 1349, 300, 1, 0, 0, 0, 1350, 1351, 3, 77, 30, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 6, 142, 17, 0, 1353, 1354, 6, 142, 13, 0, 1354, 302, 1, 0, 0, 0, 1355, 1356, 3, 193, 88, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1358, 6, 143, 15, 0, 1358, 1359, 6, 143, 31, 0, 1359, 304, 1, 0, 0, 0, 1360, 1361, 3, 143, 63, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 6, 144, 32, 0, 1363, 1364, 6, 144, 33, 0, 1364, 306, 1, 0, 0, 0, 1365, 1366, 3, 155, 69, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 6, 145, 34, 0, 1368, 1369, 6, 145, 33, 0, 1369, 308, 1, 0, 0, 0, 1370, 1371, 8, 34, 0, 0, 1371, 310, 1, 0, 0, 0, 1372, 1374, 3, 309, 146, 0, 1373, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 3, 115, 49, 0, 1378, 1380, 1, 0, 0, 0, 1379, 1373, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 1, 0, 0, 0, 1381, 1383, 3, 309, 146, 0, 1382, 1381, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1382, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 312, 1, 0, 0, 0, 1386, 1387, 3, 311, 147, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 6, 148, 35, 0, 1389, 314, 1, 0, 0, 0, 1390, 1391, 3, 71, 27, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 6, 149, 12, 0, 1393, 316, 1, 0, 0, 0, 1394, 1395, 3, 73, 28, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1397, 6, 150, 12, 0, 1397, 318, 1, 0, 0, 0, 1398, 1399, 3, 75, 29, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 6, 151, 12, 0, 1401, 320, 1, 0, 0, 0, 1402, 1403, 3, 77, 30, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 6, 152, 17, 0, 1405, 1406, 6, 152, 13, 0, 1406, 1407, 6, 152, 13, 0, 1407, 322, 1, 0, 0, 0, 1408, 1409, 3, 109, 46, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1411, 6, 153, 22, 0, 1411, 324, 1, 0, 0, 0, 1412, 1413, 3, 117, 50, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 6, 154, 21, 0, 1415, 326, 1, 0, 0, 0, 1416, 1417, 3, 121, 52, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 6, 155, 25, 0, 1419, 328, 1, 0, 0, 0, 1420, 1421, 3, 155, 69, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 6, 156, 34, 0, 1423, 330, 1, 0, 0, 0, 1424, 1425, 3, 267, 125, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1427, 6, 157, 30, 0, 1427, 332, 1, 0, 0, 0, 1428, 1429, 3, 201, 92, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1431, 6, 158, 36, 0, 1431, 334, 1, 0, 0, 0, 1432, 1433, 3, 147, 65, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 6, 159, 26, 0, 1435, 336, 1, 0, 0, 0, 1436, 1437, 3, 189, 86, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 6, 160, 27, 0, 1439, 338, 1, 0, 0, 0, 1440, 1441, 3, 185, 84, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 6, 161, 28, 0, 1443, 340, 1, 0, 0, 0, 1444, 1445, 3, 191, 87, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 6, 162, 29, 0, 1447, 342, 1, 0, 0, 0, 1448, 1449, 3, 71, 27, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 163, 12, 0, 1451, 344, 1, 0, 0, 0, 1452, 1453, 3, 73, 28, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 164, 12, 0, 1455, 346, 1, 0, 0, 0, 1456, 1457, 3, 75, 29, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 6, 165, 12, 0, 1459, 348, 1, 0, 0, 0, 1460, 1461, 3, 77, 30, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 6, 166, 17, 0, 1463, 1464, 6, 166, 13, 0, 1464, 350, 1, 0, 0, 0, 1465, 1466, 3, 121, 52, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 6, 167, 25, 0, 1468, 352, 1, 0, 0, 0, 1469, 1470, 3, 147, 65, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 6, 168, 26, 0, 1472, 354, 1, 0, 0, 0, 1473, 1474, 3, 189, 86, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 6, 169, 27, 0, 1476, 356, 1, 0, 0, 0, 1477, 1478, 3, 185, 84, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 6, 170, 28, 0, 1480, 358, 1, 0, 0, 0, 1481, 1482, 3, 191, 87, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 6, 171, 29, 0, 1484, 360, 1, 0, 0, 0, 1485, 1486, 3, 201, 92, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 6, 172, 36, 0, 1488, 362, 1, 0, 0, 0, 1489, 1490, 3, 197, 90, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 173, 37, 0, 1492, 364, 1, 0, 0, 0, 1493, 1494, 3, 71, 27, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 174, 12, 0, 1496, 366, 1, 0, 0, 0, 1497, 1498, 3, 73, 28, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 6, 175, 12, 0, 1500, 368, 1, 0, 0, 0, 1501, 1502, 3, 75, 29, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 6, 176, 12, 0, 1504, 370, 1, 0, 0, 0, 1505, 1506, 3, 77, 30, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 6, 177, 17, 0, 1508, 1509, 6, 177, 13, 0, 1509, 372, 1, 0, 0, 0, 1510, 1511, 7, 7, 0, 0, 1511, 1512, 7, 8, 0, 0, 1512, 1513, 7, 16, 0, 0, 1513, 1514, 7, 1, 0, 0, 1514, 374, 1, 0, 0, 0, 1515, 1516, 3, 71, 27, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 6, 179, 12, 0, 1518, 376, 1, 0, 0, 0, 1519, 1520, 3, 73, 28, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 6, 180, 12, 0, 1522, 378, 1, 0, 0, 0, 1523, 1524, 3, 75, 29, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 6, 181, 12, 0, 1526, 380, 1, 0, 0, 0, 1527, 1528, 3, 195, 89, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 6, 182, 18, 0, 1530, 1531, 6, 182, 13, 0, 1531, 382, 1, 0, 0, 0, 1532, 1533, 3, 115, 49, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 6, 183, 19, 0, 1535, 384, 1, 0, 0, 0, 1536, 1542, 3, 89, 36, 0, 1537, 1542, 3, 79, 31, 0, 1538, 1542, 3, 121, 52, 0, 1539, 1542, 3, 81, 32, 0, 1540, 1542, 3, 95, 39, 0, 1541, 1536, 1, 0, 0, 0, 1541, 1537, 1, 0, 0, 0, 1541, 1538, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1541, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1541, 1, 0, 0, 0, 1543, 1544, 1, 0, 0, 0, 1544, 386, 1, 0, 0, 0, 1545, 1546, 3, 71, 27, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 6, 185, 12, 0, 1548, 388, 1, 0, 0, 0, 1549, 1550, 3, 73, 28, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1552, 6, 186, 12, 0, 1552, 390, 1, 0, 0, 0, 1553, 1554, 3, 75, 29, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 6, 187, 12, 0, 1556, 392, 1, 0, 0, 0, 1557, 1558, 3, 77, 30, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 188, 17, 0, 1560, 1561, 6, 188, 13, 0, 1561, 394, 1, 0, 0, 0, 1562, 1563, 3, 115, 49, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1565, 6, 189, 19, 0, 1565, 396, 1, 0, 0, 0, 1566, 1567, 3, 117, 50, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 6, 190, 21, 0, 1569, 398, 1, 0, 0, 0, 1570, 1571, 3, 121, 52, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 6, 191, 25, 0, 1573, 400, 1, 0, 0, 0, 1574, 1575, 3, 143, 63, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 6, 192, 32, 0, 1577, 1578, 6, 192, 38, 0, 1578, 402, 1, 0, 0, 0, 1579, 1580, 3, 237, 110, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 6, 193, 23, 0, 1582, 404, 1, 0, 0, 0, 1583, 1584, 3, 99, 41, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 6, 194, 24, 0, 1586, 406, 1, 0, 0, 0, 1587, 1588, 3, 71, 27, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1590, 6, 195, 12, 0, 1590, 408, 1, 0, 0, 0, 1591, 1592, 3, 73, 28, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1594, 6, 196, 12, 0, 1594, 410, 1, 0, 0, 0, 1595, 1596, 3, 75, 29, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1598, 6, 197, 12, 0, 1598, 412, 1, 0, 0, 0, 1599, 1600, 3, 77, 30, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 6, 198, 17, 0, 1602, 1603, 6, 198, 13, 0, 1603, 1604, 6, 198, 13, 0, 1604, 414, 1, 0, 0, 0, 1605, 1606, 3, 117, 50, 0, 1606, 1607, 1, 0, 0, 0, 1607, 1608, 6, 199, 21, 0, 1608, 416, 1, 0, 0, 0, 1609, 1610, 3, 121, 52, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 6, 200, 25, 0, 1612, 418, 1, 0, 0, 0, 1613, 1614, 3, 267, 125, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 6, 201, 30, 0, 1616, 420, 1, 0, 0, 0, 1617, 1618, 3, 71, 27, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 6, 202, 12, 0, 1620, 422, 1, 0, 0, 0, 1621, 1622, 3, 73, 28, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1624, 6, 203, 12, 0, 1624, 424, 1, 0, 0, 0, 1625, 1626, 3, 75, 29, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 6, 204, 12, 0, 1628, 426, 1, 0, 0, 0, 1629, 1630, 3, 77, 30, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 6, 205, 17, 0, 1632, 1633, 6, 205, 13, 0, 1633, 428, 1, 0, 0, 0, 1634, 1635, 7, 35, 0, 0, 1635, 1636, 7, 1, 0, 0, 1636, 1637, 7, 7, 0, 0, 1637, 1638, 7, 8, 0, 0, 1638, 430, 1, 0, 0, 0, 1639, 1640, 3, 291, 137, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 207, 39, 0, 1642, 432, 1, 0, 0, 0, 1643, 1644, 3, 143, 63, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 208, 32, 0, 1646, 1647, 6, 208, 13, 0, 1647, 1648, 6, 208, 0, 0, 1648, 434, 1, 0, 0, 0, 1649, 1650, 7, 20, 0, 0, 1650, 1651, 7, 10, 0, 0, 1651, 1652, 7, 7, 0, 0, 1652, 1653, 7, 8, 0, 0, 1653, 1654, 7, 17, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 6, 209, 13, 0, 1656, 1657, 6, 209, 0, 0, 1657, 436, 1, 0, 0, 0, 1658, 1659, 3, 237, 110, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1661, 6, 210, 23, 0, 1661, 438, 1, 0, 0, 0, 1662, 1663, 3, 99, 41, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1665, 6, 211, 24, 0, 1665, 440, 1, 0, 0, 0, 1666, 1667, 3, 115, 49, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1669, 6, 212, 19, 0, 1669, 442, 1, 0, 0, 0, 1670, 1671, 3, 197, 90, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 6, 213, 37, 0, 1673, 444, 1, 0, 0, 0, 1674, 1675, 3, 201, 92, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1677, 6, 214, 36, 0, 1677, 446, 1, 0, 0, 0, 1678, 1679, 3, 71, 27, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 6, 215, 12, 0, 1681, 448, 1, 0, 0, 0, 1682, 1683, 3, 73, 28, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 216, 12, 0, 1685, 450, 1, 0, 0, 0, 1686, 1687, 3, 75, 29, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 217, 12, 0, 1689, 452, 1, 0, 0, 0, 1690, 1691, 3, 77, 30, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 6, 218, 17, 0, 1693, 1694, 6, 218, 13, 0, 1694, 454, 1, 0, 0, 0, 1695, 1696, 3, 237, 110, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 6, 219, 23, 0, 1698, 1699, 6, 219, 13, 0, 1699, 1700, 6, 219, 40, 0, 1700, 456, 1, 0, 0, 0, 1701, 1702, 3, 99, 41, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 6, 220, 24, 0, 1704, 1705, 6, 220, 13, 0, 1705, 1706, 6, 220, 40, 0, 1706, 458, 1, 0, 0, 0, 1707, 1708, 3, 71, 27, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 221, 12, 0, 1710, 460, 1, 0, 0, 0, 1711, 1712, 3, 73, 28, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 6, 222, 12, 0, 1714, 462, 1, 0, 0, 0, 1715, 1716, 3, 75, 29, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 6, 223, 12, 0, 1718, 464, 1, 0, 0, 0, 1719, 1720, 3, 115, 49, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 6, 224, 19, 0, 1722, 1723, 6, 224, 13, 0, 1723, 1724, 6, 224, 11, 0, 1724, 466, 1, 0, 0, 0, 1725, 1726, 3, 113, 48, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 225, 20, 0, 1728, 1729, 6, 225, 13, 0, 1729, 1730, 6, 225, 11, 0, 1730, 468, 1, 0, 0, 0, 1731, 1732, 3, 117, 50, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 6, 226, 21, 0, 1734, 1735, 6, 226, 13, 0, 1735, 1736, 6, 226, 11, 0, 1736, 470, 1, 0, 0, 0, 1737, 1738, 3, 71, 27, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 227, 12, 0, 1740, 472, 1, 0, 0, 0, 1741, 1742, 3, 73, 28, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 6, 228, 12, 0, 1744, 474, 1, 0, 0, 0, 1745, 1746, 3, 75, 29, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 6, 229, 12, 0, 1748, 476, 1, 0, 0, 0, 1749, 1750, 3, 201, 92, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 230, 13, 0, 1752, 1753, 6, 230, 0, 0, 1753, 1754, 6, 230, 36, 0, 1754, 478, 1, 0, 0, 0, 1755, 1756, 3, 197, 90, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 6, 231, 13, 0, 1758, 1759, 6, 231, 0, 0, 1759, 1760, 6, 231, 37, 0, 1760, 480, 1, 0, 0, 0, 1761, 1762, 3, 111, 47, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 6, 232, 13, 0, 1764, 1765, 6, 232, 0, 0, 1765, 1766, 6, 232, 41, 0, 1766, 482, 1, 0, 0, 0, 1767, 1768, 3, 77, 30, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 233, 17, 0, 1770, 1771, 6, 233, 13, 0, 1771, 484, 1, 0, 0, 0, 1772, 1773, 3, 77, 30, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 6, 234, 17, 0, 1775, 1776, 6, 234, 13, 0, 1776, 486, 1, 0, 0, 0, 1777, 1778, 3, 143, 63, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 6, 235, 32, 0, 1780, 488, 1, 0, 0, 0, 1781, 1782, 3, 291, 137, 0, 1782, 1783, 1, 0, 0, 0, 1783, 1784, 6, 236, 39, 0, 1784, 490, 1, 0, 0, 0, 1785, 1786, 3, 121, 52, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 6, 237, 25, 0, 1788, 492, 1, 0, 0, 0, 1789, 1790, 3, 117, 50, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 6, 238, 21, 0, 1792, 494, 1, 0, 0, 0, 1793, 1794, 3, 201, 92, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 6, 239, 36, 0, 1796, 496, 1, 0, 0, 0, 1797, 1798, 3, 197, 90, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 6, 240, 37, 0, 1800, 498, 1, 0, 0, 0, 1801, 1802, 3, 71, 27, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 6, 241, 12, 0, 1804, 500, 1, 0, 0, 0, 1805, 1806, 3, 73, 28, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 6, 242, 12, 0, 1808, 502, 1, 0, 0, 0, 1809, 1810, 3, 75, 29, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 6, 243, 12, 0, 1812, 504, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 747, 757, 761, 764, 773, 775, 786, 805, 810, 819, 826, 831, 833, 844, 852, 855, 857, 862, 867, 873, 880, 885, 891, 894, 902, 906, 1049, 1054, 1061, 1063, 1068, 1073, 1080, 1082, 1098, 1103, 1108, 1110, 1116, 1197, 1202, 1257, 1261, 1266, 1271, 1276, 1278, 1282, 1284, 1375, 1379, 1384, 1541, 1543, 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, 78, 0, 5, 0, 0, 7, 31, 0, 7, 79, 0, 7, 40, 0, 7, 39, 0, 7, 41, 0, 7, 37, 0, 7, 89, 0, 7, 32, 0, 7, 43, 0, 7, 56, 0, 7, 76, 0, 7, 75, 0, 7, 77, 0, 7, 93, 0, 5, 10, 0, 7, 54, 0, 5, 7, 0, 7, 60, 0, 7, 101, 0, 7, 81, 0, 7, 80, 0, 5, 12, 0, 7, 97, 0, 5, 15, 0, 7, 38, 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 32d842d92337e..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,34 +26,35 @@ 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_JOIN_FULL=24, DEV_JOIN_LEFT=25, - DEV_JOIN_RIGHT=26, UNKNOWN_CMD=27, LINE_COMMENT=28, MULTILINE_COMMENT=29, - WS=30, PIPE=31, QUOTED_STRING=32, INTEGER_LITERAL=33, DECIMAL_LITERAL=34, - AND=35, ASC=36, ASSIGN=37, BY=38, CAST_OP=39, COLON=40, COMMA=41, DESC=42, - DOT=43, FALSE=44, FIRST=45, IN=46, IS=47, LAST=48, LIKE=49, LP=50, NOT=51, - NULL=52, NULLS=53, ON=54, OR=55, PARAM=56, RLIKE=57, RP=58, TRUE=59, WITH=60, - EQ=61, CIEQ=62, NEQ=63, LT=64, LTE=65, GT=66, GTE=67, PLUS=68, MINUS=69, - ASTERISK=70, SLASH=71, PERCENT=72, LEFT_BRACES=73, RIGHT_BRACES=74, DOUBLE_PARAMS=75, - NAMED_OR_POSITIONAL_PARAM=76, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=77, OPENING_BRACKET=78, - CLOSING_BRACKET=79, UNQUOTED_IDENTIFIER=80, QUOTED_IDENTIFIER=81, EXPR_LINE_COMMENT=82, - EXPR_MULTILINE_COMMENT=83, EXPR_WS=84, EXPLAIN_WS=85, EXPLAIN_LINE_COMMENT=86, - EXPLAIN_MULTILINE_COMMENT=87, METADATA=88, UNQUOTED_SOURCE=89, FROM_LINE_COMMENT=90, - FROM_MULTILINE_COMMENT=91, FROM_WS=92, ID_PATTERN=93, PROJECT_LINE_COMMENT=94, - PROJECT_MULTILINE_COMMENT=95, PROJECT_WS=96, AS=97, RENAME_LINE_COMMENT=98, - RENAME_MULTILINE_COMMENT=99, RENAME_WS=100, ENRICH_POLICY_NAME=101, ENRICH_LINE_COMMENT=102, - ENRICH_MULTILINE_COMMENT=103, ENRICH_WS=104, ENRICH_FIELD_LINE_COMMENT=105, - ENRICH_FIELD_MULTILINE_COMMENT=106, ENRICH_FIELD_WS=107, MVEXPAND_LINE_COMMENT=108, - MVEXPAND_MULTILINE_COMMENT=109, MVEXPAND_WS=110, INFO=111, SHOW_LINE_COMMENT=112, - SHOW_MULTILINE_COMMENT=113, SHOW_WS=114, SETTING=115, SETTING_LINE_COMMENT=116, - SETTTING_MULTILINE_COMMENT=117, SETTING_WS=118, LOOKUP_LINE_COMMENT=119, - LOOKUP_MULTILINE_COMMENT=120, LOOKUP_WS=121, LOOKUP_FIELD_LINE_COMMENT=122, - LOOKUP_FIELD_MULTILINE_COMMENT=123, LOOKUP_FIELD_WS=124, JOIN=125, USING=126, - JOIN_LINE_COMMENT=127, JOIN_MULTILINE_COMMENT=128, JOIN_WS=129, METRICS_LINE_COMMENT=130, - METRICS_MULTILINE_COMMENT=131, METRICS_WS=132, CLOSING_METRICS_LINE_COMMENT=133, - CLOSING_METRICS_MULTILINE_COMMENT=134, CLOSING_METRICS_WS=135, CHANGE_POINT_LINE_COMMENT=136, - CHANGE_POINT_MULTILINE_COMMENT=137, CHANGE_POINT_WS=138; + 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, + COMMA=42, DESC=43, DOT=44, FALSE=45, FIRST=46, IN=47, IS=48, LAST=49, + LIKE=50, LP=51, NOT=52, NULL=53, NULLS=54, ON=55, OR=56, PARAM=57, RLIKE=58, + RP=59, TRUE=60, WITH=61, EQ=62, CIEQ=63, NEQ=64, LT=65, LTE=66, GT=67, + GTE=68, PLUS=69, MINUS=70, ASTERISK=71, SLASH=72, PERCENT=73, LEFT_BRACES=74, + RIGHT_BRACES=75, DOUBLE_PARAMS=76, NAMED_OR_POSITIONAL_PARAM=77, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78, + OPENING_BRACKET=79, CLOSING_BRACKET=80, UNQUOTED_IDENTIFIER=81, QUOTED_IDENTIFIER=82, + EXPR_LINE_COMMENT=83, EXPR_MULTILINE_COMMENT=84, EXPR_WS=85, EXPLAIN_WS=86, + EXPLAIN_LINE_COMMENT=87, EXPLAIN_MULTILINE_COMMENT=88, METADATA=89, UNQUOTED_SOURCE=90, + FROM_LINE_COMMENT=91, FROM_MULTILINE_COMMENT=92, FROM_WS=93, ID_PATTERN=94, + PROJECT_LINE_COMMENT=95, PROJECT_MULTILINE_COMMENT=96, PROJECT_WS=97, + AS=98, RENAME_LINE_COMMENT=99, RENAME_MULTILINE_COMMENT=100, RENAME_WS=101, + ENRICH_POLICY_NAME=102, ENRICH_LINE_COMMENT=103, ENRICH_MULTILINE_COMMENT=104, + ENRICH_WS=105, ENRICH_FIELD_LINE_COMMENT=106, ENRICH_FIELD_MULTILINE_COMMENT=107, + ENRICH_FIELD_WS=108, MVEXPAND_LINE_COMMENT=109, MVEXPAND_MULTILINE_COMMENT=110, + MVEXPAND_WS=111, INFO=112, SHOW_LINE_COMMENT=113, SHOW_MULTILINE_COMMENT=114, + SHOW_WS=115, SETTING=116, SETTING_LINE_COMMENT=117, SETTTING_MULTILINE_COMMENT=118, + SETTING_WS=119, LOOKUP_LINE_COMMENT=120, LOOKUP_MULTILINE_COMMENT=121, + LOOKUP_WS=122, LOOKUP_FIELD_LINE_COMMENT=123, LOOKUP_FIELD_MULTILINE_COMMENT=124, + LOOKUP_FIELD_WS=125, JOIN=126, USING=127, JOIN_LINE_COMMENT=128, JOIN_MULTILINE_COMMENT=129, + JOIN_WS=130, METRICS_LINE_COMMENT=131, METRICS_MULTILINE_COMMENT=132, + METRICS_WS=133, CLOSING_METRICS_LINE_COMMENT=134, CLOSING_METRICS_MULTILINE_COMMENT=135, + CLOSING_METRICS_WS=136, CHANGE_POINT_LINE_COMMENT=137, CHANGE_POINT_MULTILINE_COMMENT=138, + CHANGE_POINT_WS=139; public static final int EXPRESSION_MODE=1, EXPLAIN_MODE=2, FROM_MODE=3, PROJECT_MODE=4, RENAME_MODE=5, ENRICH_MODE=6, ENRICH_FIELD_MODE=7, MVEXPAND_MODE=8, SHOW_MODE=9, SETTING_MODE=10, @@ -73,27 +74,27 @@ 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_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", "UNQUOTED_ID_BODY", "QUOTED_STRING", - "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "ASC", "ASSIGN", "BY", "CAST_OP", - "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", - "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE", "RP", - "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", - "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", - "DOUBLE_PARAMS", "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", - "OPENING_BRACKET", "CLOSING_BRACKET", "UNQUOTED_IDENTIFIER", "QUOTED_ID", - "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", - "EXPLAIN_OPENING_BRACKET", "EXPLAIN_PIPE", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", - "EXPLAIN_MULTILINE_COMMENT", "FROM_PIPE", "FROM_OPENING_BRACKET", "FROM_CLOSING_BRACKET", - "FROM_COLON", "FROM_SELECTOR", "FROM_COMMA", "FROM_ASSIGN", "METADATA", - "UNQUOTED_SOURCE_PART", "UNQUOTED_SOURCE", "FROM_UNQUOTED_SOURCE", "FROM_QUOTED_SOURCE", - "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "PROJECT_PIPE", - "PROJECT_DOT", "PROJECT_COMMA", "PROJECT_PARAM", "PROJECT_NAMED_OR_POSITIONAL_PARAM", - "PROJECT_DOUBLE_PARAMS", "PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", + "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", + "UNQUOTED_ID_BODY", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "AND", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC", "DOT", + "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", + "ON", "OR", "PARAM", "RLIKE", "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", + "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", + "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", + "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET", + "UNQUOTED_IDENTIFIER", "QUOTED_ID", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", + "EXPR_MULTILINE_COMMENT", "EXPR_WS", "EXPLAIN_OPENING_BRACKET", "EXPLAIN_PIPE", + "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", "FROM_PIPE", + "FROM_OPENING_BRACKET", "FROM_CLOSING_BRACKET", "FROM_COLON", "FROM_SELECTOR", + "FROM_COMMA", "FROM_ASSIGN", "METADATA", "UNQUOTED_SOURCE_PART", "UNQUOTED_SOURCE", + "FROM_UNQUOTED_SOURCE", "FROM_QUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", + "FROM_WS", "PROJECT_PIPE", "PROJECT_DOT", "PROJECT_COMMA", "PROJECT_PARAM", + "PROJECT_NAMED_OR_POSITIONAL_PARAM", "PROJECT_DOUBLE_PARAMS", "PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "UNQUOTED_ID_BODY_WITH_PATTERN", "UNQUOTED_ID_PATTERN", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_PIPE", "RENAME_ASSIGN", "RENAME_COMMA", "RENAME_DOT", "RENAME_PARAM", "RENAME_NAMED_OR_POSITIONAL_PARAM", @@ -137,7 +138,7 @@ 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'", @@ -155,33 +156,33 @@ private static String[] 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_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", "FALSE", "FIRST", "IN", "IS", "LAST", - "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE", "RP", - "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", - "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", - "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", - "OPENING_BRACKET", "CLOSING_BRACKET", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", - "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "EXPLAIN_WS", - "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", "METADATA", "UNQUOTED_SOURCE", - "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "ID_PATTERN", - "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "AS", - "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "ENRICH_POLICY_NAME", - "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", - "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", - "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", - "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", - "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", - "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", - "LOOKUP_FIELD_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", - "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", - "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT", - "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT", - "CHANGE_POINT_WS" + "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", + "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", + "ON", "OR", "PARAM", "RLIKE", "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", + "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", + "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", + "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET", + "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", + "EXPR_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", + "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", + "FROM_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", + "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "ENRICH_POLICY_NAME", "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", + "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", "ENRICH_FIELD_MULTILINE_COMMENT", + "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", + "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", + "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", + "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", + "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", + "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS", + "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_LINE_COMMENT", + "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", + "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -246,19 +247,19 @@ 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_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); + return DEV_RERANK_sempred((RuleContext)_localctx, predIndex); case 24: - return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); case 25: + return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); + case 26: return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); } return true; @@ -314,7 +315,7 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { } public static final String _serializedATN = - "\u0004\u0000\u008a\u0715\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"+ @@ -386,1119 +387,1126 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { "\u0002\u00e9\u0007\u00e9\u0002\u00ea\u0007\u00ea\u0002\u00eb\u0007\u00eb"+ "\u0002\u00ec\u0007\u00ec\u0002\u00ed\u0007\u00ed\u0002\u00ee\u0007\u00ee"+ "\u0002\u00ef\u0007\u00ef\u0002\u00f0\u0007\u00f0\u0002\u00f1\u0007\u00f1"+ - "\u0002\u00f2\u0007\u00f2\u0002\u00f3\u0007\u00f3\u0001\u0000\u0001\u0000"+ + "\u0002\u00f2\u0007\u00f2\u0002\u00f3\u0007\u00f3\u0002\u00f4\u0007\u00f4"+ + "\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000"+ "\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000"+ - "\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003"+ + "\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005"+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ - "\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\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\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\u0019\u0001\u001a\u0004\u001a\u02ea\b\u001a\u000b\u001a\f"+ - "\u001a\u02eb\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b"+ - "\u0001\u001b\u0005\u001b\u02f4\b\u001b\n\u001b\f\u001b\u02f7\t\u001b\u0001"+ - "\u001b\u0003\u001b\u02fa\b\u001b\u0001\u001b\u0003\u001b\u02fd\b\u001b"+ - "\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c"+ - "\u0001\u001c\u0005\u001c\u0306\b\u001c\n\u001c\f\u001c\u0309\t\u001c\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0004"+ - "\u001d\u0311\b\u001d\u000b\u001d\f\u001d\u0312\u0001\u001d\u0001\u001d"+ - "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f"+ - "\u0001 \u0001 \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001#\u0001#\u0003"+ - "#\u0326\b#\u0001#\u0004#\u0329\b#\u000b#\f#\u032a\u0001$\u0001$\u0001"+ - "%\u0001%\u0001&\u0001&\u0001&\u0003&\u0334\b&\u0001\'\u0001\'\u0001(\u0001"+ - "(\u0001(\u0003(\u033b\b(\u0001)\u0001)\u0001)\u0005)\u0340\b)\n)\f)\u0343"+ - "\t)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0005)\u034b\b)\n)\f)\u034e"+ - "\t)\u0001)\u0001)\u0001)\u0001)\u0001)\u0003)\u0355\b)\u0001)\u0003)\u0358"+ - "\b)\u0003)\u035a\b)\u0001*\u0004*\u035d\b*\u000b*\f*\u035e\u0001+\u0004"+ - "+\u0362\b+\u000b+\f+\u0363\u0001+\u0001+\u0005+\u0368\b+\n+\f+\u036b\t"+ - "+\u0001+\u0001+\u0004+\u036f\b+\u000b+\f+\u0370\u0001+\u0004+\u0374\b"+ - "+\u000b+\f+\u0375\u0001+\u0001+\u0005+\u037a\b+\n+\f+\u037d\t+\u0003+"+ - "\u037f\b+\u0001+\u0001+\u0001+\u0001+\u0004+\u0385\b+\u000b+\f+\u0386"+ - "\u0001+\u0001+\u0003+\u038b\b+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001"+ - "-\u0001-\u0001-\u0001.\u0001.\u0001/\u0001/\u0001/\u00010\u00010\u0001"+ - "0\u00011\u00011\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u0001"+ - "4\u00014\u00015\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u0001"+ - "6\u00016\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u00018\u0001"+ - "9\u00019\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@\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001D\u0001E\u0001E\u0001"+ - "E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001H\u0001"+ - "H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001J\u0001K\u0001K\u0001L\u0001"+ - "L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001"+ - "Q\u0001Q\u0001R\u0001R\u0001S\u0001S\u0001T\u0001T\u0001T\u0001U\u0001"+ - "U\u0001U\u0001U\u0001V\u0001V\u0001V\u0003V\u041a\bV\u0001V\u0005V\u041d"+ - "\bV\nV\fV\u0420\tV\u0001V\u0001V\u0004V\u0424\bV\u000bV\fV\u0425\u0003"+ - "V\u0428\bV\u0001W\u0001W\u0001W\u0003W\u042d\bW\u0001W\u0005W\u0430\b"+ - "W\nW\fW\u0433\tW\u0001W\u0001W\u0004W\u0437\bW\u000bW\fW\u0438\u0003W"+ - "\u043b\bW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001Y\u0001Y\u0001Y\u0001"+ - "Y\u0001Y\u0001Z\u0001Z\u0005Z\u0449\bZ\nZ\fZ\u044c\tZ\u0001Z\u0001Z\u0003"+ - "Z\u0450\bZ\u0001Z\u0004Z\u0453\bZ\u000bZ\fZ\u0454\u0003Z\u0457\bZ\u0001"+ - "[\u0001[\u0004[\u045b\b[\u000b[\f[\u045c\u0001[\u0001[\u0001\\\u0001\\"+ - "\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001^\u0001^\u0001_\u0001"+ - "_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001`\u0001a\u0001a\u0001"+ - "a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001"+ - "c\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001e\u0001"+ - "f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001h\u0001h\u0001"+ - "h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001j\u0001j\u0001j\u0001j\u0001"+ - "k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001"+ - "l\u0001l\u0001l\u0001m\u0001m\u0001m\u0003m\u04ae\bm\u0001n\u0004n\u04b1"+ - "\bn\u000bn\fn\u04b2\u0001o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001"+ - "p\u0001q\u0001q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001s\u0001"+ - "s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001t\u0001t\u0001u\u0001u\u0001"+ - "u\u0001u\u0001v\u0001v\u0001v\u0001v\u0001w\u0001w\u0001w\u0001w\u0001"+ - "x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001y\u0001z\u0001z\u0001"+ - "z\u0001z\u0001{\u0001{\u0001{\u0001{\u0003{\u04ea\b{\u0001|\u0001|\u0003"+ - "|\u04ee\b|\u0001|\u0005|\u04f1\b|\n|\f|\u04f4\t|\u0001|\u0001|\u0003|"+ - "\u04f8\b|\u0001|\u0004|\u04fb\b|\u000b|\f|\u04fc\u0003|\u04ff\b|\u0001"+ - "}\u0001}\u0004}\u0503\b}\u000b}\f}\u0504\u0001~\u0001~\u0001~\u0001~\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"+ - "\u0081\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\u008a\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\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\u0093\u0004\u0093\u055e"+ - "\b\u0093\u000b\u0093\f\u0093\u055f\u0001\u0093\u0001\u0093\u0003\u0093"+ - "\u0564\b\u0093\u0001\u0093\u0004\u0093\u0567\b\u0093\u000b\u0093\f\u0093"+ - "\u0568\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\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\u0098\u0001\u0098\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\u00a6\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\u00b1\u0001\u00b2\u0001"+ - "\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\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\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001"+ - "\u00b7\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0004"+ - "\u00b8\u0606\b\u00b8\u000b\u00b8\f\u00b8\u0607\u0001\u00b9\u0001\u00b9"+ - "\u0001\u00b9\u0001\u00b9\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\u00bc\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\u00c0\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\u00c6\u0001\u00c6\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\u00cd\u0001\u00ce\u0001\u00ce\u0001\u00ce"+ - "\u0001\u00ce\u0001\u00ce\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf"+ - "\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0"+ - "\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1"+ - "\u0001\u00d1\u0001\u00d1\u0001\u00d1\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\u00da\u0001\u00db\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\u00de\u0001\u00de\u0001\u00de\u0001\u00de"+ - "\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0"+ - "\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\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4"+ - "\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e6\u0001\u00e6"+ - "\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\u00ea\u0001\u00ea\u0001\u00ea"+ - "\u0001\u00ea\u0001\u00ea\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\u0002\u0307\u034c\u0000\u00f4\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\u00137\u0014"+ - "9\u0015;\u0016=\u0017?\u0018A\u0019C\u001aE\u001bG\u001cI\u001dK\u001e"+ - "M\u001fO\u0000Q\u0000S\u0000U\u0000W\u0000Y\u0000[\u0000]\u0000_\u0000"+ - "a\u0000c e!g\"i#k$m%o&q\'s(u)w*y+{,}-\u007f.\u0081/\u00830\u00851\u0087"+ - "2\u00893\u008b4\u008d5\u008f6\u00917\u00938\u00959\u0097:\u0099;\u009b"+ - "<\u009d=\u009f>\u00a1?\u00a3@\u00a5A\u00a7B\u00a9C\u00abD\u00adE\u00af"+ - "F\u00b1G\u00b3H\u00b5I\u00b7J\u00b9K\u00bb\u0000\u00bdL\u00bfM\u00c1N"+ - "\u00c3O\u00c5P\u00c7\u0000\u00c9Q\u00cbR\u00cdS\u00cfT\u00d1\u0000\u00d3"+ - "\u0000\u00d5U\u00d7V\u00d9W\u00db\u0000\u00dd\u0000\u00df\u0000\u00e1"+ - "\u0000\u00e3\u0000\u00e5\u0000\u00e7\u0000\u00e9X\u00eb\u0000\u00edY\u00ef"+ - "\u0000\u00f1\u0000\u00f3Z\u00f5[\u00f7\\\u00f9\u0000\u00fb\u0000\u00fd"+ + "\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007"+ + "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001"+ + "\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+ + "\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\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]\u010d^\u010f_\u0111`\u0113\u0000\u0115\u0000\u0117\u0000"+ - "\u0119\u0000\u011b\u0000\u011d\u0000\u011f\u0000\u0121\u0000\u0123a\u0125"+ - "\u0000\u0127b\u0129c\u012bd\u012d\u0000\u012f\u0000\u0131\u0000\u0133"+ - "\u0000\u0135\u0000\u0137e\u0139\u0000\u013bf\u013dg\u013fh\u0141\u0000"+ - "\u0143\u0000\u0145\u0000\u0147\u0000\u0149\u0000\u014b\u0000\u014d\u0000"+ - "\u014f\u0000\u0151\u0000\u0153\u0000\u0155\u0000\u0157i\u0159j\u015bk"+ - "\u015d\u0000\u015f\u0000\u0161\u0000\u0163\u0000\u0165\u0000\u0167\u0000"+ - "\u0169\u0000\u016b\u0000\u016dl\u016fm\u0171n\u0173\u0000\u0175o\u0177"+ - "p\u0179q\u017br\u017d\u0000\u017f\u0000\u0181s\u0183t\u0185u\u0187v\u0189"+ - "\u0000\u018b\u0000\u018d\u0000\u018f\u0000\u0191\u0000\u0193\u0000\u0195"+ - "\u0000\u0197w\u0199x\u019by\u019d\u0000\u019f\u0000\u01a1\u0000\u01a3"+ - "\u0000\u01a5z\u01a7{\u01a9|\u01ab\u0000\u01ad}\u01af\u0000\u01b1\u0000"+ - "\u01b3~\u01b5\u0000\u01b7\u0000\u01b9\u0000\u01bb\u0000\u01bd\u0000\u01bf"+ - "\u007f\u01c1\u0080\u01c3\u0081\u01c5\u0000\u01c7\u0000\u01c9\u0000\u01cb"+ - "\u0082\u01cd\u0083\u01cf\u0084\u01d1\u0000\u01d3\u0000\u01d5\u0000\u01d7"+ - "\u0085\u01d9\u0086\u01db\u0087\u01dd\u0000\u01df\u0000\u01e1\u0000\u01e3"+ + "\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\u0088\u01f5\u0089\u01f7\u008a\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\u0000TTtt\u0002\u0000IIii\u0002\u0000"+ - "NNnn\u0002\u0000DDdd\u0002\u0000SSss\u0002\u0000RRrr\u0002\u0000HHhh\u0002"+ - "\u0000VVvv\u0002\u0000AAaa\u0002\u0000XXxx\u0002\u0000FFff\u0002\u0000"+ - "GGgg\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\u0733\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\u0000"+ - "1\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\u0001"+ - "M\u0001\u0000\u0000\u0000\u0001c\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\u0001"+ - "o\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\u00c9\u0001\u0000\u0000\u0000\u0001\u00cb"+ - "\u0001\u0000\u0000\u0000\u0001\u00cd\u0001\u0000\u0000\u0000\u0001\u00cf"+ - "\u0001\u0000\u0000\u0000\u0002\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\u0003\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\u00ed"+ - "\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\u0004\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\u010b\u0001\u0000\u0000\u0000\u0004\u010d"+ - "\u0001\u0000\u0000\u0000\u0004\u010f\u0001\u0000\u0000\u0000\u0004\u0111"+ - "\u0001\u0000\u0000\u0000\u0005\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\u0006\u012d"+ - "\u0001\u0000\u0000\u0000\u0006\u012f\u0001\u0000\u0000\u0000\u0006\u0131"+ - "\u0001\u0000\u0000\u0000\u0006\u0133\u0001\u0000\u0000\u0000\u0006\u0137"+ - "\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\u0007\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\b\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\t\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\n\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\u000b\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\f\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\r\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\u000e\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\u000f\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\u0010\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\u0011\u01f9\u0001\u0000\u0000\u0000\u0013"+ - "\u0206\u0001\u0000\u0000\u0000\u0015\u0210\u0001\u0000\u0000\u0000\u0017"+ - "\u0217\u0001\u0000\u0000\u0000\u0019\u0220\u0001\u0000\u0000\u0000\u001b"+ - "\u0227\u0001\u0000\u0000\u0000\u001d\u0231\u0001\u0000\u0000\u0000\u001f"+ - "\u0238\u0001\u0000\u0000\u0000!\u023f\u0001\u0000\u0000\u0000#\u0246\u0001"+ - "\u0000\u0000\u0000%\u024e\u0001\u0000\u0000\u0000\'\u025a\u0001\u0000"+ - "\u0000\u0000)\u0263\u0001\u0000\u0000\u0000+\u0269\u0001\u0000\u0000\u0000"+ - "-\u0270\u0001\u0000\u0000\u0000/\u0277\u0001\u0000\u0000\u00001\u027f"+ - "\u0001\u0000\u0000\u00003\u0287\u0001\u0000\u0000\u00005\u0290\u0001\u0000"+ - "\u0000\u00007\u029f\u0001\u0000\u0000\u00009\u02ae\u0001\u0000\u0000\u0000"+ - ";\u02ba\u0001\u0000\u0000\u0000=\u02c5\u0001\u0000\u0000\u0000?\u02cf"+ - "\u0001\u0000\u0000\u0000A\u02d7\u0001\u0000\u0000\u0000C\u02df\u0001\u0000"+ - "\u0000\u0000E\u02e9\u0001\u0000\u0000\u0000G\u02ef\u0001\u0000\u0000\u0000"+ - "I\u0300\u0001\u0000\u0000\u0000K\u0310\u0001\u0000\u0000\u0000M\u0316"+ - "\u0001\u0000\u0000\u0000O\u031a\u0001\u0000\u0000\u0000Q\u031c\u0001\u0000"+ - "\u0000\u0000S\u031e\u0001\u0000\u0000\u0000U\u0321\u0001\u0000\u0000\u0000"+ - "W\u0323\u0001\u0000\u0000\u0000Y\u032c\u0001\u0000\u0000\u0000[\u032e"+ - "\u0001\u0000\u0000\u0000]\u0333\u0001\u0000\u0000\u0000_\u0335\u0001\u0000"+ - "\u0000\u0000a\u033a\u0001\u0000\u0000\u0000c\u0359\u0001\u0000\u0000\u0000"+ - "e\u035c\u0001\u0000\u0000\u0000g\u038a\u0001\u0000\u0000\u0000i\u038c"+ - "\u0001\u0000\u0000\u0000k\u0390\u0001\u0000\u0000\u0000m\u0394\u0001\u0000"+ - "\u0000\u0000o\u0396\u0001\u0000\u0000\u0000q\u0399\u0001\u0000\u0000\u0000"+ - "s\u039c\u0001\u0000\u0000\u0000u\u039e\u0001\u0000\u0000\u0000w\u03a0"+ - "\u0001\u0000\u0000\u0000y\u03a5\u0001\u0000\u0000\u0000{\u03a7\u0001\u0000"+ - "\u0000\u0000}\u03ad\u0001\u0000\u0000\u0000\u007f\u03b3\u0001\u0000\u0000"+ - "\u0000\u0081\u03b6\u0001\u0000\u0000\u0000\u0083\u03b9\u0001\u0000\u0000"+ - "\u0000\u0085\u03be\u0001\u0000\u0000\u0000\u0087\u03c3\u0001\u0000\u0000"+ - "\u0000\u0089\u03c5\u0001\u0000\u0000\u0000\u008b\u03c9\u0001\u0000\u0000"+ - "\u0000\u008d\u03ce\u0001\u0000\u0000\u0000\u008f\u03d4\u0001\u0000\u0000"+ - "\u0000\u0091\u03d7\u0001\u0000\u0000\u0000\u0093\u03da\u0001\u0000\u0000"+ - "\u0000\u0095\u03dc\u0001\u0000\u0000\u0000\u0097\u03e2\u0001\u0000\u0000"+ - "\u0000\u0099\u03e4\u0001\u0000\u0000\u0000\u009b\u03e9\u0001\u0000\u0000"+ - "\u0000\u009d\u03ee\u0001\u0000\u0000\u0000\u009f\u03f1\u0001\u0000\u0000"+ - "\u0000\u00a1\u03f4\u0001\u0000\u0000\u0000\u00a3\u03f7\u0001\u0000\u0000"+ - "\u0000\u00a5\u03f9\u0001\u0000\u0000\u0000\u00a7\u03fc\u0001\u0000\u0000"+ - "\u0000\u00a9\u03fe\u0001\u0000\u0000\u0000\u00ab\u0401\u0001\u0000\u0000"+ - "\u0000\u00ad\u0403\u0001\u0000\u0000\u0000\u00af\u0405\u0001\u0000\u0000"+ - "\u0000\u00b1\u0407\u0001\u0000\u0000\u0000\u00b3\u0409\u0001\u0000\u0000"+ - "\u0000\u00b5\u040b\u0001\u0000\u0000\u0000\u00b7\u040d\u0001\u0000\u0000"+ - "\u0000\u00b9\u040f\u0001\u0000\u0000\u0000\u00bb\u0412\u0001\u0000\u0000"+ - "\u0000\u00bd\u0427\u0001\u0000\u0000\u0000\u00bf\u043a\u0001\u0000\u0000"+ - "\u0000\u00c1\u043c\u0001\u0000\u0000\u0000\u00c3\u0441\u0001\u0000\u0000"+ - "\u0000\u00c5\u0456\u0001\u0000\u0000\u0000\u00c7\u0458\u0001\u0000\u0000"+ - "\u0000\u00c9\u0460\u0001\u0000\u0000\u0000\u00cb\u0462\u0001\u0000\u0000"+ - "\u0000\u00cd\u0466\u0001\u0000\u0000\u0000\u00cf\u046a\u0001\u0000\u0000"+ - "\u0000\u00d1\u046e\u0001\u0000\u0000\u0000\u00d3\u0473\u0001\u0000\u0000"+ - "\u0000\u00d5\u0478\u0001\u0000\u0000\u0000\u00d7\u047c\u0001\u0000\u0000"+ - "\u0000\u00d9\u0480\u0001\u0000\u0000\u0000\u00db\u0484\u0001\u0000\u0000"+ - "\u0000\u00dd\u0489\u0001\u0000\u0000\u0000\u00df\u048d\u0001\u0000\u0000"+ - "\u0000\u00e1\u0491\u0001\u0000\u0000\u0000\u00e3\u0495\u0001\u0000\u0000"+ - "\u0000\u00e5\u0499\u0001\u0000\u0000\u0000\u00e7\u049d\u0001\u0000\u0000"+ - "\u0000\u00e9\u04a1\u0001\u0000\u0000\u0000\u00eb\u04ad\u0001\u0000\u0000"+ - "\u0000\u00ed\u04b0\u0001\u0000\u0000\u0000\u00ef\u04b4\u0001\u0000\u0000"+ - "\u0000\u00f1\u04b8\u0001\u0000\u0000\u0000\u00f3\u04bc\u0001\u0000\u0000"+ - "\u0000\u00f5\u04c0\u0001\u0000\u0000\u0000\u00f7\u04c4\u0001\u0000\u0000"+ - "\u0000\u00f9\u04c8\u0001\u0000\u0000\u0000\u00fb\u04cd\u0001\u0000\u0000"+ - "\u0000\u00fd\u04d1\u0001\u0000\u0000\u0000\u00ff\u04d5\u0001\u0000\u0000"+ - "\u0000\u0101\u04d9\u0001\u0000\u0000\u0000\u0103\u04dd\u0001\u0000\u0000"+ - "\u0000\u0105\u04e1\u0001\u0000\u0000\u0000\u0107\u04e9\u0001\u0000\u0000"+ - "\u0000\u0109\u04fe\u0001\u0000\u0000\u0000\u010b\u0502\u0001\u0000\u0000"+ - "\u0000\u010d\u0506\u0001\u0000\u0000\u0000\u010f\u050a\u0001\u0000\u0000"+ - "\u0000\u0111\u050e\u0001\u0000\u0000\u0000\u0113\u0512\u0001\u0000\u0000"+ - "\u0000\u0115\u0517\u0001\u0000\u0000\u0000\u0117\u051b\u0001\u0000\u0000"+ - "\u0000\u0119\u051f\u0001\u0000\u0000\u0000\u011b\u0523\u0001\u0000\u0000"+ - "\u0000\u011d\u0527\u0001\u0000\u0000\u0000\u011f\u052b\u0001\u0000\u0000"+ - "\u0000\u0121\u052f\u0001\u0000\u0000\u0000\u0123\u0533\u0001\u0000\u0000"+ - "\u0000\u0125\u0536\u0001\u0000\u0000\u0000\u0127\u053a\u0001\u0000\u0000"+ - "\u0000\u0129\u053e\u0001\u0000\u0000\u0000\u012b\u0542\u0001\u0000\u0000"+ - "\u0000\u012d\u0546\u0001\u0000\u0000\u0000\u012f\u054b\u0001\u0000\u0000"+ - "\u0000\u0131\u0550\u0001\u0000\u0000\u0000\u0133\u0555\u0001\u0000\u0000"+ - "\u0000\u0135\u055a\u0001\u0000\u0000\u0000\u0137\u0563\u0001\u0000\u0000"+ - "\u0000\u0139\u056a\u0001\u0000\u0000\u0000\u013b\u056e\u0001\u0000\u0000"+ - "\u0000\u013d\u0572\u0001\u0000\u0000\u0000\u013f\u0576\u0001\u0000\u0000"+ - "\u0000\u0141\u057a\u0001\u0000\u0000\u0000\u0143\u0580\u0001\u0000\u0000"+ - "\u0000\u0145\u0584\u0001\u0000\u0000\u0000\u0147\u0588\u0001\u0000\u0000"+ - "\u0000\u0149\u058c\u0001\u0000\u0000\u0000\u014b\u0590\u0001\u0000\u0000"+ - "\u0000\u014d\u0594\u0001\u0000\u0000\u0000\u014f\u0598\u0001\u0000\u0000"+ - "\u0000\u0151\u059c\u0001\u0000\u0000\u0000\u0153\u05a0\u0001\u0000\u0000"+ - "\u0000\u0155\u05a4\u0001\u0000\u0000\u0000\u0157\u05a8\u0001\u0000\u0000"+ - "\u0000\u0159\u05ac\u0001\u0000\u0000\u0000\u015b\u05b0\u0001\u0000\u0000"+ - "\u0000\u015d\u05b4\u0001\u0000\u0000\u0000\u015f\u05b9\u0001\u0000\u0000"+ - "\u0000\u0161\u05bd\u0001\u0000\u0000\u0000\u0163\u05c1\u0001\u0000\u0000"+ - "\u0000\u0165\u05c5\u0001\u0000\u0000\u0000\u0167\u05c9\u0001\u0000\u0000"+ - "\u0000\u0169\u05cd\u0001\u0000\u0000\u0000\u016b\u05d1\u0001\u0000\u0000"+ - "\u0000\u016d\u05d5\u0001\u0000\u0000\u0000\u016f\u05d9\u0001\u0000\u0000"+ - "\u0000\u0171\u05dd\u0001\u0000\u0000\u0000\u0173\u05e1\u0001\u0000\u0000"+ - "\u0000\u0175\u05e6\u0001\u0000\u0000\u0000\u0177\u05eb\u0001\u0000\u0000"+ - "\u0000\u0179\u05ef\u0001\u0000\u0000\u0000\u017b\u05f3\u0001\u0000\u0000"+ - "\u0000\u017d\u05f7\u0001\u0000\u0000\u0000\u017f\u05fc\u0001\u0000\u0000"+ - "\u0000\u0181\u0605\u0001\u0000\u0000\u0000\u0183\u0609\u0001\u0000\u0000"+ - "\u0000\u0185\u060d\u0001\u0000\u0000\u0000\u0187\u0611\u0001\u0000\u0000"+ - "\u0000\u0189\u0615\u0001\u0000\u0000\u0000\u018b\u061a\u0001\u0000\u0000"+ - "\u0000\u018d\u061e\u0001\u0000\u0000\u0000\u018f\u0622\u0001\u0000\u0000"+ - "\u0000\u0191\u0626\u0001\u0000\u0000\u0000\u0193\u062b\u0001\u0000\u0000"+ - "\u0000\u0195\u062f\u0001\u0000\u0000\u0000\u0197\u0633\u0001\u0000\u0000"+ - "\u0000\u0199\u0637\u0001\u0000\u0000\u0000\u019b\u063b\u0001\u0000\u0000"+ - "\u0000\u019d\u063f\u0001\u0000\u0000\u0000\u019f\u0645\u0001\u0000\u0000"+ - "\u0000\u01a1\u0649\u0001\u0000\u0000\u0000\u01a3\u064d\u0001\u0000\u0000"+ - "\u0000\u01a5\u0651\u0001\u0000\u0000\u0000\u01a7\u0655\u0001\u0000\u0000"+ - "\u0000\u01a9\u0659\u0001\u0000\u0000\u0000\u01ab\u065d\u0001\u0000\u0000"+ - "\u0000\u01ad\u0662\u0001\u0000\u0000\u0000\u01af\u0667\u0001\u0000\u0000"+ - "\u0000\u01b1\u066b\u0001\u0000\u0000\u0000\u01b3\u0671\u0001\u0000\u0000"+ - "\u0000\u01b5\u067a\u0001\u0000\u0000\u0000\u01b7\u067e\u0001\u0000\u0000"+ - "\u0000\u01b9\u0682\u0001\u0000\u0000\u0000\u01bb\u0686\u0001\u0000\u0000"+ - "\u0000\u01bd\u068a\u0001\u0000\u0000\u0000\u01bf\u068e\u0001\u0000\u0000"+ - "\u0000\u01c1\u0692\u0001\u0000\u0000\u0000\u01c3\u0696\u0001\u0000\u0000"+ - "\u0000\u01c5\u069a\u0001\u0000\u0000\u0000\u01c7\u069f\u0001\u0000\u0000"+ - "\u0000\u01c9\u06a5\u0001\u0000\u0000\u0000\u01cb\u06ab\u0001\u0000\u0000"+ - "\u0000\u01cd\u06af\u0001\u0000\u0000\u0000\u01cf\u06b3\u0001\u0000\u0000"+ - "\u0000\u01d1\u06b7\u0001\u0000\u0000\u0000\u01d3\u06bd\u0001\u0000\u0000"+ - "\u0000\u01d5\u06c3\u0001\u0000\u0000\u0000\u01d7\u06c9\u0001\u0000\u0000"+ - "\u0000\u01d9\u06cd\u0001\u0000\u0000\u0000\u01db\u06d1\u0001\u0000\u0000"+ - "\u0000\u01dd\u06d5\u0001\u0000\u0000\u0000\u01df\u06db\u0001\u0000\u0000"+ - "\u0000\u01e1\u06e1\u0001\u0000\u0000\u0000\u01e3\u06e7\u0001\u0000\u0000"+ - "\u0000\u01e5\u06ec\u0001\u0000\u0000\u0000\u01e7\u06f1\u0001\u0000\u0000"+ - "\u0000\u01e9\u06f5\u0001\u0000\u0000\u0000\u01eb\u06f9\u0001\u0000\u0000"+ - "\u0000\u01ed\u06fd\u0001\u0000\u0000\u0000\u01ef\u0701\u0001\u0000\u0000"+ - "\u0000\u01f1\u0705\u0001\u0000\u0000\u0000\u01f3\u0709\u0001\u0000\u0000"+ - "\u0000\u01f5\u070d\u0001\u0000\u0000\u0000\u01f7\u0711\u0001\u0000\u0000"+ - "\u0000\u01f9\u01fa\u0007\u0000\u0000\u0000\u01fa\u01fb\u0007\u0001\u0000"+ - "\u0000\u01fb\u01fc\u0007\u0002\u0000\u0000\u01fc\u01fd\u0007\u0003\u0000"+ - "\u0000\u01fd\u01fe\u0007\u0004\u0000\u0000\u01fe\u01ff\u0007\u0005\u0000"+ - "\u0000\u01ff\u0200\u0007\u0006\u0000\u0000\u0200\u0201\u0007\u0007\u0000"+ - "\u0000\u0201\u0202\u0007\u0001\u0000\u0000\u0202\u0203\u0007\b\u0000\u0000"+ - "\u0203\u0204\u0001\u0000\u0000\u0000\u0204\u0205\u0006\u0000\u0000\u0000"+ - "\u0205\u0012\u0001\u0000\u0000\u0000\u0206\u0207\u0007\t\u0000\u0000\u0207"+ - "\u0208\u0007\u0007\u0000\u0000\u0208\u0209\u0007\n\u0000\u0000\u0209\u020a"+ - "\u0007\n\u0000\u0000\u020a\u020b\u0007\u0005\u0000\u0000\u020b\u020c\u0007"+ - "\u0000\u0000\u0000\u020c\u020d\u0007\u0006\u0000\u0000\u020d\u020e\u0001"+ - "\u0000\u0000\u0000\u020e\u020f\u0006\u0001\u0000\u0000\u020f\u0014\u0001"+ - "\u0000\u0000\u0000\u0210\u0211\u0007\t\u0000\u0000\u0211\u0212\u0007\u000b"+ - "\u0000\u0000\u0212\u0213\u0007\u0001\u0000\u0000\u0213\u0214\u0007\u0003"+ - "\u0000\u0000\u0214\u0215\u0001\u0000\u0000\u0000\u0215\u0216\u0006\u0002"+ - "\u0001\u0000\u0216\u0016\u0001\u0000\u0000\u0000\u0217\u0218\u0007\u0005"+ - "\u0000\u0000\u0218\u0219\u0007\b\u0000\u0000\u0219\u021a\u0007\u000b\u0000"+ - "\u0000\u021a\u021b\u0007\u0007\u0000\u0000\u021b\u021c\u0007\u0000\u0000"+ - "\u0000\u021c\u021d\u0007\f\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000"+ - "\u021e\u021f\u0006\u0003\u0002\u0000\u021f\u0018\u0001\u0000\u0000\u0000"+ - "\u0220\u0221\u0007\u0005\u0000\u0000\u0221\u0222\u0007\r\u0000\u0000\u0222"+ - "\u0223\u0007\u000e\u0000\u0000\u0223\u0224\u0007\u0004\u0000\u0000\u0224"+ - "\u0225\u0001\u0000\u0000\u0000\u0225\u0226\u0006\u0004\u0000\u0000\u0226"+ - "\u001a\u0001\u0000\u0000\u0000\u0227\u0228\u0007\u0005\u0000\u0000\u0228"+ - "\u0229\u0007\u000f\u0000\u0000\u0229\u022a\u0007\u0003\u0000\u0000\u022a"+ - "\u022b\u0007\u0004\u0000\u0000\u022b\u022c\u0007\u000e\u0000\u0000\u022c"+ - "\u022d\u0007\u0007\u0000\u0000\u022d\u022e\u0007\b\u0000\u0000\u022e\u022f"+ - "\u0001\u0000\u0000\u0000\u022f\u0230\u0006\u0005\u0003\u0000\u0230\u001c"+ - "\u0001\u0000\u0000\u0000\u0231\u0232\u0007\u0010\u0000\u0000\u0232\u0233"+ - "\u0007\u000b\u0000\u0000\u0233\u0234\u0007\u0001\u0000\u0000\u0234\u0235"+ - "\u0007\u0002\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237"+ - "\u0006\u0006\u0004\u0000\u0237\u001e\u0001\u0000\u0000\u0000\u0238\u0239"+ - "\u0007\u0011\u0000\u0000\u0239\u023a\u0007\u000b\u0000\u0000\u023a\u023b"+ - "\u0007\u0001\u0000\u0000\u023b\u023c\u0007\u0012\u0000\u0000\u023c\u023d"+ - "\u0001\u0000\u0000\u0000\u023d\u023e\u0006\u0007\u0000\u0000\u023e \u0001"+ - "\u0000\u0000\u0000\u023f\u0240\u0007\u0012\u0000\u0000\u0240\u0241\u0007"+ - "\u0005\u0000\u0000\u0241\u0242\u0007\u0005\u0000\u0000\u0242\u0243\u0007"+ - "\u0003\u0000\u0000\u0243\u0244\u0001\u0000\u0000\u0000\u0244\u0245\u0006"+ - "\b\u0001\u0000\u0245\"\u0001\u0000\u0000\u0000\u0246\u0247\u0007\u0004"+ - "\u0000\u0000\u0247\u0248\u0007\u0007\u0000\u0000\u0248\u0249\u0007\u0002"+ - "\u0000\u0000\u0249\u024a\u0007\u0007\u0000\u0000\u024a\u024b\u0007\u0006"+ - "\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000\u024c\u024d\u0006\t\u0000"+ - "\u0000\u024d$\u0001\u0000\u0000\u0000\u024e\u024f\u0007\u0002\u0000\u0000"+ - "\u024f\u0250\u0007\r\u0000\u0000\u0250\u0251\u0005_\u0000\u0000\u0251"+ - "\u0252\u0007\u0005\u0000\u0000\u0252\u0253\u0007\u000f\u0000\u0000\u0253"+ - "\u0254\u0007\u0003\u0000\u0000\u0254\u0255\u0007\u000e\u0000\u0000\u0255"+ - "\u0256\u0007\b\u0000\u0000\u0256\u0257\u0007\t\u0000\u0000\u0257\u0258"+ - "\u0001\u0000\u0000\u0000\u0258\u0259\u0006\n\u0005\u0000\u0259&\u0001"+ - "\u0000\u0000\u0000\u025a\u025b\u0007\u000b\u0000\u0000\u025b\u025c\u0007"+ - "\u0005\u0000\u0000\u025c\u025d\u0007\b\u0000\u0000\u025d\u025e\u0007\u000e"+ - "\u0000\u0000\u025e\u025f\u0007\u0002\u0000\u0000\u025f\u0260\u0007\u0005"+ - "\u0000\u0000\u0260\u0261\u0001\u0000\u0000\u0000\u0261\u0262\u0006\u000b"+ - "\u0006\u0000\u0262(\u0001\u0000\u0000\u0000\u0263\u0264\u0007\u000b\u0000"+ - "\u0000\u0264\u0265\u0007\u0001\u0000\u0000\u0265\u0266\u0007\u0013\u0000"+ - "\u0000\u0266\u0267\u0001\u0000\u0000\u0000\u0267\u0268\u0006\f\u0000\u0000"+ - "\u0268*\u0001\u0000\u0000\u0000\u0269\u026a\u0007\n\u0000\u0000\u026a"+ - "\u026b\u0007\f\u0000\u0000\u026b\u026c\u0007\u0001\u0000\u0000\u026c\u026d"+ - "\u0007\u0013\u0000\u0000\u026d\u026e\u0001\u0000\u0000\u0000\u026e\u026f"+ - "\u0006\r\u0007\u0000\u026f,\u0001\u0000\u0000\u0000\u0270\u0271\u0007"+ - "\n\u0000\u0000\u0271\u0272\u0007\u0001\u0000\u0000\u0272\u0273\u0007\u000b"+ - "\u0000\u0000\u0273\u0274\u0007\u0006\u0000\u0000\u0274\u0275\u0001\u0000"+ - "\u0000\u0000\u0275\u0276\u0006\u000e\u0000\u0000\u0276.\u0001\u0000\u0000"+ - "\u0000\u0277\u0278\u0007\n\u0000\u0000\u0278\u0279\u0007\u0006\u0000\u0000"+ - "\u0279\u027a\u0007\u000e\u0000\u0000\u027a\u027b\u0007\u0006\u0000\u0000"+ - "\u027b\u027c\u0007\n\u0000\u0000\u027c\u027d\u0001\u0000\u0000\u0000\u027d"+ - "\u027e\u0006\u000f\u0000\u0000\u027e0\u0001\u0000\u0000\u0000\u027f\u0280"+ - "\u0007\u0013\u0000\u0000\u0280\u0281\u0007\f\u0000\u0000\u0281\u0282\u0007"+ - "\u0005\u0000\u0000\u0282\u0283\u0007\u000b\u0000\u0000\u0283\u0284\u0007"+ - "\u0005\u0000\u0000\u0284\u0285\u0001\u0000\u0000\u0000\u0285\u0286\u0006"+ - "\u0010\u0000\u0000\u02862\u0001\u0000\u0000\u0000\u0287\u0288\u0007\u0004"+ - "\u0000\u0000\u0288\u0289\u0007\u0001\u0000\u0000\u0289\u028a\u0007\u0001"+ - "\u0000\u0000\u028a\u028b\u0007\u0012\u0000\u0000\u028b\u028c\u0007\u0014"+ - "\u0000\u0000\u028c\u028d\u0007\u0003\u0000\u0000\u028d\u028e\u0001\u0000"+ - "\u0000\u0000\u028e\u028f\u0006\u0011\b\u0000\u028f4\u0001\u0000\u0000"+ - "\u0000\u0290\u0291\u0007\u0000\u0000\u0000\u0291\u0292\u0007\f\u0000\u0000"+ - "\u0292\u0293\u0007\u000e\u0000\u0000\u0293\u0294\u0007\b\u0000\u0000\u0294"+ - "\u0295\u0007\u0011\u0000\u0000\u0295\u0296\u0007\u0005\u0000\u0000\u0296"+ - "\u0297\u0005_\u0000\u0000\u0297\u0298\u0007\u0003\u0000\u0000\u0298\u0299"+ - "\u0007\u0001\u0000\u0000\u0299\u029a\u0007\u0007\u0000\u0000\u029a\u029b"+ - "\u0007\b\u0000\u0000\u029b\u029c\u0007\u0006\u0000\u0000\u029c\u029d\u0001"+ - "\u0000\u0000\u0000\u029d\u029e\u0006\u0012\t\u0000\u029e6\u0001\u0000"+ - "\u0000\u0000\u029f\u02a0\u0004\u0013\u0000\u0000\u02a0\u02a1\u0007\u0007"+ - "\u0000\u0000\u02a1\u02a2\u0007\b\u0000\u0000\u02a2\u02a3\u0007\u0004\u0000"+ - "\u0000\u02a3\u02a4\u0007\u0007\u0000\u0000\u02a4\u02a5\u0007\b\u0000\u0000"+ - "\u02a5\u02a6\u0007\u0005\u0000\u0000\u02a6\u02a7\u0007\n\u0000\u0000\u02a7"+ - "\u02a8\u0007\u0006\u0000\u0000\u02a8\u02a9\u0007\u000e\u0000\u0000\u02a9"+ - "\u02aa\u0007\u0006\u0000\u0000\u02aa\u02ab\u0007\n\u0000\u0000\u02ab\u02ac"+ - "\u0001\u0000\u0000\u0000\u02ac\u02ad\u0006\u0013\u0000\u0000\u02ad8\u0001"+ - "\u0000\u0000\u0000\u02ae\u02af\u0004\u0014\u0001\u0000\u02af\u02b0\u0007"+ - "\u0004\u0000\u0000\u02b0\u02b1\u0007\u0001\u0000\u0000\u02b1\u02b2\u0007"+ - "\u0001\u0000\u0000\u02b2\u02b3\u0007\u0012\u0000\u0000\u02b3\u02b4\u0007"+ - "\u0014\u0000\u0000\u02b4\u02b5\u0007\u0003\u0000\u0000\u02b5\u02b6\u0005"+ - "_\u0000\u0000\u02b6\u02b7\u0005\u8001\uf414\u0000\u0000\u02b7\u02b8\u0001"+ - "\u0000\u0000\u0000\u02b8\u02b9\u0006\u0014\n\u0000\u02b9:\u0001\u0000"+ - "\u0000\u0000\u02ba\u02bb\u0004\u0015\u0002\u0000\u02bb\u02bc\u0007\u0002"+ - "\u0000\u0000\u02bc\u02bd\u0007\u0005\u0000\u0000\u02bd\u02be\u0007\u0006"+ - "\u0000\u0000\u02be\u02bf\u0007\u000b\u0000\u0000\u02bf\u02c0\u0007\u0007"+ - "\u0000\u0000\u02c0\u02c1\u0007\u0000\u0000\u0000\u02c1\u02c2\u0007\n\u0000"+ - "\u0000\u02c2\u02c3\u0001\u0000\u0000\u0000\u02c3\u02c4\u0006\u0015\u000b"+ - "\u0000\u02c4<\u0001\u0000\u0000\u0000\u02c5\u02c6\u0004\u0016\u0003\u0000"+ - "\u02c6\u02c7\u0007\u000b\u0000\u0000\u02c7\u02c8\u0007\u0005\u0000\u0000"+ - "\u02c8\u02c9\u0007\u000b\u0000\u0000\u02c9\u02ca\u0007\u000e\u0000\u0000"+ - "\u02ca\u02cb\u0007\b\u0000\u0000\u02cb\u02cc\u0007\u0012\u0000\u0000\u02cc"+ - "\u02cd\u0001\u0000\u0000\u0000\u02cd\u02ce\u0006\u0016\u0000\u0000\u02ce"+ - ">\u0001\u0000\u0000\u0000\u02cf\u02d0\u0004\u0017\u0004\u0000\u02d0\u02d1"+ - "\u0007\u0010\u0000\u0000\u02d1\u02d2\u0007\u0014\u0000\u0000\u02d2\u02d3"+ - "\u0007\u0004\u0000\u0000\u02d3\u02d4\u0007\u0004\u0000\u0000\u02d4\u02d5"+ - "\u0001\u0000\u0000\u0000\u02d5\u02d6\u0006\u0017\b\u0000\u02d6@\u0001"+ - "\u0000\u0000\u0000\u02d7\u02d8\u0004\u0018\u0005\u0000\u02d8\u02d9\u0007"+ - "\u0004\u0000\u0000\u02d9\u02da\u0007\u0005\u0000\u0000\u02da\u02db\u0007"+ - "\u0010\u0000\u0000\u02db\u02dc\u0007\u0006\u0000\u0000\u02dc\u02dd\u0001"+ - "\u0000\u0000\u0000\u02dd\u02de\u0006\u0018\b\u0000\u02deB\u0001\u0000"+ - "\u0000\u0000\u02df\u02e0\u0004\u0019\u0006\u0000\u02e0\u02e1\u0007\u000b"+ - "\u0000\u0000\u02e1\u02e2\u0007\u0007\u0000\u0000\u02e2\u02e3\u0007\u0011"+ - "\u0000\u0000\u02e3\u02e4\u0007\f\u0000\u0000\u02e4\u02e5\u0007\u0006\u0000"+ - "\u0000\u02e5\u02e6\u0001\u0000\u0000\u0000\u02e6\u02e7\u0006\u0019\b\u0000"+ - "\u02e7D\u0001\u0000\u0000\u0000\u02e8\u02ea\b\u0015\u0000\u0000\u02e9"+ - "\u02e8\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb"+ - "\u02e9\u0001\u0000\u0000\u0000\u02eb\u02ec\u0001\u0000\u0000\u0000\u02ec"+ - "\u02ed\u0001\u0000\u0000\u0000\u02ed\u02ee\u0006\u001a\u0000\u0000\u02ee"+ - "F\u0001\u0000\u0000\u0000\u02ef\u02f0\u0005/\u0000\u0000\u02f0\u02f1\u0005"+ - "/\u0000\u0000\u02f1\u02f5\u0001\u0000\u0000\u0000\u02f2\u02f4\b\u0016"+ - "\u0000\u0000\u02f3\u02f2\u0001\u0000\u0000\u0000\u02f4\u02f7\u0001\u0000"+ - "\u0000\u0000\u02f5\u02f3\u0001\u0000\u0000\u0000\u02f5\u02f6\u0001\u0000"+ - "\u0000\u0000\u02f6\u02f9\u0001\u0000\u0000\u0000\u02f7\u02f5\u0001\u0000"+ - "\u0000\u0000\u02f8\u02fa\u0005\r\u0000\u0000\u02f9\u02f8\u0001\u0000\u0000"+ - "\u0000\u02f9\u02fa\u0001\u0000\u0000\u0000\u02fa\u02fc\u0001\u0000\u0000"+ - "\u0000\u02fb\u02fd\u0005\n\u0000\u0000\u02fc\u02fb\u0001\u0000\u0000\u0000"+ - "\u02fc\u02fd\u0001\u0000\u0000\u0000\u02fd\u02fe\u0001\u0000\u0000\u0000"+ - "\u02fe\u02ff\u0006\u001b\f\u0000\u02ffH\u0001\u0000\u0000\u0000\u0300"+ - "\u0301\u0005/\u0000\u0000\u0301\u0302\u0005*\u0000\u0000\u0302\u0307\u0001"+ - "\u0000\u0000\u0000\u0303\u0306\u0003I\u001c\u0000\u0304\u0306\t\u0000"+ - "\u0000\u0000\u0305\u0303\u0001\u0000\u0000\u0000\u0305\u0304\u0001\u0000"+ - "\u0000\u0000\u0306\u0309\u0001\u0000\u0000\u0000\u0307\u0308\u0001\u0000"+ - "\u0000\u0000\u0307\u0305\u0001\u0000\u0000\u0000\u0308\u030a\u0001\u0000"+ - "\u0000\u0000\u0309\u0307\u0001\u0000\u0000\u0000\u030a\u030b\u0005*\u0000"+ - "\u0000\u030b\u030c\u0005/\u0000\u0000\u030c\u030d\u0001\u0000\u0000\u0000"+ - "\u030d\u030e\u0006\u001c\f\u0000\u030eJ\u0001\u0000\u0000\u0000\u030f"+ - "\u0311\u0007\u0017\u0000\u0000\u0310\u030f\u0001\u0000\u0000\u0000\u0311"+ - "\u0312\u0001\u0000\u0000\u0000\u0312\u0310\u0001\u0000\u0000\u0000\u0312"+ - "\u0313\u0001\u0000\u0000\u0000\u0313\u0314\u0001\u0000\u0000\u0000\u0314"+ - "\u0315\u0006\u001d\f\u0000\u0315L\u0001\u0000\u0000\u0000\u0316\u0317"+ - "\u0005|\u0000\u0000\u0317\u0318\u0001\u0000\u0000\u0000\u0318\u0319\u0006"+ - "\u001e\r\u0000\u0319N\u0001\u0000\u0000\u0000\u031a\u031b\u0007\u0018"+ - "\u0000\u0000\u031bP\u0001\u0000\u0000\u0000\u031c\u031d\u0007\u0019\u0000"+ - "\u0000\u031dR\u0001\u0000\u0000\u0000\u031e\u031f\u0005\\\u0000\u0000"+ - "\u031f\u0320\u0007\u001a\u0000\u0000\u0320T\u0001\u0000\u0000\u0000\u0321"+ - "\u0322\b\u001b\u0000\u0000\u0322V\u0001\u0000\u0000\u0000\u0323\u0325"+ - "\u0007\u0005\u0000\u0000\u0324\u0326\u0007\u001c\u0000\u0000\u0325\u0324"+ - "\u0001\u0000\u0000\u0000\u0325\u0326\u0001\u0000\u0000\u0000\u0326\u0328"+ - "\u0001\u0000\u0000\u0000\u0327\u0329\u0003O\u001f\u0000\u0328\u0327\u0001"+ - "\u0000\u0000\u0000\u0329\u032a\u0001\u0000\u0000\u0000\u032a\u0328\u0001"+ - "\u0000\u0000\u0000\u032a\u032b\u0001\u0000\u0000\u0000\u032bX\u0001\u0000"+ - "\u0000\u0000\u032c\u032d\u0005@\u0000\u0000\u032dZ\u0001\u0000\u0000\u0000"+ - "\u032e\u032f\u0005`\u0000\u0000\u032f\\\u0001\u0000\u0000\u0000\u0330"+ - "\u0334\b\u001d\u0000\u0000\u0331\u0332\u0005`\u0000\u0000\u0332\u0334"+ - "\u0005`\u0000\u0000\u0333\u0330\u0001\u0000\u0000\u0000\u0333\u0331\u0001"+ - "\u0000\u0000\u0000\u0334^\u0001\u0000\u0000\u0000\u0335\u0336\u0005_\u0000"+ - "\u0000\u0336`\u0001\u0000\u0000\u0000\u0337\u033b\u0003Q \u0000\u0338"+ - "\u033b\u0003O\u001f\u0000\u0339\u033b\u0003_\'\u0000\u033a\u0337\u0001"+ - "\u0000\u0000\u0000\u033a\u0338\u0001\u0000\u0000\u0000\u033a\u0339\u0001"+ - "\u0000\u0000\u0000\u033bb\u0001\u0000\u0000\u0000\u033c\u0341\u0005\""+ - "\u0000\u0000\u033d\u0340\u0003S!\u0000\u033e\u0340\u0003U\"\u0000\u033f"+ - "\u033d\u0001\u0000\u0000\u0000\u033f\u033e\u0001\u0000\u0000\u0000\u0340"+ - "\u0343\u0001\u0000\u0000\u0000\u0341\u033f\u0001\u0000\u0000\u0000\u0341"+ - "\u0342\u0001\u0000\u0000\u0000\u0342\u0344\u0001\u0000\u0000\u0000\u0343"+ - "\u0341\u0001\u0000\u0000\u0000\u0344\u035a\u0005\"\u0000\u0000\u0345\u0346"+ - "\u0005\"\u0000\u0000\u0346\u0347\u0005\"\u0000\u0000\u0347\u0348\u0005"+ - "\"\u0000\u0000\u0348\u034c\u0001\u0000\u0000\u0000\u0349\u034b\b\u0016"+ - "\u0000\u0000\u034a\u0349\u0001\u0000\u0000\u0000\u034b\u034e\u0001\u0000"+ - "\u0000\u0000\u034c\u034d\u0001\u0000\u0000\u0000\u034c\u034a\u0001\u0000"+ - "\u0000\u0000\u034d\u034f\u0001\u0000\u0000\u0000\u034e\u034c\u0001\u0000"+ - "\u0000\u0000\u034f\u0350\u0005\"\u0000\u0000\u0350\u0351\u0005\"\u0000"+ - "\u0000\u0351\u0352\u0005\"\u0000\u0000\u0352\u0354\u0001\u0000\u0000\u0000"+ - "\u0353\u0355\u0005\"\u0000\u0000\u0354\u0353\u0001\u0000\u0000\u0000\u0354"+ - "\u0355\u0001\u0000\u0000\u0000\u0355\u0357\u0001\u0000\u0000\u0000\u0356"+ - "\u0358\u0005\"\u0000\u0000\u0357\u0356\u0001\u0000\u0000\u0000\u0357\u0358"+ - "\u0001\u0000\u0000\u0000\u0358\u035a\u0001\u0000\u0000\u0000\u0359\u033c"+ - "\u0001\u0000\u0000\u0000\u0359\u0345\u0001\u0000\u0000\u0000\u035ad\u0001"+ - "\u0000\u0000\u0000\u035b\u035d\u0003O\u001f\u0000\u035c\u035b\u0001\u0000"+ - "\u0000\u0000\u035d\u035e\u0001\u0000\u0000\u0000\u035e\u035c\u0001\u0000"+ - "\u0000\u0000\u035e\u035f\u0001\u0000\u0000\u0000\u035ff\u0001\u0000\u0000"+ - "\u0000\u0360\u0362\u0003O\u001f\u0000\u0361\u0360\u0001\u0000\u0000\u0000"+ - "\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0361\u0001\u0000\u0000\u0000"+ - "\u0363\u0364\u0001\u0000\u0000\u0000\u0364\u0365\u0001\u0000\u0000\u0000"+ - "\u0365\u0369\u0003y4\u0000\u0366\u0368\u0003O\u001f\u0000\u0367\u0366"+ - "\u0001\u0000\u0000\u0000\u0368\u036b\u0001\u0000\u0000\u0000\u0369\u0367"+ - "\u0001\u0000\u0000\u0000\u0369\u036a\u0001\u0000\u0000\u0000\u036a\u038b"+ - "\u0001\u0000\u0000\u0000\u036b\u0369\u0001\u0000\u0000\u0000\u036c\u036e"+ - "\u0003y4\u0000\u036d\u036f\u0003O\u001f\u0000\u036e\u036d\u0001\u0000"+ - "\u0000\u0000\u036f\u0370\u0001\u0000\u0000\u0000\u0370\u036e\u0001\u0000"+ - "\u0000\u0000\u0370\u0371\u0001\u0000\u0000\u0000\u0371\u038b\u0001\u0000"+ - "\u0000\u0000\u0372\u0374\u0003O\u001f\u0000\u0373\u0372\u0001\u0000\u0000"+ - "\u0000\u0374\u0375\u0001\u0000\u0000\u0000\u0375\u0373\u0001\u0000\u0000"+ - "\u0000\u0375\u0376\u0001\u0000\u0000\u0000\u0376\u037e\u0001\u0000\u0000"+ - "\u0000\u0377\u037b\u0003y4\u0000\u0378\u037a\u0003O\u001f\u0000\u0379"+ - "\u0378\u0001\u0000\u0000\u0000\u037a\u037d\u0001\u0000\u0000\u0000\u037b"+ - "\u0379\u0001\u0000\u0000\u0000\u037b\u037c\u0001\u0000\u0000\u0000\u037c"+ - "\u037f\u0001\u0000\u0000\u0000\u037d\u037b\u0001\u0000\u0000\u0000\u037e"+ - "\u0377\u0001\u0000\u0000\u0000\u037e\u037f\u0001\u0000\u0000\u0000\u037f"+ - "\u0380\u0001\u0000\u0000\u0000\u0380\u0381\u0003W#\u0000\u0381\u038b\u0001"+ - "\u0000\u0000\u0000\u0382\u0384\u0003y4\u0000\u0383\u0385\u0003O\u001f"+ - "\u0000\u0384\u0383\u0001\u0000\u0000\u0000\u0385\u0386\u0001\u0000\u0000"+ - "\u0000\u0386\u0384\u0001\u0000\u0000\u0000\u0386\u0387\u0001\u0000\u0000"+ - "\u0000\u0387\u0388\u0001\u0000\u0000\u0000\u0388\u0389\u0003W#\u0000\u0389"+ - "\u038b\u0001\u0000\u0000\u0000\u038a\u0361\u0001\u0000\u0000\u0000\u038a"+ - "\u036c\u0001\u0000\u0000\u0000\u038a\u0373\u0001\u0000\u0000\u0000\u038a"+ - "\u0382\u0001\u0000\u0000\u0000\u038bh\u0001\u0000\u0000\u0000\u038c\u038d"+ - "\u0007\u000e\u0000\u0000\u038d\u038e\u0007\b\u0000\u0000\u038e\u038f\u0007"+ - "\t\u0000\u0000\u038fj\u0001\u0000\u0000\u0000\u0390\u0391\u0007\u000e"+ - "\u0000\u0000\u0391\u0392\u0007\n\u0000\u0000\u0392\u0393\u0007\u0000\u0000"+ - "\u0000\u0393l\u0001\u0000\u0000\u0000\u0394\u0395\u0005=\u0000\u0000\u0395"+ - "n\u0001\u0000\u0000\u0000\u0396\u0397\u0007\u001e\u0000\u0000\u0397\u0398"+ - "\u0007\u001f\u0000\u0000\u0398p\u0001\u0000\u0000\u0000\u0399\u039a\u0005"+ - ":\u0000\u0000\u039a\u039b\u0005:\u0000\u0000\u039br\u0001\u0000\u0000"+ - "\u0000\u039c\u039d\u0005:\u0000\u0000\u039dt\u0001\u0000\u0000\u0000\u039e"+ - "\u039f\u0005,\u0000\u0000\u039fv\u0001\u0000\u0000\u0000\u03a0\u03a1\u0007"+ - "\t\u0000\u0000\u03a1\u03a2\u0007\u0005\u0000\u0000\u03a2\u03a3\u0007\n"+ - "\u0000\u0000\u03a3\u03a4\u0007\u0000\u0000\u0000\u03a4x\u0001\u0000\u0000"+ - "\u0000\u03a5\u03a6\u0005.\u0000\u0000\u03a6z\u0001\u0000\u0000\u0000\u03a7"+ - "\u03a8\u0007\u0010\u0000\u0000\u03a8\u03a9\u0007\u000e\u0000\u0000\u03a9"+ - "\u03aa\u0007\u0004\u0000\u0000\u03aa\u03ab\u0007\n\u0000\u0000\u03ab\u03ac"+ - "\u0007\u0005\u0000\u0000\u03ac|\u0001\u0000\u0000\u0000\u03ad\u03ae\u0007"+ - "\u0010\u0000\u0000\u03ae\u03af\u0007\u0007\u0000\u0000\u03af\u03b0\u0007"+ - "\u000b\u0000\u0000\u03b0\u03b1\u0007\n\u0000\u0000\u03b1\u03b2\u0007\u0006"+ - "\u0000\u0000\u03b2~\u0001\u0000\u0000\u0000\u03b3\u03b4\u0007\u0007\u0000"+ - "\u0000\u03b4\u03b5\u0007\b\u0000\u0000\u03b5\u0080\u0001\u0000\u0000\u0000"+ - "\u03b6\u03b7\u0007\u0007\u0000\u0000\u03b7\u03b8\u0007\n\u0000\u0000\u03b8"+ - "\u0082\u0001\u0000\u0000\u0000\u03b9\u03ba\u0007\u0004\u0000\u0000\u03ba"+ - "\u03bb\u0007\u000e\u0000\u0000\u03bb\u03bc\u0007\n\u0000\u0000\u03bc\u03bd"+ - "\u0007\u0006\u0000\u0000\u03bd\u0084\u0001\u0000\u0000\u0000\u03be\u03bf"+ - "\u0007\u0004\u0000\u0000\u03bf\u03c0\u0007\u0007\u0000\u0000\u03c0\u03c1"+ - "\u0007\u0012\u0000\u0000\u03c1\u03c2\u0007\u0005\u0000\u0000\u03c2\u0086"+ - "\u0001\u0000\u0000\u0000\u03c3\u03c4\u0005(\u0000\u0000\u03c4\u0088\u0001"+ - "\u0000\u0000\u0000\u03c5\u03c6\u0007\b\u0000\u0000\u03c6\u03c7\u0007\u0001"+ - "\u0000\u0000\u03c7\u03c8\u0007\u0006\u0000\u0000\u03c8\u008a\u0001\u0000"+ - "\u0000\u0000\u03c9\u03ca\u0007\b\u0000\u0000\u03ca\u03cb\u0007\u0014\u0000"+ - "\u0000\u03cb\u03cc\u0007\u0004\u0000\u0000\u03cc\u03cd\u0007\u0004\u0000"+ - "\u0000\u03cd\u008c\u0001\u0000\u0000\u0000\u03ce\u03cf\u0007\b\u0000\u0000"+ - "\u03cf\u03d0\u0007\u0014\u0000\u0000\u03d0\u03d1\u0007\u0004\u0000\u0000"+ - "\u03d1\u03d2\u0007\u0004\u0000\u0000\u03d2\u03d3\u0007\n\u0000\u0000\u03d3"+ - "\u008e\u0001\u0000\u0000\u0000\u03d4\u03d5\u0007\u0001\u0000\u0000\u03d5"+ - "\u03d6\u0007\b\u0000\u0000\u03d6\u0090\u0001\u0000\u0000\u0000\u03d7\u03d8"+ - "\u0007\u0001\u0000\u0000\u03d8\u03d9\u0007\u000b\u0000\u0000\u03d9\u0092"+ - "\u0001\u0000\u0000\u0000\u03da\u03db\u0005?\u0000\u0000\u03db\u0094\u0001"+ - "\u0000\u0000\u0000\u03dc\u03dd\u0007\u000b\u0000\u0000\u03dd\u03de\u0007"+ - "\u0004\u0000\u0000\u03de\u03df\u0007\u0007\u0000\u0000\u03df\u03e0\u0007"+ - "\u0012\u0000\u0000\u03e0\u03e1\u0007\u0005\u0000\u0000\u03e1\u0096\u0001"+ - "\u0000\u0000\u0000\u03e2\u03e3\u0005)\u0000\u0000\u03e3\u0098\u0001\u0000"+ - "\u0000\u0000\u03e4\u03e5\u0007\u0006\u0000\u0000\u03e5\u03e6\u0007\u000b"+ - "\u0000\u0000\u03e6\u03e7\u0007\u0014\u0000\u0000\u03e7\u03e8\u0007\u0005"+ - "\u0000\u0000\u03e8\u009a\u0001\u0000\u0000\u0000\u03e9\u03ea\u0007\u0013"+ - "\u0000\u0000\u03ea\u03eb\u0007\u0007\u0000\u0000\u03eb\u03ec\u0007\u0006"+ - "\u0000\u0000\u03ec\u03ed\u0007\f\u0000\u0000\u03ed\u009c\u0001\u0000\u0000"+ - "\u0000\u03ee\u03ef\u0005=\u0000\u0000\u03ef\u03f0\u0005=\u0000\u0000\u03f0"+ - "\u009e\u0001\u0000\u0000\u0000\u03f1\u03f2\u0005=\u0000\u0000\u03f2\u03f3"+ - "\u0005~\u0000\u0000\u03f3\u00a0\u0001\u0000\u0000\u0000\u03f4\u03f5\u0005"+ - "!\u0000\u0000\u03f5\u03f6\u0005=\u0000\u0000\u03f6\u00a2\u0001\u0000\u0000"+ - "\u0000\u03f7\u03f8\u0005<\u0000\u0000\u03f8\u00a4\u0001\u0000\u0000\u0000"+ - "\u03f9\u03fa\u0005<\u0000\u0000\u03fa\u03fb\u0005=\u0000\u0000\u03fb\u00a6"+ - "\u0001\u0000\u0000\u0000\u03fc\u03fd\u0005>\u0000\u0000\u03fd\u00a8\u0001"+ - "\u0000\u0000\u0000\u03fe\u03ff\u0005>\u0000\u0000\u03ff\u0400\u0005=\u0000"+ - "\u0000\u0400\u00aa\u0001\u0000\u0000\u0000\u0401\u0402\u0005+\u0000\u0000"+ - "\u0402\u00ac\u0001\u0000\u0000\u0000\u0403\u0404\u0005-\u0000\u0000\u0404"+ - "\u00ae\u0001\u0000\u0000\u0000\u0405\u0406\u0005*\u0000\u0000\u0406\u00b0"+ - "\u0001\u0000\u0000\u0000\u0407\u0408\u0005/\u0000\u0000\u0408\u00b2\u0001"+ - "\u0000\u0000\u0000\u0409\u040a\u0005%\u0000\u0000\u040a\u00b4\u0001\u0000"+ - "\u0000\u0000\u040b\u040c\u0005{\u0000\u0000\u040c\u00b6\u0001\u0000\u0000"+ - "\u0000\u040d\u040e\u0005}\u0000\u0000\u040e\u00b8\u0001\u0000\u0000\u0000"+ - "\u040f\u0410\u0005?\u0000\u0000\u0410\u0411\u0005?\u0000\u0000\u0411\u00ba"+ - "\u0001\u0000\u0000\u0000\u0412\u0413\u00031\u0010\u0000\u0413\u0414\u0001"+ - "\u0000\u0000\u0000\u0414\u0415\u0006U\u000e\u0000\u0415\u00bc\u0001\u0000"+ - "\u0000\u0000\u0416\u0419\u0003\u0093A\u0000\u0417\u041a\u0003Q \u0000"+ - "\u0418\u041a\u0003_\'\u0000\u0419\u0417\u0001\u0000\u0000\u0000\u0419"+ - "\u0418\u0001\u0000\u0000\u0000\u041a\u041e\u0001\u0000\u0000\u0000\u041b"+ - "\u041d\u0003a(\u0000\u041c\u041b\u0001\u0000\u0000\u0000\u041d\u0420\u0001"+ - "\u0000\u0000\u0000\u041e\u041c\u0001\u0000\u0000\u0000\u041e\u041f\u0001"+ - "\u0000\u0000\u0000\u041f\u0428\u0001\u0000\u0000\u0000\u0420\u041e\u0001"+ - "\u0000\u0000\u0000\u0421\u0423\u0003\u0093A\u0000\u0422\u0424\u0003O\u001f"+ - "\u0000\u0423\u0422\u0001\u0000\u0000\u0000\u0424\u0425\u0001\u0000\u0000"+ - "\u0000\u0425\u0423\u0001\u0000\u0000\u0000\u0425\u0426\u0001\u0000\u0000"+ - "\u0000\u0426\u0428\u0001\u0000\u0000\u0000\u0427\u0416\u0001\u0000\u0000"+ - "\u0000\u0427\u0421\u0001\u0000\u0000\u0000\u0428\u00be\u0001\u0000\u0000"+ - "\u0000\u0429\u042c\u0003\u00b9T\u0000\u042a\u042d\u0003Q \u0000\u042b"+ - "\u042d\u0003_\'\u0000\u042c\u042a\u0001\u0000\u0000\u0000\u042c\u042b"+ - "\u0001\u0000\u0000\u0000\u042d\u0431\u0001\u0000\u0000\u0000\u042e\u0430"+ - "\u0003a(\u0000\u042f\u042e\u0001\u0000\u0000\u0000\u0430\u0433\u0001\u0000"+ - "\u0000\u0000\u0431\u042f\u0001\u0000\u0000\u0000\u0431\u0432\u0001\u0000"+ - "\u0000\u0000\u0432\u043b\u0001\u0000\u0000\u0000\u0433\u0431\u0001\u0000"+ - "\u0000\u0000\u0434\u0436\u0003\u00b9T\u0000\u0435\u0437\u0003O\u001f\u0000"+ - "\u0436\u0435\u0001\u0000\u0000\u0000\u0437\u0438\u0001\u0000\u0000\u0000"+ - "\u0438\u0436\u0001\u0000\u0000\u0000\u0438\u0439\u0001\u0000\u0000\u0000"+ - "\u0439\u043b\u0001\u0000\u0000\u0000\u043a\u0429\u0001\u0000\u0000\u0000"+ - "\u043a\u0434\u0001\u0000\u0000\u0000\u043b\u00c0\u0001\u0000\u0000\u0000"+ - "\u043c\u043d\u0005[\u0000\u0000\u043d\u043e\u0001\u0000\u0000\u0000\u043e"+ - "\u043f\u0006X\u0000\u0000\u043f\u0440\u0006X\u0000\u0000\u0440\u00c2\u0001"+ - "\u0000\u0000\u0000\u0441\u0442\u0005]\u0000\u0000\u0442\u0443\u0001\u0000"+ - "\u0000\u0000\u0443\u0444\u0006Y\r\u0000\u0444\u0445\u0006Y\r\u0000\u0445"+ - "\u00c4\u0001\u0000\u0000\u0000\u0446\u044a\u0003Q \u0000\u0447\u0449\u0003"+ - "a(\u0000\u0448\u0447\u0001\u0000\u0000\u0000\u0449\u044c\u0001\u0000\u0000"+ - "\u0000\u044a\u0448\u0001\u0000\u0000\u0000\u044a\u044b\u0001\u0000\u0000"+ - "\u0000\u044b\u0457\u0001\u0000\u0000\u0000\u044c\u044a\u0001\u0000\u0000"+ - "\u0000\u044d\u0450\u0003_\'\u0000\u044e\u0450\u0003Y$\u0000\u044f\u044d"+ - "\u0001\u0000\u0000\u0000\u044f\u044e\u0001\u0000\u0000\u0000\u0450\u0452"+ - "\u0001\u0000\u0000\u0000\u0451\u0453\u0003a(\u0000\u0452\u0451\u0001\u0000"+ - "\u0000\u0000\u0453\u0454\u0001\u0000\u0000\u0000\u0454\u0452\u0001\u0000"+ - "\u0000\u0000\u0454\u0455\u0001\u0000\u0000\u0000\u0455\u0457\u0001\u0000"+ - "\u0000\u0000\u0456\u0446\u0001\u0000\u0000\u0000\u0456\u044f\u0001\u0000"+ - "\u0000\u0000\u0457\u00c6\u0001\u0000\u0000\u0000\u0458\u045a\u0003[%\u0000"+ - "\u0459\u045b\u0003]&\u0000\u045a\u0459\u0001\u0000\u0000\u0000\u045b\u045c"+ - "\u0001\u0000\u0000\u0000\u045c\u045a\u0001\u0000\u0000\u0000\u045c\u045d"+ - "\u0001\u0000\u0000\u0000\u045d\u045e\u0001\u0000\u0000\u0000\u045e\u045f"+ - "\u0003[%\u0000\u045f\u00c8\u0001\u0000\u0000\u0000\u0460\u0461\u0003\u00c7"+ - "[\u0000\u0461\u00ca\u0001\u0000\u0000\u0000\u0462\u0463\u0003G\u001b\u0000"+ - "\u0463\u0464\u0001\u0000\u0000\u0000\u0464\u0465\u0006]\f\u0000\u0465"+ - "\u00cc\u0001\u0000\u0000\u0000\u0466\u0467\u0003I\u001c\u0000\u0467\u0468"+ - "\u0001\u0000\u0000\u0000\u0468\u0469\u0006^\f\u0000\u0469\u00ce\u0001"+ - "\u0000\u0000\u0000\u046a\u046b\u0003K\u001d\u0000\u046b\u046c\u0001\u0000"+ - "\u0000\u0000\u046c\u046d\u0006_\f\u0000\u046d\u00d0\u0001\u0000\u0000"+ - "\u0000\u046e\u046f\u0003\u00c1X\u0000\u046f\u0470\u0001\u0000\u0000\u0000"+ - "\u0470\u0471\u0006`\u000f\u0000\u0471\u0472\u0006`\u0010\u0000\u0472\u00d2"+ - "\u0001\u0000\u0000\u0000\u0473\u0474\u0003M\u001e\u0000\u0474\u0475\u0001"+ - "\u0000\u0000\u0000\u0475\u0476\u0006a\u0011\u0000\u0476\u0477\u0006a\r"+ - "\u0000\u0477\u00d4\u0001\u0000\u0000\u0000\u0478\u0479\u0003K\u001d\u0000"+ - "\u0479\u047a\u0001\u0000\u0000\u0000\u047a\u047b\u0006b\f\u0000\u047b"+ - "\u00d6\u0001\u0000\u0000\u0000\u047c\u047d\u0003G\u001b\u0000\u047d\u047e"+ - "\u0001\u0000\u0000\u0000\u047e\u047f\u0006c\f\u0000\u047f\u00d8\u0001"+ - "\u0000\u0000\u0000\u0480\u0481\u0003I\u001c\u0000\u0481\u0482\u0001\u0000"+ - "\u0000\u0000\u0482\u0483\u0006d\f\u0000\u0483\u00da\u0001\u0000\u0000"+ - "\u0000\u0484\u0485\u0003M\u001e\u0000\u0485\u0486\u0001\u0000\u0000\u0000"+ - "\u0486\u0487\u0006e\u0011\u0000\u0487\u0488\u0006e\r\u0000\u0488\u00dc"+ - "\u0001\u0000\u0000\u0000\u0489\u048a\u0003\u00c1X\u0000\u048a\u048b\u0001"+ - "\u0000\u0000\u0000\u048b\u048c\u0006f\u000f\u0000\u048c\u00de\u0001\u0000"+ - "\u0000\u0000\u048d\u048e\u0003\u00c3Y\u0000\u048e\u048f\u0001\u0000\u0000"+ - "\u0000\u048f\u0490\u0006g\u0012\u0000\u0490\u00e0\u0001\u0000\u0000\u0000"+ - "\u0491\u0492\u0003s1\u0000\u0492\u0493\u0001\u0000\u0000\u0000\u0493\u0494"+ - "\u0006h\u0013\u0000\u0494\u00e2\u0001\u0000\u0000\u0000\u0495\u0496\u0003"+ - "q0\u0000\u0496\u0497\u0001\u0000\u0000\u0000\u0497\u0498\u0006i\u0014"+ - "\u0000\u0498\u00e4\u0001\u0000\u0000\u0000\u0499\u049a\u0003u2\u0000\u049a"+ - "\u049b\u0001\u0000\u0000\u0000\u049b\u049c\u0006j\u0015\u0000\u049c\u00e6"+ - "\u0001\u0000\u0000\u0000\u049d\u049e\u0003m.\u0000\u049e\u049f\u0001\u0000"+ - "\u0000\u0000\u049f\u04a0\u0006k\u0016\u0000\u04a0\u00e8\u0001\u0000\u0000"+ - "\u0000\u04a1\u04a2\u0007\u0002\u0000\u0000\u04a2\u04a3\u0007\u0005\u0000"+ - "\u0000\u04a3\u04a4\u0007\u0006\u0000\u0000\u04a4\u04a5\u0007\u000e\u0000"+ - "\u0000\u04a5\u04a6\u0007\t\u0000\u0000\u04a6\u04a7\u0007\u000e\u0000\u0000"+ - "\u04a7\u04a8\u0007\u0006\u0000\u0000\u04a8\u04a9\u0007\u000e\u0000\u0000"+ - "\u04a9\u00ea\u0001\u0000\u0000\u0000\u04aa\u04ae\b \u0000\u0000\u04ab"+ - "\u04ac\u0005/\u0000\u0000\u04ac\u04ae\b!\u0000\u0000\u04ad\u04aa\u0001"+ - "\u0000\u0000\u0000\u04ad\u04ab\u0001\u0000\u0000\u0000\u04ae\u00ec\u0001"+ - "\u0000\u0000\u0000\u04af\u04b1\u0003\u00ebm\u0000\u04b0\u04af\u0001\u0000"+ - "\u0000\u0000\u04b1\u04b2\u0001\u0000\u0000\u0000\u04b2\u04b0\u0001\u0000"+ - "\u0000\u0000\u04b2\u04b3\u0001\u0000\u0000\u0000\u04b3\u00ee\u0001\u0000"+ - "\u0000\u0000\u04b4\u04b5\u0003\u00edn\u0000\u04b5\u04b6\u0001\u0000\u0000"+ - "\u0000\u04b6\u04b7\u0006o\u0017\u0000\u04b7\u00f0\u0001\u0000\u0000\u0000"+ - "\u04b8\u04b9\u0003c)\u0000\u04b9\u04ba\u0001\u0000\u0000\u0000\u04ba\u04bb"+ - "\u0006p\u0018\u0000\u04bb\u00f2\u0001\u0000\u0000\u0000\u04bc\u04bd\u0003"+ - "G\u001b\u0000\u04bd\u04be\u0001\u0000\u0000\u0000\u04be\u04bf\u0006q\f"+ - "\u0000\u04bf\u00f4\u0001\u0000\u0000\u0000\u04c0\u04c1\u0003I\u001c\u0000"+ - "\u04c1\u04c2\u0001\u0000\u0000\u0000\u04c2\u04c3\u0006r\f\u0000\u04c3"+ - "\u00f6\u0001\u0000\u0000\u0000\u04c4\u04c5\u0003K\u001d\u0000\u04c5\u04c6"+ - "\u0001\u0000\u0000\u0000\u04c6\u04c7\u0006s\f\u0000\u04c7\u00f8\u0001"+ - "\u0000\u0000\u0000\u04c8\u04c9\u0003M\u001e\u0000\u04c9\u04ca\u0001\u0000"+ - "\u0000\u0000\u04ca\u04cb\u0006t\u0011\u0000\u04cb\u04cc\u0006t\r\u0000"+ - "\u04cc\u00fa\u0001\u0000\u0000\u0000\u04cd\u04ce\u0003y4\u0000\u04ce\u04cf"+ - "\u0001\u0000\u0000\u0000\u04cf\u04d0\u0006u\u0019\u0000\u04d0\u00fc\u0001"+ - "\u0000\u0000\u0000\u04d1\u04d2\u0003u2\u0000\u04d2\u04d3\u0001\u0000\u0000"+ - "\u0000\u04d3\u04d4\u0006v\u0015\u0000\u04d4\u00fe\u0001\u0000\u0000\u0000"+ - "\u04d5\u04d6\u0003\u0093A\u0000\u04d6\u04d7\u0001\u0000\u0000\u0000\u04d7"+ - "\u04d8\u0006w\u001a\u0000\u04d8\u0100\u0001\u0000\u0000\u0000\u04d9\u04da"+ - "\u0003\u00bdV\u0000\u04da\u04db\u0001\u0000\u0000\u0000\u04db\u04dc\u0006"+ - "x\u001b\u0000\u04dc\u0102\u0001\u0000\u0000\u0000\u04dd\u04de\u0003\u00b9"+ - "T\u0000\u04de\u04df\u0001\u0000\u0000\u0000\u04df\u04e0\u0006y\u001c\u0000"+ - "\u04e0\u0104\u0001\u0000\u0000\u0000\u04e1\u04e2\u0003\u00bfW\u0000\u04e2"+ - "\u04e3\u0001\u0000\u0000\u0000\u04e3\u04e4\u0006z\u001d\u0000\u04e4\u0106"+ - "\u0001\u0000\u0000\u0000\u04e5\u04ea\u0003Q \u0000\u04e6\u04ea\u0003O"+ - "\u001f\u0000\u04e7\u04ea\u0003_\'\u0000\u04e8\u04ea\u0003\u00afO\u0000"+ - "\u04e9\u04e5\u0001\u0000\u0000\u0000\u04e9\u04e6\u0001\u0000\u0000\u0000"+ - "\u04e9\u04e7\u0001\u0000\u0000\u0000\u04e9\u04e8\u0001\u0000\u0000\u0000"+ - "\u04ea\u0108\u0001\u0000\u0000\u0000\u04eb\u04ee\u0003Q \u0000\u04ec\u04ee"+ - "\u0003\u00afO\u0000\u04ed\u04eb\u0001\u0000\u0000\u0000\u04ed\u04ec\u0001"+ - "\u0000\u0000\u0000\u04ee\u04f2\u0001\u0000\u0000\u0000\u04ef\u04f1\u0003"+ - "\u0107{\u0000\u04f0\u04ef\u0001\u0000\u0000\u0000\u04f1\u04f4\u0001\u0000"+ - "\u0000\u0000\u04f2\u04f0\u0001\u0000\u0000\u0000\u04f2\u04f3\u0001\u0000"+ - "\u0000\u0000\u04f3\u04ff\u0001\u0000\u0000\u0000\u04f4\u04f2\u0001\u0000"+ - "\u0000\u0000\u04f5\u04f8\u0003_\'\u0000\u04f6\u04f8\u0003Y$\u0000\u04f7"+ - "\u04f5\u0001\u0000\u0000\u0000\u04f7\u04f6\u0001\u0000\u0000\u0000\u04f8"+ - "\u04fa\u0001\u0000\u0000\u0000\u04f9\u04fb\u0003\u0107{\u0000\u04fa\u04f9"+ - "\u0001\u0000\u0000\u0000\u04fb\u04fc\u0001\u0000\u0000\u0000\u04fc\u04fa"+ - "\u0001\u0000\u0000\u0000\u04fc\u04fd\u0001\u0000\u0000\u0000\u04fd\u04ff"+ - "\u0001\u0000\u0000\u0000\u04fe\u04ed\u0001\u0000\u0000\u0000\u04fe\u04f7"+ - "\u0001\u0000\u0000\u0000\u04ff\u010a\u0001\u0000\u0000\u0000\u0500\u0503"+ - "\u0003\u0109|\u0000\u0501\u0503\u0003\u00c7[\u0000\u0502\u0500\u0001\u0000"+ - "\u0000\u0000\u0502\u0501\u0001\u0000\u0000\u0000\u0503\u0504\u0001\u0000"+ - "\u0000\u0000\u0504\u0502\u0001\u0000\u0000\u0000\u0504\u0505\u0001\u0000"+ - "\u0000\u0000\u0505\u010c\u0001\u0000\u0000\u0000\u0506\u0507\u0003G\u001b"+ - "\u0000\u0507\u0508\u0001\u0000\u0000\u0000\u0508\u0509\u0006~\f\u0000"+ - "\u0509\u010e\u0001\u0000\u0000\u0000\u050a\u050b\u0003I\u001c\u0000\u050b"+ - "\u050c\u0001\u0000\u0000\u0000\u050c\u050d\u0006\u007f\f\u0000\u050d\u0110"+ - "\u0001\u0000\u0000\u0000\u050e\u050f\u0003K\u001d\u0000\u050f\u0510\u0001"+ - "\u0000\u0000\u0000\u0510\u0511\u0006\u0080\f\u0000\u0511\u0112\u0001\u0000"+ - "\u0000\u0000\u0512\u0513\u0003M\u001e\u0000\u0513\u0514\u0001\u0000\u0000"+ - "\u0000\u0514\u0515\u0006\u0081\u0011\u0000\u0515\u0516\u0006\u0081\r\u0000"+ - "\u0516\u0114\u0001\u0000\u0000\u0000\u0517\u0518\u0003m.\u0000\u0518\u0519"+ - "\u0001\u0000\u0000\u0000\u0519\u051a\u0006\u0082\u0016\u0000\u051a\u0116"+ - "\u0001\u0000\u0000\u0000\u051b\u051c\u0003u2\u0000\u051c\u051d\u0001\u0000"+ - "\u0000\u0000\u051d\u051e\u0006\u0083\u0015\u0000\u051e\u0118\u0001\u0000"+ - "\u0000\u0000\u051f\u0520\u0003y4\u0000\u0520\u0521\u0001\u0000\u0000\u0000"+ - "\u0521\u0522\u0006\u0084\u0019\u0000\u0522\u011a\u0001\u0000\u0000\u0000"+ - "\u0523\u0524\u0003\u0093A\u0000\u0524\u0525\u0001\u0000\u0000\u0000\u0525"+ - "\u0526\u0006\u0085\u001a\u0000\u0526\u011c\u0001\u0000\u0000\u0000\u0527"+ - "\u0528\u0003\u00bdV\u0000\u0528\u0529\u0001\u0000\u0000\u0000\u0529\u052a"+ - "\u0006\u0086\u001b\u0000\u052a\u011e\u0001\u0000\u0000\u0000\u052b\u052c"+ - "\u0003\u00b9T\u0000\u052c\u052d\u0001\u0000\u0000\u0000\u052d\u052e\u0006"+ - "\u0087\u001c\u0000\u052e\u0120\u0001\u0000\u0000\u0000\u052f\u0530\u0003"+ - "\u00bfW\u0000\u0530\u0531\u0001\u0000\u0000\u0000\u0531\u0532\u0006\u0088"+ - "\u001d\u0000\u0532\u0122\u0001\u0000\u0000\u0000\u0533\u0534\u0007\u000e"+ - "\u0000\u0000\u0534\u0535\u0007\n\u0000\u0000\u0535\u0124\u0001\u0000\u0000"+ - "\u0000\u0536\u0537\u0003\u010b}\u0000\u0537\u0538\u0001\u0000\u0000\u0000"+ - "\u0538\u0539\u0006\u008a\u001e\u0000\u0539\u0126\u0001\u0000\u0000\u0000"+ - "\u053a\u053b\u0003G\u001b\u0000\u053b\u053c\u0001\u0000\u0000\u0000\u053c"+ - "\u053d\u0006\u008b\f\u0000\u053d\u0128\u0001\u0000\u0000\u0000\u053e\u053f"+ - "\u0003I\u001c\u0000\u053f\u0540\u0001\u0000\u0000\u0000\u0540\u0541\u0006"+ - "\u008c\f\u0000\u0541\u012a\u0001\u0000\u0000\u0000\u0542\u0543\u0003K"+ - "\u001d\u0000\u0543\u0544\u0001\u0000\u0000\u0000\u0544\u0545\u0006\u008d"+ - "\f\u0000\u0545\u012c\u0001\u0000\u0000\u0000\u0546\u0547\u0003M\u001e"+ - "\u0000\u0547\u0548\u0001\u0000\u0000\u0000\u0548\u0549\u0006\u008e\u0011"+ - "\u0000\u0549\u054a\u0006\u008e\r\u0000\u054a\u012e\u0001\u0000\u0000\u0000"+ - "\u054b\u054c\u0003\u00c1X\u0000\u054c\u054d\u0001\u0000\u0000\u0000\u054d"+ - "\u054e\u0006\u008f\u000f\u0000\u054e\u054f\u0006\u008f\u001f\u0000\u054f"+ - "\u0130\u0001\u0000\u0000\u0000\u0550\u0551\u0003\u008f?\u0000\u0551\u0552"+ - "\u0001\u0000\u0000\u0000\u0552\u0553\u0006\u0090 \u0000\u0553\u0554\u0006"+ - "\u0090!\u0000\u0554\u0132\u0001\u0000\u0000\u0000\u0555\u0556\u0003\u009b"+ - "E\u0000\u0556\u0557\u0001\u0000\u0000\u0000\u0557\u0558\u0006\u0091\""+ - "\u0000\u0558\u0559\u0006\u0091!\u0000\u0559\u0134\u0001\u0000\u0000\u0000"+ - "\u055a\u055b\b\"\u0000\u0000\u055b\u0136\u0001\u0000\u0000\u0000\u055c"+ - "\u055e\u0003\u0135\u0092\u0000\u055d\u055c\u0001\u0000\u0000\u0000\u055e"+ - "\u055f\u0001\u0000\u0000\u0000\u055f\u055d\u0001\u0000\u0000\u0000\u055f"+ - "\u0560\u0001\u0000\u0000\u0000\u0560\u0561\u0001\u0000\u0000\u0000\u0561"+ - "\u0562\u0003s1\u0000\u0562\u0564\u0001\u0000\u0000\u0000\u0563\u055d\u0001"+ - "\u0000\u0000\u0000\u0563\u0564\u0001\u0000\u0000\u0000\u0564\u0566\u0001"+ - "\u0000\u0000\u0000\u0565\u0567\u0003\u0135\u0092\u0000\u0566\u0565\u0001"+ - "\u0000\u0000\u0000\u0567\u0568\u0001\u0000\u0000\u0000\u0568\u0566\u0001"+ - "\u0000\u0000\u0000\u0568\u0569\u0001\u0000\u0000\u0000\u0569\u0138\u0001"+ - "\u0000\u0000\u0000\u056a\u056b\u0003\u0137\u0093\u0000\u056b\u056c\u0001"+ - "\u0000\u0000\u0000\u056c\u056d\u0006\u0094#\u0000\u056d\u013a\u0001\u0000"+ - "\u0000\u0000\u056e\u056f\u0003G\u001b\u0000\u056f\u0570\u0001\u0000\u0000"+ - "\u0000\u0570\u0571\u0006\u0095\f\u0000\u0571\u013c\u0001\u0000\u0000\u0000"+ - "\u0572\u0573\u0003I\u001c\u0000\u0573\u0574\u0001\u0000\u0000\u0000\u0574"+ - "\u0575\u0006\u0096\f\u0000\u0575\u013e\u0001\u0000\u0000\u0000\u0576\u0577"+ - "\u0003K\u001d\u0000\u0577\u0578\u0001\u0000\u0000\u0000\u0578\u0579\u0006"+ - "\u0097\f\u0000\u0579\u0140\u0001\u0000\u0000\u0000\u057a\u057b\u0003M"+ - "\u001e\u0000\u057b\u057c\u0001\u0000\u0000\u0000\u057c\u057d\u0006\u0098"+ - "\u0011\u0000\u057d\u057e\u0006\u0098\r\u0000\u057e\u057f\u0006\u0098\r"+ - "\u0000\u057f\u0142\u0001\u0000\u0000\u0000\u0580\u0581\u0003m.\u0000\u0581"+ - "\u0582\u0001\u0000\u0000\u0000\u0582\u0583\u0006\u0099\u0016\u0000\u0583"+ - "\u0144\u0001\u0000\u0000\u0000\u0584\u0585\u0003u2\u0000\u0585\u0586\u0001"+ - "\u0000\u0000\u0000\u0586\u0587\u0006\u009a\u0015\u0000\u0587\u0146\u0001"+ - "\u0000\u0000\u0000\u0588\u0589\u0003y4\u0000\u0589\u058a\u0001\u0000\u0000"+ - "\u0000\u058a\u058b\u0006\u009b\u0019\u0000\u058b\u0148\u0001\u0000\u0000"+ - "\u0000\u058c\u058d\u0003\u009bE\u0000\u058d\u058e\u0001\u0000\u0000\u0000"+ - "\u058e\u058f\u0006\u009c\"\u0000\u058f\u014a\u0001\u0000\u0000\u0000\u0590"+ - "\u0591\u0003\u010b}\u0000\u0591\u0592\u0001\u0000\u0000\u0000\u0592\u0593"+ - "\u0006\u009d\u001e\u0000\u0593\u014c\u0001\u0000\u0000\u0000\u0594\u0595"+ - "\u0003\u00c9\\\u0000\u0595\u0596\u0001\u0000\u0000\u0000\u0596\u0597\u0006"+ - "\u009e$\u0000\u0597\u014e\u0001\u0000\u0000\u0000\u0598\u0599\u0003\u0093"+ - "A\u0000\u0599\u059a\u0001\u0000\u0000\u0000\u059a\u059b\u0006\u009f\u001a"+ - "\u0000\u059b\u0150\u0001\u0000\u0000\u0000\u059c\u059d\u0003\u00bdV\u0000"+ - "\u059d\u059e\u0001\u0000\u0000\u0000\u059e\u059f\u0006\u00a0\u001b\u0000"+ - "\u059f\u0152\u0001\u0000\u0000\u0000\u05a0\u05a1\u0003\u00b9T\u0000\u05a1"+ - "\u05a2\u0001\u0000\u0000\u0000\u05a2\u05a3\u0006\u00a1\u001c\u0000\u05a3"+ - "\u0154\u0001\u0000\u0000\u0000\u05a4\u05a5\u0003\u00bfW\u0000\u05a5\u05a6"+ - "\u0001\u0000\u0000\u0000\u05a6\u05a7\u0006\u00a2\u001d\u0000\u05a7\u0156"+ - "\u0001\u0000\u0000\u0000\u05a8\u05a9\u0003G\u001b\u0000\u05a9\u05aa\u0001"+ - "\u0000\u0000\u0000\u05aa\u05ab\u0006\u00a3\f\u0000\u05ab\u0158\u0001\u0000"+ - "\u0000\u0000\u05ac\u05ad\u0003I\u001c\u0000\u05ad\u05ae\u0001\u0000\u0000"+ - "\u0000\u05ae\u05af\u0006\u00a4\f\u0000\u05af\u015a\u0001\u0000\u0000\u0000"+ - "\u05b0\u05b1\u0003K\u001d\u0000\u05b1\u05b2\u0001\u0000\u0000\u0000\u05b2"+ - "\u05b3\u0006\u00a5\f\u0000\u05b3\u015c\u0001\u0000\u0000\u0000\u05b4\u05b5"+ - "\u0003M\u001e\u0000\u05b5\u05b6\u0001\u0000\u0000\u0000\u05b6\u05b7\u0006"+ - "\u00a6\u0011\u0000\u05b7\u05b8\u0006\u00a6\r\u0000\u05b8\u015e\u0001\u0000"+ - "\u0000\u0000\u05b9\u05ba\u0003y4\u0000\u05ba\u05bb\u0001\u0000\u0000\u0000"+ - "\u05bb\u05bc\u0006\u00a7\u0019\u0000\u05bc\u0160\u0001\u0000\u0000\u0000"+ - "\u05bd\u05be\u0003\u0093A\u0000\u05be\u05bf\u0001\u0000\u0000\u0000\u05bf"+ - "\u05c0\u0006\u00a8\u001a\u0000\u05c0\u0162\u0001\u0000\u0000\u0000\u05c1"+ - "\u05c2\u0003\u00bdV\u0000\u05c2\u05c3\u0001\u0000\u0000\u0000\u05c3\u05c4"+ - "\u0006\u00a9\u001b\u0000\u05c4\u0164\u0001\u0000\u0000\u0000\u05c5\u05c6"+ - "\u0003\u00b9T\u0000\u05c6\u05c7\u0001\u0000\u0000\u0000\u05c7\u05c8\u0006"+ - "\u00aa\u001c\u0000\u05c8\u0166\u0001\u0000\u0000\u0000\u05c9\u05ca\u0003"+ - "\u00bfW\u0000\u05ca\u05cb\u0001\u0000\u0000\u0000\u05cb\u05cc\u0006\u00ab"+ - "\u001d\u0000\u05cc\u0168\u0001\u0000\u0000\u0000\u05cd\u05ce\u0003\u00c9"+ - "\\\u0000\u05ce\u05cf\u0001\u0000\u0000\u0000\u05cf\u05d0\u0006\u00ac$"+ - "\u0000\u05d0\u016a\u0001\u0000\u0000\u0000\u05d1\u05d2\u0003\u00c5Z\u0000"+ - "\u05d2\u05d3\u0001\u0000\u0000\u0000\u05d3\u05d4\u0006\u00ad%\u0000\u05d4"+ - "\u016c\u0001\u0000\u0000\u0000\u05d5\u05d6\u0003G\u001b\u0000\u05d6\u05d7"+ - "\u0001\u0000\u0000\u0000\u05d7\u05d8\u0006\u00ae\f\u0000\u05d8\u016e\u0001"+ - "\u0000\u0000\u0000\u05d9\u05da\u0003I\u001c\u0000\u05da\u05db\u0001\u0000"+ - "\u0000\u0000\u05db\u05dc\u0006\u00af\f\u0000\u05dc\u0170\u0001\u0000\u0000"+ - "\u0000\u05dd\u05de\u0003K\u001d\u0000\u05de\u05df\u0001\u0000\u0000\u0000"+ - "\u05df\u05e0\u0006\u00b0\f\u0000\u05e0\u0172\u0001\u0000\u0000\u0000\u05e1"+ - "\u05e2\u0003M\u001e\u0000\u05e2\u05e3\u0001\u0000\u0000\u0000\u05e3\u05e4"+ - "\u0006\u00b1\u0011\u0000\u05e4\u05e5\u0006\u00b1\r\u0000\u05e5\u0174\u0001"+ - "\u0000\u0000\u0000\u05e6\u05e7\u0007\u0007\u0000\u0000\u05e7\u05e8\u0007"+ - "\b\u0000\u0000\u05e8\u05e9\u0007\u0010\u0000\u0000\u05e9\u05ea\u0007\u0001"+ - "\u0000\u0000\u05ea\u0176\u0001\u0000\u0000\u0000\u05eb\u05ec\u0003G\u001b"+ - "\u0000\u05ec\u05ed\u0001\u0000\u0000\u0000\u05ed\u05ee\u0006\u00b3\f\u0000"+ - "\u05ee\u0178\u0001\u0000\u0000\u0000\u05ef\u05f0\u0003I\u001c\u0000\u05f0"+ - "\u05f1\u0001\u0000\u0000\u0000\u05f1\u05f2\u0006\u00b4\f\u0000\u05f2\u017a"+ - "\u0001\u0000\u0000\u0000\u05f3\u05f4\u0003K\u001d\u0000\u05f4\u05f5\u0001"+ - "\u0000\u0000\u0000\u05f5\u05f6\u0006\u00b5\f\u0000\u05f6\u017c\u0001\u0000"+ - "\u0000\u0000\u05f7\u05f8\u0003\u00c3Y\u0000\u05f8\u05f9\u0001\u0000\u0000"+ - "\u0000\u05f9\u05fa\u0006\u00b6\u0012\u0000\u05fa\u05fb\u0006\u00b6\r\u0000"+ - "\u05fb\u017e\u0001\u0000\u0000\u0000\u05fc\u05fd\u0003s1\u0000\u05fd\u05fe"+ - "\u0001\u0000\u0000\u0000\u05fe\u05ff\u0006\u00b7\u0013\u0000\u05ff\u0180"+ - "\u0001\u0000\u0000\u0000\u0600\u0606\u0003Y$\u0000\u0601\u0606\u0003O"+ - "\u001f\u0000\u0602\u0606\u0003y4\u0000\u0603\u0606\u0003Q \u0000\u0604"+ - "\u0606\u0003_\'\u0000\u0605\u0600\u0001\u0000\u0000\u0000\u0605\u0601"+ - "\u0001\u0000\u0000\u0000\u0605\u0602\u0001\u0000\u0000\u0000\u0605\u0603"+ - "\u0001\u0000\u0000\u0000\u0605\u0604\u0001\u0000\u0000\u0000\u0606\u0607"+ - "\u0001\u0000\u0000\u0000\u0607\u0605\u0001\u0000\u0000\u0000\u0607\u0608"+ - "\u0001\u0000\u0000\u0000\u0608\u0182\u0001\u0000\u0000\u0000\u0609\u060a"+ - "\u0003G\u001b\u0000\u060a\u060b\u0001\u0000\u0000\u0000\u060b\u060c\u0006"+ - "\u00b9\f\u0000\u060c\u0184\u0001\u0000\u0000\u0000\u060d\u060e\u0003I"+ - "\u001c\u0000\u060e\u060f\u0001\u0000\u0000\u0000\u060f\u0610\u0006\u00ba"+ - "\f\u0000\u0610\u0186\u0001\u0000\u0000\u0000\u0611\u0612\u0003K\u001d"+ - "\u0000\u0612\u0613\u0001\u0000\u0000\u0000\u0613\u0614\u0006\u00bb\f\u0000"+ - "\u0614\u0188\u0001\u0000\u0000\u0000\u0615\u0616\u0003M\u001e\u0000\u0616"+ - "\u0617\u0001\u0000\u0000\u0000\u0617\u0618\u0006\u00bc\u0011\u0000\u0618"+ - "\u0619\u0006\u00bc\r\u0000\u0619\u018a\u0001\u0000\u0000\u0000\u061a\u061b"+ - "\u0003s1\u0000\u061b\u061c\u0001\u0000\u0000\u0000\u061c\u061d\u0006\u00bd"+ - "\u0013\u0000\u061d\u018c\u0001\u0000\u0000\u0000\u061e\u061f\u0003u2\u0000"+ - "\u061f\u0620\u0001\u0000\u0000\u0000\u0620\u0621\u0006\u00be\u0015\u0000"+ - "\u0621\u018e\u0001\u0000\u0000\u0000\u0622\u0623\u0003y4\u0000\u0623\u0624"+ - "\u0001\u0000\u0000\u0000\u0624\u0625\u0006\u00bf\u0019\u0000\u0625\u0190"+ - "\u0001\u0000\u0000\u0000\u0626\u0627\u0003\u008f?\u0000\u0627\u0628\u0001"+ - "\u0000\u0000\u0000\u0628\u0629\u0006\u00c0 \u0000\u0629\u062a\u0006\u00c0"+ - "&\u0000\u062a\u0192\u0001\u0000\u0000\u0000\u062b\u062c\u0003\u00edn\u0000"+ - "\u062c\u062d\u0001\u0000\u0000\u0000\u062d\u062e\u0006\u00c1\u0017\u0000"+ - "\u062e\u0194\u0001\u0000\u0000\u0000\u062f\u0630\u0003c)\u0000\u0630\u0631"+ - "\u0001\u0000\u0000\u0000\u0631\u0632\u0006\u00c2\u0018\u0000\u0632\u0196"+ - "\u0001\u0000\u0000\u0000\u0633\u0634\u0003G\u001b\u0000\u0634\u0635\u0001"+ - "\u0000\u0000\u0000\u0635\u0636\u0006\u00c3\f\u0000\u0636\u0198\u0001\u0000"+ - "\u0000\u0000\u0637\u0638\u0003I\u001c\u0000\u0638\u0639\u0001\u0000\u0000"+ - "\u0000\u0639\u063a\u0006\u00c4\f\u0000\u063a\u019a\u0001\u0000\u0000\u0000"+ - "\u063b\u063c\u0003K\u001d\u0000\u063c\u063d\u0001\u0000\u0000\u0000\u063d"+ - "\u063e\u0006\u00c5\f\u0000\u063e\u019c\u0001\u0000\u0000\u0000\u063f\u0640"+ - "\u0003M\u001e\u0000\u0640\u0641\u0001\u0000\u0000\u0000\u0641\u0642\u0006"+ - "\u00c6\u0011\u0000\u0642\u0643\u0006\u00c6\r\u0000\u0643\u0644\u0006\u00c6"+ - "\r\u0000\u0644\u019e\u0001\u0000\u0000\u0000\u0645\u0646\u0003u2\u0000"+ - "\u0646\u0647\u0001\u0000\u0000\u0000\u0647\u0648\u0006\u00c7\u0015\u0000"+ - "\u0648\u01a0\u0001\u0000\u0000\u0000\u0649\u064a\u0003y4\u0000\u064a\u064b"+ - "\u0001\u0000\u0000\u0000\u064b\u064c\u0006\u00c8\u0019\u0000\u064c\u01a2"+ - "\u0001\u0000\u0000\u0000\u064d\u064e\u0003\u010b}\u0000\u064e\u064f\u0001"+ - "\u0000\u0000\u0000\u064f\u0650\u0006\u00c9\u001e\u0000\u0650\u01a4\u0001"+ - "\u0000\u0000\u0000\u0651\u0652\u0003G\u001b\u0000\u0652\u0653\u0001\u0000"+ - "\u0000\u0000\u0653\u0654\u0006\u00ca\f\u0000\u0654\u01a6\u0001\u0000\u0000"+ - "\u0000\u0655\u0656\u0003I\u001c\u0000\u0656\u0657\u0001\u0000\u0000\u0000"+ - "\u0657\u0658\u0006\u00cb\f\u0000\u0658\u01a8\u0001\u0000\u0000\u0000\u0659"+ - "\u065a\u0003K\u001d\u0000\u065a\u065b\u0001\u0000\u0000\u0000\u065b\u065c"+ - "\u0006\u00cc\f\u0000\u065c\u01aa\u0001\u0000\u0000\u0000\u065d\u065e\u0003"+ - "M\u001e\u0000\u065e\u065f\u0001\u0000\u0000\u0000\u065f\u0660\u0006\u00cd"+ - "\u0011\u0000\u0660\u0661\u0006\u00cd\r\u0000\u0661\u01ac\u0001\u0000\u0000"+ - "\u0000\u0662\u0663\u0007#\u0000\u0000\u0663\u0664\u0007\u0001\u0000\u0000"+ - "\u0664\u0665\u0007\u0007\u0000\u0000\u0665\u0666\u0007\b\u0000\u0000\u0666"+ - "\u01ae\u0001\u0000\u0000\u0000\u0667\u0668\u0003\u0123\u0089\u0000\u0668"+ - "\u0669\u0001\u0000\u0000\u0000\u0669\u066a\u0006\u00cf\'\u0000\u066a\u01b0"+ - "\u0001\u0000\u0000\u0000\u066b\u066c\u0003\u008f?\u0000\u066c\u066d\u0001"+ - "\u0000\u0000\u0000\u066d\u066e\u0006\u00d0 \u0000\u066e\u066f\u0006\u00d0"+ - "\r\u0000\u066f\u0670\u0006\u00d0\u0000\u0000\u0670\u01b2\u0001\u0000\u0000"+ - "\u0000\u0671\u0672\u0007\u0014\u0000\u0000\u0672\u0673\u0007\n\u0000\u0000"+ - "\u0673\u0674\u0007\u0007\u0000\u0000\u0674\u0675\u0007\b\u0000\u0000\u0675"+ - "\u0676\u0007\u0011\u0000\u0000\u0676\u0677\u0001\u0000\u0000\u0000\u0677"+ - "\u0678\u0006\u00d1\r\u0000\u0678\u0679\u0006\u00d1\u0000\u0000\u0679\u01b4"+ - "\u0001\u0000\u0000\u0000\u067a\u067b\u0003\u00edn\u0000\u067b\u067c\u0001"+ - "\u0000\u0000\u0000\u067c\u067d\u0006\u00d2\u0017\u0000\u067d\u01b6\u0001"+ - "\u0000\u0000\u0000\u067e\u067f\u0003c)\u0000\u067f\u0680\u0001\u0000\u0000"+ - "\u0000\u0680\u0681\u0006\u00d3\u0018\u0000\u0681\u01b8\u0001\u0000\u0000"+ - "\u0000\u0682\u0683\u0003s1\u0000\u0683\u0684\u0001\u0000\u0000\u0000\u0684"+ - "\u0685\u0006\u00d4\u0013\u0000\u0685\u01ba\u0001\u0000\u0000\u0000\u0686"+ - "\u0687\u0003\u00c5Z\u0000\u0687\u0688\u0001\u0000\u0000\u0000\u0688\u0689"+ - "\u0006\u00d5%\u0000\u0689\u01bc\u0001\u0000\u0000\u0000\u068a\u068b\u0003"+ - "\u00c9\\\u0000\u068b\u068c\u0001\u0000\u0000\u0000\u068c\u068d\u0006\u00d6"+ - "$\u0000\u068d\u01be\u0001\u0000\u0000\u0000\u068e\u068f\u0003G\u001b\u0000"+ - "\u068f\u0690\u0001\u0000\u0000\u0000\u0690\u0691\u0006\u00d7\f\u0000\u0691"+ - "\u01c0\u0001\u0000\u0000\u0000\u0692\u0693\u0003I\u001c\u0000\u0693\u0694"+ - "\u0001\u0000\u0000\u0000\u0694\u0695\u0006\u00d8\f\u0000\u0695\u01c2\u0001"+ - "\u0000\u0000\u0000\u0696\u0697\u0003K\u001d\u0000\u0697\u0698\u0001\u0000"+ - "\u0000\u0000\u0698\u0699\u0006\u00d9\f\u0000\u0699\u01c4\u0001\u0000\u0000"+ - "\u0000\u069a\u069b\u0003M\u001e\u0000\u069b\u069c\u0001\u0000\u0000\u0000"+ - "\u069c\u069d\u0006\u00da\u0011\u0000\u069d\u069e\u0006\u00da\r\u0000\u069e"+ - "\u01c6\u0001\u0000\u0000\u0000\u069f\u06a0\u0003\u00edn\u0000\u06a0\u06a1"+ - "\u0001\u0000\u0000\u0000\u06a1\u06a2\u0006\u00db\u0017\u0000\u06a2\u06a3"+ - "\u0006\u00db\r\u0000\u06a3\u06a4\u0006\u00db(\u0000\u06a4\u01c8\u0001"+ - "\u0000\u0000\u0000\u06a5\u06a6\u0003c)\u0000\u06a6\u06a7\u0001\u0000\u0000"+ - "\u0000\u06a7\u06a8\u0006\u00dc\u0018\u0000\u06a8\u06a9\u0006\u00dc\r\u0000"+ - "\u06a9\u06aa\u0006\u00dc(\u0000\u06aa\u01ca\u0001\u0000\u0000\u0000\u06ab"+ - "\u06ac\u0003G\u001b\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000\u06ad\u06ae"+ - "\u0006\u00dd\f\u0000\u06ae\u01cc\u0001\u0000\u0000\u0000\u06af\u06b0\u0003"+ - "I\u001c\u0000\u06b0\u06b1\u0001\u0000\u0000\u0000\u06b1\u06b2\u0006\u00de"+ - "\f\u0000\u06b2\u01ce\u0001\u0000\u0000\u0000\u06b3\u06b4\u0003K\u001d"+ - "\u0000\u06b4\u06b5\u0001\u0000\u0000\u0000\u06b5\u06b6\u0006\u00df\f\u0000"+ - "\u06b6\u01d0\u0001\u0000\u0000\u0000\u06b7\u06b8\u0003s1\u0000\u06b8\u06b9"+ - "\u0001\u0000\u0000\u0000\u06b9\u06ba\u0006\u00e0\u0013\u0000\u06ba\u06bb"+ - "\u0006\u00e0\r\u0000\u06bb\u06bc\u0006\u00e0\u000b\u0000\u06bc\u01d2\u0001"+ - "\u0000\u0000\u0000\u06bd\u06be\u0003q0\u0000\u06be\u06bf\u0001\u0000\u0000"+ - "\u0000\u06bf\u06c0\u0006\u00e1\u0014\u0000\u06c0\u06c1\u0006\u00e1\r\u0000"+ - "\u06c1\u06c2\u0006\u00e1\u000b\u0000\u06c2\u01d4\u0001\u0000\u0000\u0000"+ - "\u06c3\u06c4\u0003u2\u0000\u06c4\u06c5\u0001\u0000\u0000\u0000\u06c5\u06c6"+ - "\u0006\u00e2\u0015\u0000\u06c6\u06c7\u0006\u00e2\r\u0000\u06c7\u06c8\u0006"+ - "\u00e2\u000b\u0000\u06c8\u01d6\u0001\u0000\u0000\u0000\u06c9\u06ca\u0003"+ - "G\u001b\u0000\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb\u06cc\u0006\u00e3"+ - "\f\u0000\u06cc\u01d8\u0001\u0000\u0000\u0000\u06cd\u06ce\u0003I\u001c"+ - "\u0000\u06ce\u06cf\u0001\u0000\u0000\u0000\u06cf\u06d0\u0006\u00e4\f\u0000"+ - "\u06d0\u01da\u0001\u0000\u0000\u0000\u06d1\u06d2\u0003K\u001d\u0000\u06d2"+ - "\u06d3\u0001\u0000\u0000\u0000\u06d3\u06d4\u0006\u00e5\f\u0000\u06d4\u01dc"+ - "\u0001\u0000\u0000\u0000\u06d5\u06d6\u0003\u00c9\\\u0000\u06d6\u06d7\u0001"+ - "\u0000\u0000\u0000\u06d7\u06d8\u0006\u00e6\r\u0000\u06d8\u06d9\u0006\u00e6"+ - "\u0000\u0000\u06d9\u06da\u0006\u00e6$\u0000\u06da\u01de\u0001\u0000\u0000"+ - "\u0000\u06db\u06dc\u0003\u00c5Z\u0000\u06dc\u06dd\u0001\u0000\u0000\u0000"+ - "\u06dd\u06de\u0006\u00e7\r\u0000\u06de\u06df\u0006\u00e7\u0000\u0000\u06df"+ - "\u06e0\u0006\u00e7%\u0000\u06e0\u01e0\u0001\u0000\u0000\u0000\u06e1\u06e2"+ - "\u0003o/\u0000\u06e2\u06e3\u0001\u0000\u0000\u0000\u06e3\u06e4\u0006\u00e8"+ - "\r\u0000\u06e4\u06e5\u0006\u00e8\u0000\u0000\u06e5\u06e6\u0006\u00e8)"+ - "\u0000\u06e6\u01e2\u0001\u0000\u0000\u0000\u06e7\u06e8\u0003M\u001e\u0000"+ - "\u06e8\u06e9\u0001\u0000\u0000\u0000\u06e9\u06ea\u0006\u00e9\u0011\u0000"+ - "\u06ea\u06eb\u0006\u00e9\r\u0000\u06eb\u01e4\u0001\u0000\u0000\u0000\u06ec"+ - "\u06ed\u0003M\u001e\u0000\u06ed\u06ee\u0001\u0000\u0000\u0000\u06ee\u06ef"+ - "\u0006\u00ea\u0011\u0000\u06ef\u06f0\u0006\u00ea\r\u0000\u06f0\u01e6\u0001"+ - "\u0000\u0000\u0000\u06f1\u06f2\u0003\u008f?\u0000\u06f2\u06f3\u0001\u0000"+ - "\u0000\u0000\u06f3\u06f4\u0006\u00eb \u0000\u06f4\u01e8\u0001\u0000\u0000"+ - "\u0000\u06f5\u06f6\u0003\u0123\u0089\u0000\u06f6\u06f7\u0001\u0000\u0000"+ - "\u0000\u06f7\u06f8\u0006\u00ec\'\u0000\u06f8\u01ea\u0001\u0000\u0000\u0000"+ - "\u06f9\u06fa\u0003y4\u0000\u06fa\u06fb\u0001\u0000\u0000\u0000\u06fb\u06fc"+ - "\u0006\u00ed\u0019\u0000\u06fc\u01ec\u0001\u0000\u0000\u0000\u06fd\u06fe"+ - "\u0003u2\u0000\u06fe\u06ff\u0001\u0000\u0000\u0000\u06ff\u0700\u0006\u00ee"+ - "\u0015\u0000\u0700\u01ee\u0001\u0000\u0000\u0000\u0701\u0702\u0003\u00c9"+ - "\\\u0000\u0702\u0703\u0001\u0000\u0000\u0000\u0703\u0704\u0006\u00ef$"+ - "\u0000\u0704\u01f0\u0001\u0000\u0000\u0000\u0705\u0706\u0003\u00c5Z\u0000"+ - "\u0706\u0707\u0001\u0000\u0000\u0000\u0707\u0708\u0006\u00f0%\u0000\u0708"+ - "\u01f2\u0001\u0000\u0000\u0000\u0709\u070a\u0003G\u001b\u0000\u070a\u070b"+ - "\u0001\u0000\u0000\u0000\u070b\u070c\u0006\u00f1\f\u0000\u070c\u01f4\u0001"+ - "\u0000\u0000\u0000\u070d\u070e\u0003I\u001c\u0000\u070e\u070f\u0001\u0000"+ - "\u0000\u0000\u070f\u0710\u0006\u00f2\f\u0000\u0710\u01f6\u0001\u0000\u0000"+ - "\u0000\u0711\u0712\u0003K\u001d\u0000\u0712\u0713\u0001\u0000\u0000\u0000"+ - "\u0713\u0714\u0006\u00f3\f\u0000\u0714\u01f8\u0001\u0000\u0000\u0000G"+ + "\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\u02eb\u02f5\u02f9\u02fc\u0305\u0307\u0312\u0325\u032a\u0333"+ - "\u033a\u033f\u0341\u034c\u0354\u0357\u0359\u035e\u0363\u0369\u0370\u0375"+ - "\u037b\u037e\u0386\u038a\u0419\u041e\u0425\u0427\u042c\u0431\u0438\u043a"+ - "\u044a\u044f\u0454\u0456\u045c\u04ad\u04b2\u04e9\u04ed\u04f2\u04f7\u04fc"+ - "\u04fe\u0502\u0504\u055f\u0563\u0568\u0605\u0607*\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\u0007N\u0000\u0005\u0000\u0000\u0007\u001f\u0000\u0007"+ - "O\u0000\u0007(\u0000\u0007\'\u0000\u0007)\u0000\u0007%\u0000\u0007Y\u0000"+ - "\u0007 \u0000\u0007+\u0000\u00078\u0000\u0007L\u0000\u0007K\u0000\u0007"+ - "M\u0000\u0007]\u0000\u0005\n\u0000\u00076\u0000\u0005\u0007\u0000\u0007"+ - "<\u0000\u0007e\u0000\u0007Q\u0000\u0007P\u0000\u0005\f\u0000\u0007a\u0000"+ - "\u0005\u000f\u0000\u0007&\u0000"; + "\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\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"+ + "\u0005\n\u0000\u00077\u0000\u0005\u0007\u0000\u0007=\u0000\u0007f\u0000"+ + "\u0007R\u0000\u0007Q\u0000\u0005\f\u0000\u0007b\u0000\u0005\u000f\u0000"+ + "\u0007\'\u0000"; 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/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp index 1a374b6c34452..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' @@ -154,6 +155,7 @@ LIMIT MV_EXPAND RENAME ROW +SAMPLE SHOW SORT STATS @@ -349,6 +351,7 @@ showCommand enrichCommand enrichWithClause changePointCommand +sampleCommand lookupCommand inlinestatsCommand joinCommand @@ -360,4 +363,4 @@ completionCommand atn: -[4, 1, 138, 754, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 162, 8, 1, 10, 1, 12, 1, 165, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 173, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 196, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 208, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 215, 8, 5, 10, 5, 12, 5, 218, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 225, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 230, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 238, 8, 5, 10, 5, 12, 5, 241, 9, 5, 1, 6, 1, 6, 3, 6, 245, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 252, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 259, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 5, 6, 266, 8, 6, 10, 6, 12, 6, 269, 9, 6, 1, 6, 1, 6, 3, 6, 273, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 278, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 288, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 294, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 302, 8, 9, 10, 9, 12, 9, 305, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 315, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 320, 8, 10, 10, 10, 12, 10, 323, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 331, 8, 11, 10, 11, 12, 11, 334, 9, 11, 1, 11, 1, 11, 3, 11, 338, 8, 11, 3, 11, 340, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 350, 8, 13, 10, 13, 12, 13, 353, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 369, 8, 17, 10, 17, 12, 17, 372, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 377, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 384, 8, 19, 10, 19, 12, 19, 387, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 392, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 398, 8, 21, 10, 21, 12, 21, 401, 9, 21, 1, 21, 3, 21, 404, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 415, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 3, 27, 427, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 433, 8, 28, 10, 28, 12, 28, 436, 9, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 446, 8, 30, 10, 30, 12, 30, 449, 9, 30, 1, 30, 3, 30, 452, 8, 30, 1, 30, 1, 30, 3, 30, 456, 8, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 463, 8, 32, 1, 32, 1, 32, 3, 32, 467, 8, 32, 1, 33, 1, 33, 1, 33, 5, 33, 472, 8, 33, 10, 33, 12, 33, 475, 9, 33, 1, 34, 1, 34, 1, 34, 3, 34, 480, 8, 34, 1, 35, 1, 35, 1, 35, 5, 35, 485, 8, 35, 10, 35, 12, 35, 488, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 493, 8, 36, 10, 36, 12, 36, 496, 9, 36, 1, 37, 1, 37, 1, 37, 5, 37, 501, 8, 37, 10, 37, 12, 37, 504, 9, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 511, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 526, 8, 40, 10, 40, 12, 40, 529, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 537, 8, 40, 10, 40, 12, 40, 540, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 548, 8, 40, 10, 40, 12, 40, 551, 9, 40, 1, 40, 1, 40, 3, 40, 555, 8, 40, 1, 41, 1, 41, 3, 41, 559, 8, 41, 1, 42, 1, 42, 3, 42, 563, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 568, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 577, 8, 45, 10, 45, 12, 45, 580, 9, 45, 1, 46, 1, 46, 3, 46, 584, 8, 46, 1, 46, 1, 46, 3, 46, 588, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 600, 8, 49, 10, 49, 12, 49, 603, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 613, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 619, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 5, 54, 631, 8, 54, 10, 54, 12, 54, 634, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 644, 8, 57, 1, 58, 3, 58, 647, 8, 58, 1, 58, 1, 58, 1, 59, 3, 59, 652, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 674, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 680, 8, 65, 10, 65, 12, 65, 683, 9, 65, 3, 65, 685, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 690, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 698, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 705, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 716, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 729, 8, 72, 10, 72, 12, 72, 732, 9, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 742, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 748, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 0, 4, 2, 10, 18, 20, 76, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 0, 9, 1, 0, 68, 69, 1, 0, 70, 72, 2, 0, 32, 32, 89, 89, 1, 0, 80, 81, 2, 0, 36, 36, 42, 42, 2, 0, 45, 45, 48, 48, 2, 0, 44, 44, 59, 59, 2, 0, 61, 61, 63, 67, 2, 0, 18, 18, 25, 26, 787, 0, 152, 1, 0, 0, 0, 2, 155, 1, 0, 0, 0, 4, 172, 1, 0, 0, 0, 6, 195, 1, 0, 0, 0, 8, 197, 1, 0, 0, 0, 10, 229, 1, 0, 0, 0, 12, 272, 1, 0, 0, 0, 14, 274, 1, 0, 0, 0, 16, 287, 1, 0, 0, 0, 18, 293, 1, 0, 0, 0, 20, 314, 1, 0, 0, 0, 22, 324, 1, 0, 0, 0, 24, 343, 1, 0, 0, 0, 26, 345, 1, 0, 0, 0, 28, 356, 1, 0, 0, 0, 30, 360, 1, 0, 0, 0, 32, 362, 1, 0, 0, 0, 34, 365, 1, 0, 0, 0, 36, 376, 1, 0, 0, 0, 38, 380, 1, 0, 0, 0, 40, 388, 1, 0, 0, 0, 42, 393, 1, 0, 0, 0, 44, 414, 1, 0, 0, 0, 46, 416, 1, 0, 0, 0, 48, 418, 1, 0, 0, 0, 50, 420, 1, 0, 0, 0, 52, 422, 1, 0, 0, 0, 54, 426, 1, 0, 0, 0, 56, 428, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 457, 1, 0, 0, 0, 64, 460, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 476, 1, 0, 0, 0, 70, 481, 1, 0, 0, 0, 72, 489, 1, 0, 0, 0, 74, 497, 1, 0, 0, 0, 76, 505, 1, 0, 0, 0, 78, 510, 1, 0, 0, 0, 80, 554, 1, 0, 0, 0, 82, 558, 1, 0, 0, 0, 84, 562, 1, 0, 0, 0, 86, 567, 1, 0, 0, 0, 88, 569, 1, 0, 0, 0, 90, 572, 1, 0, 0, 0, 92, 581, 1, 0, 0, 0, 94, 589, 1, 0, 0, 0, 96, 592, 1, 0, 0, 0, 98, 595, 1, 0, 0, 0, 100, 612, 1, 0, 0, 0, 102, 614, 1, 0, 0, 0, 104, 620, 1, 0, 0, 0, 106, 624, 1, 0, 0, 0, 108, 627, 1, 0, 0, 0, 110, 635, 1, 0, 0, 0, 112, 639, 1, 0, 0, 0, 114, 643, 1, 0, 0, 0, 116, 646, 1, 0, 0, 0, 118, 651, 1, 0, 0, 0, 120, 655, 1, 0, 0, 0, 122, 657, 1, 0, 0, 0, 124, 659, 1, 0, 0, 0, 126, 662, 1, 0, 0, 0, 128, 666, 1, 0, 0, 0, 130, 669, 1, 0, 0, 0, 132, 689, 1, 0, 0, 0, 134, 693, 1, 0, 0, 0, 136, 706, 1, 0, 0, 0, 138, 711, 1, 0, 0, 0, 140, 717, 1, 0, 0, 0, 142, 722, 1, 0, 0, 0, 144, 724, 1, 0, 0, 0, 146, 733, 1, 0, 0, 0, 148, 735, 1, 0, 0, 0, 150, 743, 1, 0, 0, 0, 152, 153, 3, 2, 1, 0, 153, 154, 5, 0, 0, 1, 154, 1, 1, 0, 0, 0, 155, 156, 6, 1, -1, 0, 156, 157, 3, 4, 2, 0, 157, 163, 1, 0, 0, 0, 158, 159, 10, 1, 0, 0, 159, 160, 5, 31, 0, 0, 160, 162, 3, 6, 3, 0, 161, 158, 1, 0, 0, 0, 162, 165, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 3, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 166, 173, 3, 124, 62, 0, 167, 173, 3, 42, 21, 0, 168, 173, 3, 32, 16, 0, 169, 173, 3, 128, 64, 0, 170, 171, 4, 2, 1, 0, 171, 173, 3, 60, 30, 0, 172, 166, 1, 0, 0, 0, 172, 167, 1, 0, 0, 0, 172, 168, 1, 0, 0, 0, 172, 169, 1, 0, 0, 0, 172, 170, 1, 0, 0, 0, 173, 5, 1, 0, 0, 0, 174, 196, 3, 62, 31, 0, 175, 196, 3, 8, 4, 0, 176, 196, 3, 94, 47, 0, 177, 196, 3, 88, 44, 0, 178, 196, 3, 64, 32, 0, 179, 196, 3, 90, 45, 0, 180, 196, 3, 96, 48, 0, 181, 196, 3, 98, 49, 0, 182, 196, 3, 102, 51, 0, 183, 196, 3, 104, 52, 0, 184, 196, 3, 130, 65, 0, 185, 196, 3, 106, 53, 0, 186, 196, 3, 140, 70, 0, 187, 196, 3, 134, 67, 0, 188, 196, 3, 150, 75, 0, 189, 190, 4, 3, 2, 0, 190, 196, 3, 138, 69, 0, 191, 192, 4, 3, 3, 0, 192, 196, 3, 136, 68, 0, 193, 194, 4, 3, 4, 0, 194, 196, 3, 148, 74, 0, 195, 174, 1, 0, 0, 0, 195, 175, 1, 0, 0, 0, 195, 176, 1, 0, 0, 0, 195, 177, 1, 0, 0, 0, 195, 178, 1, 0, 0, 0, 195, 179, 1, 0, 0, 0, 195, 180, 1, 0, 0, 0, 195, 181, 1, 0, 0, 0, 195, 182, 1, 0, 0, 0, 195, 183, 1, 0, 0, 0, 195, 184, 1, 0, 0, 0, 195, 185, 1, 0, 0, 0, 195, 186, 1, 0, 0, 0, 195, 187, 1, 0, 0, 0, 195, 188, 1, 0, 0, 0, 195, 189, 1, 0, 0, 0, 195, 191, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 196, 7, 1, 0, 0, 0, 197, 198, 5, 17, 0, 0, 198, 199, 3, 10, 5, 0, 199, 9, 1, 0, 0, 0, 200, 201, 6, 5, -1, 0, 201, 202, 5, 51, 0, 0, 202, 230, 3, 10, 5, 8, 203, 230, 3, 16, 8, 0, 204, 230, 3, 12, 6, 0, 205, 207, 3, 16, 8, 0, 206, 208, 5, 51, 0, 0, 207, 206, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 209, 1, 0, 0, 0, 209, 210, 5, 46, 0, 0, 210, 211, 5, 50, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 41, 0, 0, 213, 215, 3, 16, 8, 0, 214, 212, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 219, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 5, 58, 0, 0, 220, 230, 1, 0, 0, 0, 221, 222, 3, 16, 8, 0, 222, 224, 5, 47, 0, 0, 223, 225, 5, 51, 0, 0, 224, 223, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 227, 5, 52, 0, 0, 227, 230, 1, 0, 0, 0, 228, 230, 3, 14, 7, 0, 229, 200, 1, 0, 0, 0, 229, 203, 1, 0, 0, 0, 229, 204, 1, 0, 0, 0, 229, 205, 1, 0, 0, 0, 229, 221, 1, 0, 0, 0, 229, 228, 1, 0, 0, 0, 230, 239, 1, 0, 0, 0, 231, 232, 10, 5, 0, 0, 232, 233, 5, 35, 0, 0, 233, 238, 3, 10, 5, 6, 234, 235, 10, 4, 0, 0, 235, 236, 5, 55, 0, 0, 236, 238, 3, 10, 5, 5, 237, 231, 1, 0, 0, 0, 237, 234, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 11, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 242, 244, 3, 16, 8, 0, 243, 245, 5, 51, 0, 0, 244, 243, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 247, 5, 49, 0, 0, 247, 248, 3, 120, 60, 0, 248, 273, 1, 0, 0, 0, 249, 251, 3, 16, 8, 0, 250, 252, 5, 51, 0, 0, 251, 250, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 5, 57, 0, 0, 254, 255, 3, 120, 60, 0, 255, 273, 1, 0, 0, 0, 256, 258, 3, 16, 8, 0, 257, 259, 5, 51, 0, 0, 258, 257, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 261, 5, 49, 0, 0, 261, 262, 5, 50, 0, 0, 262, 267, 3, 120, 60, 0, 263, 264, 5, 41, 0, 0, 264, 266, 3, 120, 60, 0, 265, 263, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 270, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 271, 5, 58, 0, 0, 271, 273, 1, 0, 0, 0, 272, 242, 1, 0, 0, 0, 272, 249, 1, 0, 0, 0, 272, 256, 1, 0, 0, 0, 273, 13, 1, 0, 0, 0, 274, 277, 3, 70, 35, 0, 275, 276, 5, 39, 0, 0, 276, 278, 3, 30, 15, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 280, 5, 40, 0, 0, 280, 281, 3, 80, 40, 0, 281, 15, 1, 0, 0, 0, 282, 288, 3, 18, 9, 0, 283, 284, 3, 18, 9, 0, 284, 285, 3, 122, 61, 0, 285, 286, 3, 18, 9, 0, 286, 288, 1, 0, 0, 0, 287, 282, 1, 0, 0, 0, 287, 283, 1, 0, 0, 0, 288, 17, 1, 0, 0, 0, 289, 290, 6, 9, -1, 0, 290, 294, 3, 20, 10, 0, 291, 292, 7, 0, 0, 0, 292, 294, 3, 18, 9, 3, 293, 289, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 294, 303, 1, 0, 0, 0, 295, 296, 10, 2, 0, 0, 296, 297, 7, 1, 0, 0, 297, 302, 3, 18, 9, 3, 298, 299, 10, 1, 0, 0, 299, 300, 7, 0, 0, 0, 300, 302, 3, 18, 9, 2, 301, 295, 1, 0, 0, 0, 301, 298, 1, 0, 0, 0, 302, 305, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 19, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 306, 307, 6, 10, -1, 0, 307, 315, 3, 80, 40, 0, 308, 315, 3, 70, 35, 0, 309, 315, 3, 22, 11, 0, 310, 311, 5, 50, 0, 0, 311, 312, 3, 10, 5, 0, 312, 313, 5, 58, 0, 0, 313, 315, 1, 0, 0, 0, 314, 306, 1, 0, 0, 0, 314, 308, 1, 0, 0, 0, 314, 309, 1, 0, 0, 0, 314, 310, 1, 0, 0, 0, 315, 321, 1, 0, 0, 0, 316, 317, 10, 1, 0, 0, 317, 318, 5, 39, 0, 0, 318, 320, 3, 30, 15, 0, 319, 316, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 21, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 325, 3, 24, 12, 0, 325, 339, 5, 50, 0, 0, 326, 340, 5, 70, 0, 0, 327, 332, 3, 10, 5, 0, 328, 329, 5, 41, 0, 0, 329, 331, 3, 10, 5, 0, 330, 328, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 337, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 335, 336, 5, 41, 0, 0, 336, 338, 3, 26, 13, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 326, 1, 0, 0, 0, 339, 327, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342, 5, 58, 0, 0, 342, 23, 1, 0, 0, 0, 343, 344, 3, 86, 43, 0, 344, 25, 1, 0, 0, 0, 345, 346, 5, 73, 0, 0, 346, 351, 3, 28, 14, 0, 347, 348, 5, 41, 0, 0, 348, 350, 3, 28, 14, 0, 349, 347, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 354, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 355, 5, 74, 0, 0, 355, 27, 1, 0, 0, 0, 356, 357, 3, 120, 60, 0, 357, 358, 5, 40, 0, 0, 358, 359, 3, 80, 40, 0, 359, 29, 1, 0, 0, 0, 360, 361, 3, 76, 38, 0, 361, 31, 1, 0, 0, 0, 362, 363, 5, 13, 0, 0, 363, 364, 3, 34, 17, 0, 364, 33, 1, 0, 0, 0, 365, 370, 3, 36, 18, 0, 366, 367, 5, 41, 0, 0, 367, 369, 3, 36, 18, 0, 368, 366, 1, 0, 0, 0, 369, 372, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 35, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 373, 374, 3, 70, 35, 0, 374, 375, 5, 37, 0, 0, 375, 377, 1, 0, 0, 0, 376, 373, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 379, 3, 10, 5, 0, 379, 37, 1, 0, 0, 0, 380, 385, 3, 40, 20, 0, 381, 382, 5, 41, 0, 0, 382, 384, 3, 40, 20, 0, 383, 381, 1, 0, 0, 0, 384, 387, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 39, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 388, 391, 3, 70, 35, 0, 389, 390, 5, 37, 0, 0, 390, 392, 3, 10, 5, 0, 391, 389, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 41, 1, 0, 0, 0, 393, 394, 5, 7, 0, 0, 394, 399, 3, 44, 22, 0, 395, 396, 5, 41, 0, 0, 396, 398, 3, 44, 22, 0, 397, 395, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 404, 3, 54, 27, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 43, 1, 0, 0, 0, 405, 406, 3, 46, 23, 0, 406, 407, 5, 40, 0, 0, 407, 408, 3, 50, 25, 0, 408, 415, 1, 0, 0, 0, 409, 410, 3, 50, 25, 0, 410, 411, 5, 39, 0, 0, 411, 412, 3, 48, 24, 0, 412, 415, 1, 0, 0, 0, 413, 415, 3, 52, 26, 0, 414, 405, 1, 0, 0, 0, 414, 409, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 45, 1, 0, 0, 0, 416, 417, 5, 89, 0, 0, 417, 47, 1, 0, 0, 0, 418, 419, 5, 89, 0, 0, 419, 49, 1, 0, 0, 0, 420, 421, 5, 89, 0, 0, 421, 51, 1, 0, 0, 0, 422, 423, 7, 2, 0, 0, 423, 53, 1, 0, 0, 0, 424, 427, 3, 56, 28, 0, 425, 427, 3, 58, 29, 0, 426, 424, 1, 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 55, 1, 0, 0, 0, 428, 429, 5, 88, 0, 0, 429, 434, 5, 89, 0, 0, 430, 431, 5, 41, 0, 0, 431, 433, 5, 89, 0, 0, 432, 430, 1, 0, 0, 0, 433, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 57, 1, 0, 0, 0, 436, 434, 1, 0, 0, 0, 437, 438, 5, 78, 0, 0, 438, 439, 3, 56, 28, 0, 439, 440, 5, 79, 0, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 22, 0, 0, 442, 447, 3, 44, 22, 0, 443, 444, 5, 41, 0, 0, 444, 446, 3, 44, 22, 0, 445, 443, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 452, 3, 66, 33, 0, 451, 450, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 454, 5, 38, 0, 0, 454, 456, 3, 34, 17, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 61, 1, 0, 0, 0, 457, 458, 5, 5, 0, 0, 458, 459, 3, 34, 17, 0, 459, 63, 1, 0, 0, 0, 460, 462, 5, 16, 0, 0, 461, 463, 3, 66, 33, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 465, 5, 38, 0, 0, 465, 467, 3, 34, 17, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 65, 1, 0, 0, 0, 468, 473, 3, 68, 34, 0, 469, 470, 5, 41, 0, 0, 470, 472, 3, 68, 34, 0, 471, 469, 1, 0, 0, 0, 472, 475, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 67, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 476, 479, 3, 36, 18, 0, 477, 478, 5, 17, 0, 0, 478, 480, 3, 10, 5, 0, 479, 477, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 69, 1, 0, 0, 0, 481, 486, 3, 86, 43, 0, 482, 483, 5, 43, 0, 0, 483, 485, 3, 86, 43, 0, 484, 482, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 71, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 494, 3, 78, 39, 0, 490, 491, 5, 43, 0, 0, 491, 493, 3, 78, 39, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 73, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 502, 3, 72, 36, 0, 498, 499, 5, 41, 0, 0, 499, 501, 3, 72, 36, 0, 500, 498, 1, 0, 0, 0, 501, 504, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 75, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 506, 7, 3, 0, 0, 506, 77, 1, 0, 0, 0, 507, 511, 5, 93, 0, 0, 508, 511, 3, 82, 41, 0, 509, 511, 3, 84, 42, 0, 510, 507, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 79, 1, 0, 0, 0, 512, 555, 5, 52, 0, 0, 513, 514, 3, 118, 59, 0, 514, 515, 5, 80, 0, 0, 515, 555, 1, 0, 0, 0, 516, 555, 3, 116, 58, 0, 517, 555, 3, 118, 59, 0, 518, 555, 3, 112, 56, 0, 519, 555, 3, 82, 41, 0, 520, 555, 3, 120, 60, 0, 521, 522, 5, 78, 0, 0, 522, 527, 3, 114, 57, 0, 523, 524, 5, 41, 0, 0, 524, 526, 3, 114, 57, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 530, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 5, 79, 0, 0, 531, 555, 1, 0, 0, 0, 532, 533, 5, 78, 0, 0, 533, 538, 3, 112, 56, 0, 534, 535, 5, 41, 0, 0, 535, 537, 3, 112, 56, 0, 536, 534, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 541, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 541, 542, 5, 79, 0, 0, 542, 555, 1, 0, 0, 0, 543, 544, 5, 78, 0, 0, 544, 549, 3, 120, 60, 0, 545, 546, 5, 41, 0, 0, 546, 548, 3, 120, 60, 0, 547, 545, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 552, 1, 0, 0, 0, 551, 549, 1, 0, 0, 0, 552, 553, 5, 79, 0, 0, 553, 555, 1, 0, 0, 0, 554, 512, 1, 0, 0, 0, 554, 513, 1, 0, 0, 0, 554, 516, 1, 0, 0, 0, 554, 517, 1, 0, 0, 0, 554, 518, 1, 0, 0, 0, 554, 519, 1, 0, 0, 0, 554, 520, 1, 0, 0, 0, 554, 521, 1, 0, 0, 0, 554, 532, 1, 0, 0, 0, 554, 543, 1, 0, 0, 0, 555, 81, 1, 0, 0, 0, 556, 559, 5, 56, 0, 0, 557, 559, 5, 76, 0, 0, 558, 556, 1, 0, 0, 0, 558, 557, 1, 0, 0, 0, 559, 83, 1, 0, 0, 0, 560, 563, 5, 75, 0, 0, 561, 563, 5, 77, 0, 0, 562, 560, 1, 0, 0, 0, 562, 561, 1, 0, 0, 0, 563, 85, 1, 0, 0, 0, 564, 568, 3, 76, 38, 0, 565, 568, 3, 82, 41, 0, 566, 568, 3, 84, 42, 0, 567, 564, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 566, 1, 0, 0, 0, 568, 87, 1, 0, 0, 0, 569, 570, 5, 10, 0, 0, 570, 571, 3, 80, 40, 0, 571, 89, 1, 0, 0, 0, 572, 573, 5, 15, 0, 0, 573, 578, 3, 92, 46, 0, 574, 575, 5, 41, 0, 0, 575, 577, 3, 92, 46, 0, 576, 574, 1, 0, 0, 0, 577, 580, 1, 0, 0, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 91, 1, 0, 0, 0, 580, 578, 1, 0, 0, 0, 581, 583, 3, 10, 5, 0, 582, 584, 7, 4, 0, 0, 583, 582, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 586, 5, 53, 0, 0, 586, 588, 7, 5, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 93, 1, 0, 0, 0, 589, 590, 5, 9, 0, 0, 590, 591, 3, 74, 37, 0, 591, 95, 1, 0, 0, 0, 592, 593, 5, 3, 0, 0, 593, 594, 3, 74, 37, 0, 594, 97, 1, 0, 0, 0, 595, 596, 5, 12, 0, 0, 596, 601, 3, 100, 50, 0, 597, 598, 5, 41, 0, 0, 598, 600, 3, 100, 50, 0, 599, 597, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 99, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 3, 72, 36, 0, 605, 606, 5, 97, 0, 0, 606, 607, 3, 72, 36, 0, 607, 613, 1, 0, 0, 0, 608, 609, 3, 72, 36, 0, 609, 610, 5, 37, 0, 0, 610, 611, 3, 72, 36, 0, 611, 613, 1, 0, 0, 0, 612, 604, 1, 0, 0, 0, 612, 608, 1, 0, 0, 0, 613, 101, 1, 0, 0, 0, 614, 615, 5, 2, 0, 0, 615, 616, 3, 20, 10, 0, 616, 618, 3, 120, 60, 0, 617, 619, 3, 108, 54, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 103, 1, 0, 0, 0, 620, 621, 5, 8, 0, 0, 621, 622, 3, 20, 10, 0, 622, 623, 3, 120, 60, 0, 623, 105, 1, 0, 0, 0, 624, 625, 5, 11, 0, 0, 625, 626, 3, 70, 35, 0, 626, 107, 1, 0, 0, 0, 627, 632, 3, 110, 55, 0, 628, 629, 5, 41, 0, 0, 629, 631, 3, 110, 55, 0, 630, 628, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 109, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 3, 76, 38, 0, 636, 637, 5, 37, 0, 0, 637, 638, 3, 80, 40, 0, 638, 111, 1, 0, 0, 0, 639, 640, 7, 6, 0, 0, 640, 113, 1, 0, 0, 0, 641, 644, 3, 116, 58, 0, 642, 644, 3, 118, 59, 0, 643, 641, 1, 0, 0, 0, 643, 642, 1, 0, 0, 0, 644, 115, 1, 0, 0, 0, 645, 647, 7, 0, 0, 0, 646, 645, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 649, 5, 34, 0, 0, 649, 117, 1, 0, 0, 0, 650, 652, 7, 0, 0, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 5, 33, 0, 0, 654, 119, 1, 0, 0, 0, 655, 656, 5, 32, 0, 0, 656, 121, 1, 0, 0, 0, 657, 658, 7, 7, 0, 0, 658, 123, 1, 0, 0, 0, 659, 660, 5, 6, 0, 0, 660, 661, 3, 126, 63, 0, 661, 125, 1, 0, 0, 0, 662, 663, 5, 78, 0, 0, 663, 664, 3, 2, 1, 0, 664, 665, 5, 79, 0, 0, 665, 127, 1, 0, 0, 0, 666, 667, 5, 14, 0, 0, 667, 668, 5, 111, 0, 0, 668, 129, 1, 0, 0, 0, 669, 670, 5, 4, 0, 0, 670, 673, 5, 101, 0, 0, 671, 672, 5, 54, 0, 0, 672, 674, 3, 72, 36, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 684, 1, 0, 0, 0, 675, 676, 5, 60, 0, 0, 676, 681, 3, 132, 66, 0, 677, 678, 5, 41, 0, 0, 678, 680, 3, 132, 66, 0, 679, 677, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 685, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 684, 675, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 131, 1, 0, 0, 0, 686, 687, 3, 72, 36, 0, 687, 688, 5, 37, 0, 0, 688, 690, 1, 0, 0, 0, 689, 686, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 3, 72, 36, 0, 692, 133, 1, 0, 0, 0, 693, 694, 5, 19, 0, 0, 694, 697, 3, 70, 35, 0, 695, 696, 5, 54, 0, 0, 696, 698, 3, 70, 35, 0, 697, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 704, 1, 0, 0, 0, 699, 700, 5, 97, 0, 0, 700, 701, 3, 70, 35, 0, 701, 702, 5, 41, 0, 0, 702, 703, 3, 70, 35, 0, 703, 705, 1, 0, 0, 0, 704, 699, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 135, 1, 0, 0, 0, 706, 707, 5, 21, 0, 0, 707, 708, 3, 44, 22, 0, 708, 709, 5, 54, 0, 0, 709, 710, 3, 74, 37, 0, 710, 137, 1, 0, 0, 0, 711, 712, 5, 20, 0, 0, 712, 715, 3, 66, 33, 0, 713, 714, 5, 38, 0, 0, 714, 716, 3, 34, 17, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 139, 1, 0, 0, 0, 717, 718, 7, 8, 0, 0, 718, 719, 5, 125, 0, 0, 719, 720, 3, 142, 71, 0, 720, 721, 3, 144, 72, 0, 721, 141, 1, 0, 0, 0, 722, 723, 3, 44, 22, 0, 723, 143, 1, 0, 0, 0, 724, 725, 5, 54, 0, 0, 725, 730, 3, 146, 73, 0, 726, 727, 5, 41, 0, 0, 727, 729, 3, 146, 73, 0, 728, 726, 1, 0, 0, 0, 729, 732, 1, 0, 0, 0, 730, 728, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 145, 1, 0, 0, 0, 732, 730, 1, 0, 0, 0, 733, 734, 3, 16, 8, 0, 734, 147, 1, 0, 0, 0, 735, 736, 5, 23, 0, 0, 736, 737, 3, 80, 40, 0, 737, 738, 5, 54, 0, 0, 738, 741, 3, 38, 19, 0, 739, 740, 5, 60, 0, 0, 740, 742, 3, 86, 43, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 149, 1, 0, 0, 0, 743, 747, 5, 1, 0, 0, 744, 745, 3, 70, 35, 0, 745, 746, 5, 37, 0, 0, 746, 748, 1, 0, 0, 0, 747, 744, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 3, 20, 10, 0, 750, 751, 5, 60, 0, 0, 751, 752, 3, 86, 43, 0, 752, 151, 1, 0, 0, 0, 72, 163, 172, 195, 207, 216, 224, 229, 237, 239, 244, 251, 258, 267, 272, 277, 287, 293, 301, 303, 314, 321, 332, 337, 339, 351, 370, 376, 385, 391, 399, 403, 414, 426, 434, 447, 451, 455, 462, 466, 473, 479, 486, 494, 502, 510, 527, 538, 549, 554, 558, 562, 567, 578, 583, 587, 601, 612, 618, 632, 643, 646, 651, 673, 681, 684, 689, 697, 704, 715, 730, 741, 747] \ No newline at end of file +[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 4884d964e3299..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,34 +26,35 @@ 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_JOIN_FULL=24, DEV_JOIN_LEFT=25, - DEV_JOIN_RIGHT=26, UNKNOWN_CMD=27, LINE_COMMENT=28, MULTILINE_COMMENT=29, - WS=30, PIPE=31, QUOTED_STRING=32, INTEGER_LITERAL=33, DECIMAL_LITERAL=34, - AND=35, ASC=36, ASSIGN=37, BY=38, CAST_OP=39, COLON=40, COMMA=41, DESC=42, - DOT=43, FALSE=44, FIRST=45, IN=46, IS=47, LAST=48, LIKE=49, LP=50, NOT=51, - NULL=52, NULLS=53, ON=54, OR=55, PARAM=56, RLIKE=57, RP=58, TRUE=59, WITH=60, - EQ=61, CIEQ=62, NEQ=63, LT=64, LTE=65, GT=66, GTE=67, PLUS=68, MINUS=69, - ASTERISK=70, SLASH=71, PERCENT=72, LEFT_BRACES=73, RIGHT_BRACES=74, DOUBLE_PARAMS=75, - NAMED_OR_POSITIONAL_PARAM=76, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=77, OPENING_BRACKET=78, - CLOSING_BRACKET=79, UNQUOTED_IDENTIFIER=80, QUOTED_IDENTIFIER=81, EXPR_LINE_COMMENT=82, - EXPR_MULTILINE_COMMENT=83, EXPR_WS=84, EXPLAIN_WS=85, EXPLAIN_LINE_COMMENT=86, - EXPLAIN_MULTILINE_COMMENT=87, METADATA=88, UNQUOTED_SOURCE=89, FROM_LINE_COMMENT=90, - FROM_MULTILINE_COMMENT=91, FROM_WS=92, ID_PATTERN=93, PROJECT_LINE_COMMENT=94, - PROJECT_MULTILINE_COMMENT=95, PROJECT_WS=96, AS=97, RENAME_LINE_COMMENT=98, - RENAME_MULTILINE_COMMENT=99, RENAME_WS=100, ENRICH_POLICY_NAME=101, ENRICH_LINE_COMMENT=102, - ENRICH_MULTILINE_COMMENT=103, ENRICH_WS=104, ENRICH_FIELD_LINE_COMMENT=105, - ENRICH_FIELD_MULTILINE_COMMENT=106, ENRICH_FIELD_WS=107, MVEXPAND_LINE_COMMENT=108, - MVEXPAND_MULTILINE_COMMENT=109, MVEXPAND_WS=110, INFO=111, SHOW_LINE_COMMENT=112, - SHOW_MULTILINE_COMMENT=113, SHOW_WS=114, SETTING=115, SETTING_LINE_COMMENT=116, - SETTTING_MULTILINE_COMMENT=117, SETTING_WS=118, LOOKUP_LINE_COMMENT=119, - LOOKUP_MULTILINE_COMMENT=120, LOOKUP_WS=121, LOOKUP_FIELD_LINE_COMMENT=122, - LOOKUP_FIELD_MULTILINE_COMMENT=123, LOOKUP_FIELD_WS=124, JOIN=125, USING=126, - JOIN_LINE_COMMENT=127, JOIN_MULTILINE_COMMENT=128, JOIN_WS=129, METRICS_LINE_COMMENT=130, - METRICS_MULTILINE_COMMENT=131, METRICS_WS=132, CLOSING_METRICS_LINE_COMMENT=133, - CLOSING_METRICS_MULTILINE_COMMENT=134, CLOSING_METRICS_WS=135, CHANGE_POINT_LINE_COMMENT=136, - CHANGE_POINT_MULTILINE_COMMENT=137, CHANGE_POINT_WS=138; + 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, + COMMA=42, DESC=43, DOT=44, FALSE=45, FIRST=46, IN=47, IS=48, LAST=49, + LIKE=50, LP=51, NOT=52, NULL=53, NULLS=54, ON=55, OR=56, PARAM=57, RLIKE=58, + RP=59, TRUE=60, WITH=61, EQ=62, CIEQ=63, NEQ=64, LT=65, LTE=66, GT=67, + GTE=68, PLUS=69, MINUS=70, ASTERISK=71, SLASH=72, PERCENT=73, LEFT_BRACES=74, + RIGHT_BRACES=75, DOUBLE_PARAMS=76, NAMED_OR_POSITIONAL_PARAM=77, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78, + OPENING_BRACKET=79, CLOSING_BRACKET=80, UNQUOTED_IDENTIFIER=81, QUOTED_IDENTIFIER=82, + EXPR_LINE_COMMENT=83, EXPR_MULTILINE_COMMENT=84, EXPR_WS=85, EXPLAIN_WS=86, + EXPLAIN_LINE_COMMENT=87, EXPLAIN_MULTILINE_COMMENT=88, METADATA=89, UNQUOTED_SOURCE=90, + FROM_LINE_COMMENT=91, FROM_MULTILINE_COMMENT=92, FROM_WS=93, ID_PATTERN=94, + PROJECT_LINE_COMMENT=95, PROJECT_MULTILINE_COMMENT=96, PROJECT_WS=97, + AS=98, RENAME_LINE_COMMENT=99, RENAME_MULTILINE_COMMENT=100, RENAME_WS=101, + ENRICH_POLICY_NAME=102, ENRICH_LINE_COMMENT=103, ENRICH_MULTILINE_COMMENT=104, + ENRICH_WS=105, ENRICH_FIELD_LINE_COMMENT=106, ENRICH_FIELD_MULTILINE_COMMENT=107, + ENRICH_FIELD_WS=108, MVEXPAND_LINE_COMMENT=109, MVEXPAND_MULTILINE_COMMENT=110, + MVEXPAND_WS=111, INFO=112, SHOW_LINE_COMMENT=113, SHOW_MULTILINE_COMMENT=114, + SHOW_WS=115, SETTING=116, SETTING_LINE_COMMENT=117, SETTTING_MULTILINE_COMMENT=118, + SETTING_WS=119, LOOKUP_LINE_COMMENT=120, LOOKUP_MULTILINE_COMMENT=121, + LOOKUP_WS=122, LOOKUP_FIELD_LINE_COMMENT=123, LOOKUP_FIELD_MULTILINE_COMMENT=124, + LOOKUP_FIELD_WS=125, JOIN=126, USING=127, JOIN_LINE_COMMENT=128, JOIN_MULTILINE_COMMENT=129, + JOIN_WS=130, METRICS_LINE_COMMENT=131, METRICS_MULTILINE_COMMENT=132, + METRICS_WS=133, CLOSING_METRICS_LINE_COMMENT=134, CLOSING_METRICS_MULTILINE_COMMENT=135, + CLOSING_METRICS_WS=136, CHANGE_POINT_LINE_COMMENT=137, CHANGE_POINT_MULTILINE_COMMENT=138, + CHANGE_POINT_WS=139; public static final int RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3, RULE_whereCommand = 4, RULE_booleanExpression = 5, RULE_regexBooleanExpression = 6, @@ -76,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 = 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", @@ -96,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", "lookupCommand", "inlinestatsCommand", "joinCommand", + "joinTarget", "joinCondition", "joinPredicate", "rerankCommand", "completionCommand" }; } public static final String[] ruleNames = makeRuleNames(); @@ -106,7 +107,7 @@ 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'", @@ -124,33 +125,33 @@ private static String[] 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_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", "FALSE", "FIRST", "IN", "IS", "LAST", - "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE", "RP", - "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", - "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", - "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", - "OPENING_BRACKET", "CLOSING_BRACKET", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", - "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "EXPLAIN_WS", - "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", "METADATA", "UNQUOTED_SOURCE", - "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "ID_PATTERN", - "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "AS", - "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "ENRICH_POLICY_NAME", - "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", - "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", - "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", - "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", - "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", - "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", - "LOOKUP_FIELD_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", - "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", - "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT", - "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT", - "CHANGE_POINT_WS" + "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", + "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", + "ON", "OR", "PARAM", "RLIKE", "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", + "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", + "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", + "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET", + "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", + "EXPR_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", + "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", + "FROM_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", + "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "ENRICH_POLICY_NAME", "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", + "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", "ENRICH_FIELD_MULTILINE_COMMENT", + "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", + "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", + "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", + "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", + "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", + "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS", + "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_LINE_COMMENT", + "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", + "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -237,9 +238,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(152); + setState(154); query(0); - setState(153); + setState(155); match(EOF); } } @@ -335,11 +336,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(156); + setState(158); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(163); + setState(165); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -350,16 +351,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(158); + setState(160); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(159); + setState(161); match(PIPE); - setState(160); + setState(162); processingCommand(); } } } - setState(165); + setState(167); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -417,43 +418,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(172); + setState(174); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(166); + setState(168); explainCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(167); + setState(169); fromCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(168); + setState(170); rowCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(169); + setState(171); showCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(170); + setState(172); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(171); + setState(173); metricsCommand(); } break; @@ -517,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); } @@ -550,138 +554,145 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(195); + setState(198); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(174); + setState(176); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(175); + setState(177); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(176); + setState(178); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(177); + setState(179); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(178); + setState(180); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(179); + setState(181); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(180); + setState(182); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(181); + setState(183); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(182); + setState(184); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(183); + setState(185); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(184); + setState(186); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(185); + setState(187); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(186); + setState(188); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(187); + setState(189); changePointCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(188); + setState(190); completionCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(189); - if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(190); - inlinestatsCommand(); + setState(191); + sampleCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(191); - if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); setState(192); - lookupCommand(); + if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); + setState(193); + inlinestatsCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(193); - if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); setState(194); + if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); + setState(195); + lookupCommand(); + } + break; + case 19: + enterOuterAlt(_localctx, 19); + { + setState(196); + if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); + setState(197); rerankCommand(); } break; @@ -730,9 +741,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(197); + setState(200); match(WHERE); - setState(198); + setState(201); booleanExpression(0); } } @@ -948,7 +959,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(229); + setState(232); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: @@ -957,9 +968,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(201); + setState(204); match(NOT); - setState(202); + setState(205); booleanExpression(8); } break; @@ -968,7 +979,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(203); + setState(206); valueExpression(); } break; @@ -977,7 +988,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(204); + setState(207); regexBooleanExpression(); } break; @@ -986,41 +997,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(205); + setState(208); valueExpression(); - setState(207); + setState(210); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(206); + setState(209); match(NOT); } } - setState(209); + setState(212); match(IN); - setState(210); + setState(213); match(LP); - setState(211); + setState(214); valueExpression(); - setState(216); + setState(219); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(212); + setState(215); match(COMMA); - setState(213); + setState(216); valueExpression(); } } - setState(218); + setState(221); _errHandler.sync(this); _la = _input.LA(1); } - setState(219); + setState(222); match(RP); } break; @@ -1029,21 +1040,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(221); + setState(224); valueExpression(); - setState(222); + setState(225); match(IS); - setState(224); + setState(227); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(223); + setState(226); match(NOT); } } - setState(226); + setState(229); match(NULL); } break; @@ -1052,13 +1063,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(228); + setState(231); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(239); + setState(242); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1066,7 +1077,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(237); + setState(240); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: @@ -1074,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(231); + setState(234); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(232); + setState(235); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(233); + setState(236); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -1087,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(234); + setState(237); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(235); + setState(238); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(236); + setState(239); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(241); + setState(244); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); } @@ -1222,28 +1233,28 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 12, RULE_regexBooleanExpression); int _la; try { - setState(272); + setState(275); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: _localctx = new LikeExpressionContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(242); + setState(245); valueExpression(); - setState(244); + setState(247); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(243); + setState(246); match(NOT); } } - setState(246); + setState(249); match(LIKE); - setState(247); + setState(250); string(); } break; @@ -1251,21 +1262,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(249); + setState(252); valueExpression(); - setState(251); + setState(254); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(250); + setState(253); match(NOT); } } - setState(253); + setState(256); match(RLIKE); - setState(254); + setState(257); string(); } break; @@ -1273,41 +1284,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new LikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(256); + setState(259); valueExpression(); - setState(258); + setState(261); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(257); + setState(260); match(NOT); } } - setState(260); + setState(263); match(LIKE); - setState(261); + setState(264); match(LP); - setState(262); + setState(265); string(); - setState(267); + setState(270); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(263); + setState(266); match(COMMA); - setState(264); + setState(267); string(); } } - setState(269); + setState(272); _errHandler.sync(this); _la = _input.LA(1); } - setState(270); + setState(273); match(RP); } break; @@ -1367,23 +1378,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(274); - ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); setState(277); + ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); + setState(280); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(275); + setState(278); match(CAST_OP); - setState(276); + setState(279); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(279); + setState(282); match(COLON); - setState(280); + setState(283); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -1467,14 +1478,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 16, RULE_valueExpression); try { - setState(287); + setState(290); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(282); + setState(285); operatorExpression(0); } break; @@ -1482,11 +1493,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(283); + setState(286); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(284); + setState(287); comparisonOperator(); - setState(285); + setState(288); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -1611,7 +1622,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(293); + setState(296); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { case 1: @@ -1620,7 +1631,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(290); + setState(293); primaryExpression(0); } break; @@ -1629,7 +1640,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(291); + setState(294); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1640,13 +1651,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(292); + setState(295); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(303); + setState(306); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1654,7 +1665,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(301); + setState(304); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { case 1: @@ -1662,12 +1673,12 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(295); + setState(298); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(296); + setState(299); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & 7L) != 0)) ) { + if ( !(((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 7L) != 0)) ) { ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); } else { @@ -1675,7 +1686,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(297); + setState(300); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -1684,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(298); + setState(301); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(299); + setState(302); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1697,14 +1708,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(300); + setState(303); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(305); + setState(308); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); } @@ -1862,7 +1873,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(314); + setState(317); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) { case 1: @@ -1871,7 +1882,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(307); + setState(310); constant(); } break; @@ -1880,7 +1891,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(308); + setState(311); qualifiedName(); } break; @@ -1889,7 +1900,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(309); + setState(312); functionExpression(); } break; @@ -1898,17 +1909,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(310); + setState(313); match(LP); - setState(311); + setState(314); booleanExpression(0); - setState(312); + setState(315); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(321); + setState(324); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,20,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1919,16 +1930,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(316); + setState(319); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(317); + setState(320); match(CAST_OP); - setState(318); + setState(321); dataType(); } } } - setState(323); + setState(326); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,20,_ctx); } @@ -1994,16 +2005,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(324); + setState(327); functionName(); - setState(325); + setState(328); match(LP); - setState(339); + setState(342); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(326); + setState(329); match(ASTERISK); } break; @@ -2026,34 +2037,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(327); + setState(330); booleanExpression(0); - setState(332); + 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(328); + setState(331); match(COMMA); - setState(329); + setState(332); booleanExpression(0); } } } - setState(334); + setState(337); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,21,_ctx); } - setState(337); + setState(340); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(335); + setState(338); match(COMMA); - setState(336); + setState(339); mapExpression(); } } @@ -2066,7 +2077,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(341); + setState(344); match(RP); } } @@ -2112,7 +2123,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(343); + setState(346); identifierOrParameter(); } } @@ -2168,27 +2179,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(345); + setState(348); match(LEFT_BRACES); - setState(346); + setState(349); entryExpression(); - setState(351); + setState(354); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(347); + setState(350); match(COMMA); - setState(348); + setState(351); entryExpression(); } } - setState(353); + setState(356); _errHandler.sync(this); _la = _input.LA(1); } - setState(354); + setState(357); match(RIGHT_BRACES); } } @@ -2240,11 +2251,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(356); + setState(359); ((EntryExpressionContext)_localctx).key = string(); - setState(357); + setState(360); match(COLON); - setState(358); + setState(361); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -2302,7 +2313,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(360); + setState(363); identifier(); } } @@ -2349,9 +2360,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(362); + setState(365); match(ROW); - setState(363); + setState(366); fields(); } } @@ -2405,23 +2416,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(365); + setState(368); field(); - setState(370); + 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(366); + setState(369); match(COMMA); - setState(367); + setState(370); field(); } } } - setState(372); + setState(375); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } @@ -2473,19 +2484,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(376); + setState(379); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(373); + setState(376); qualifiedName(); - setState(374); + setState(377); match(ASSIGN); } break; } - setState(378); + setState(381); booleanExpression(0); } } @@ -2539,23 +2550,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(380); + setState(383); rerankField(); - setState(385); + 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(381); + setState(384); match(COMMA); - setState(382); + setState(385); rerankField(); } } } - setState(387); + setState(390); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,27,_ctx); } @@ -2607,16 +2618,16 @@ public final RerankFieldContext rerankField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(388); - qualifiedName(); setState(391); + qualifiedName(); + setState(394); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: { - setState(389); + setState(392); match(ASSIGN); - setState(390); + setState(393); booleanExpression(0); } break; @@ -2677,34 +2688,34 @@ public final FromCommandContext fromCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(393); + setState(396); match(FROM); - setState(394); + setState(397); indexPattern(); - setState(399); + 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(395); + setState(398); match(COMMA); - setState(396); + setState(399); indexPattern(); } } } - setState(401); + setState(404); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(403); + setState(406); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(402); + setState(405); metadata(); } break; @@ -2762,35 +2773,35 @@ public final IndexPatternContext indexPattern() throws RecognitionException { IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); enterRule(_localctx, 44, RULE_indexPattern); try { - setState(414); + setState(417); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(405); + setState(408); clusterString(); - setState(406); + setState(409); match(COLON); - setState(407); + setState(410); unquotedIndexString(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(409); + setState(412); unquotedIndexString(); - setState(410); + setState(413); match(CAST_OP); - setState(411); + setState(414); selectorString(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(413); + setState(416); indexString(); } break; @@ -2836,7 +2847,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(416); + setState(419); match(UNQUOTED_SOURCE); } } @@ -2880,7 +2891,7 @@ public final SelectorStringContext selectorString() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(418); + setState(421); match(UNQUOTED_SOURCE); } } @@ -2924,7 +2935,7 @@ public final UnquotedIndexStringContext unquotedIndexString() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(420); + setState(423); match(UNQUOTED_SOURCE); } } @@ -2970,7 +2981,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(422); + setState(425); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -3025,20 +3036,20 @@ public final MetadataContext metadata() throws RecognitionException { MetadataContext _localctx = new MetadataContext(_ctx, getState()); enterRule(_localctx, 54, RULE_metadata); try { - setState(426); + setState(429); _errHandler.sync(this); switch (_input.LA(1)) { case METADATA: enterOuterAlt(_localctx, 1); { - setState(424); + setState(427); metadataOption(); } break; case OPENING_BRACKET: enterOuterAlt(_localctx, 2); { - setState(425); + setState(428); deprecated_metadata(); } break; @@ -3095,25 +3106,25 @@ public final MetadataOptionContext metadataOption() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(428); + setState(431); match(METADATA); - setState(429); + setState(432); match(UNQUOTED_SOURCE); - setState(434); + 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(430); + setState(433); match(COMMA); - setState(431); + setState(434); match(UNQUOTED_SOURCE); } } } - setState(436); + setState(439); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,33,_ctx); } @@ -3162,11 +3173,11 @@ public final Deprecated_metadataContext deprecated_metadata() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(437); + setState(440); match(OPENING_BRACKET); - setState(438); + setState(441); metadataOption(); - setState(439); + setState(442); match(CLOSING_BRACKET); } } @@ -3230,46 +3241,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(441); + setState(444); match(DEV_METRICS); - setState(442); + setState(445); indexPattern(); - setState(447); + 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(443); + setState(446); match(COMMA); - setState(444); + setState(447); indexPattern(); } } } - setState(449); + setState(452); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } - setState(451); + setState(454); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(450); + setState(453); ((MetricsCommandContext)_localctx).aggregates = aggFields(); } break; } - setState(455); + setState(458); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { case 1: { - setState(453); + setState(456); match(BY); - setState(454); + setState(457); ((MetricsCommandContext)_localctx).grouping = fields(); } break; @@ -3319,9 +3330,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(457); + setState(460); match(EVAL); - setState(458); + setState(461); fields(); } } @@ -3374,26 +3385,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(460); + setState(463); match(STATS); - setState(462); + setState(465); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(461); + setState(464); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(466); + setState(469); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(464); + setState(467); match(BY); - setState(465); + setState(468); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -3450,23 +3461,23 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(468); + setState(471); aggField(); - setState(473); + 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(469); + setState(472); match(COMMA); - setState(470); + setState(473); aggField(); } } } - setState(475); + setState(478); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,39,_ctx); } @@ -3518,16 +3529,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(476); - field(); setState(479); + field(); + setState(482); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(477); + setState(480); match(WHERE); - setState(478); + setState(481); booleanExpression(0); } break; @@ -3584,23 +3595,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(481); + setState(484); identifierOrParameter(); - setState(486); + 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(482); + setState(485); match(DOT); - setState(483); + setState(486); identifierOrParameter(); } } } - setState(488); + setState(491); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,41,_ctx); } @@ -3656,23 +3667,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(489); + setState(492); identifierPattern(); - setState(494); + 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(490); + setState(493); match(DOT); - setState(491); + setState(494); identifierPattern(); } } } - setState(496); + setState(499); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,42,_ctx); } @@ -3728,23 +3739,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(497); + setState(500); qualifiedNamePattern(); - setState(502); + 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(498); + setState(501); match(COMMA); - setState(499); + setState(502); qualifiedNamePattern(); } } } - setState(504); + setState(507); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } @@ -3792,7 +3803,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(505); + setState(508); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -3848,13 +3859,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 78, RULE_identifierPattern); try { - setState(510); + setState(513); _errHandler.sync(this); switch (_input.LA(1)) { case ID_PATTERN: enterOuterAlt(_localctx, 1); { - setState(507); + setState(510); match(ID_PATTERN); } break; @@ -3862,7 +3873,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(508); + setState(511); parameter(); } break; @@ -3870,7 +3881,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(509); + setState(512); doubleParameter(); } break; @@ -4145,14 +4156,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 80, RULE_constant); int _la; try { - setState(554); + setState(557); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(512); + setState(515); match(NULL); } break; @@ -4160,9 +4171,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(513); + setState(516); integerValue(); - setState(514); + setState(517); match(UNQUOTED_IDENTIFIER); } break; @@ -4170,7 +4181,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(516); + setState(519); decimalValue(); } break; @@ -4178,7 +4189,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(517); + setState(520); integerValue(); } break; @@ -4186,7 +4197,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(518); + setState(521); booleanValue(); } break; @@ -4194,7 +4205,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(519); + setState(522); parameter(); } break; @@ -4202,7 +4213,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(520); + setState(523); string(); } break; @@ -4210,27 +4221,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(521); + setState(524); match(OPENING_BRACKET); - setState(522); + setState(525); numericValue(); - setState(527); + setState(530); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(523); + setState(526); match(COMMA); - setState(524); + setState(527); numericValue(); } } - setState(529); + setState(532); _errHandler.sync(this); _la = _input.LA(1); } - setState(530); + setState(533); match(CLOSING_BRACKET); } break; @@ -4238,27 +4249,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(532); + setState(535); match(OPENING_BRACKET); - setState(533); + setState(536); booleanValue(); - setState(538); + setState(541); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(534); + setState(537); match(COMMA); - setState(535); + setState(538); booleanValue(); } } - setState(540); + setState(543); _errHandler.sync(this); _la = _input.LA(1); } - setState(541); + setState(544); match(CLOSING_BRACKET); } break; @@ -4266,27 +4277,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(543); + setState(546); match(OPENING_BRACKET); - setState(544); + setState(547); string(); - setState(549); + setState(552); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(545); + setState(548); match(COMMA); - setState(546); + setState(549); string(); } } - setState(551); + setState(554); _errHandler.sync(this); _la = _input.LA(1); } - setState(552); + setState(555); match(CLOSING_BRACKET); } break; @@ -4360,14 +4371,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 82, RULE_parameter); try { - setState(558); + setState(561); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(556); + setState(559); match(PARAM); } break; @@ -4375,7 +4386,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(557); + setState(560); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -4451,14 +4462,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState()); enterRule(_localctx, 84, RULE_doubleParameter); try { - setState(562); + setState(565); _errHandler.sync(this); switch (_input.LA(1)) { case DOUBLE_PARAMS: _localctx = new InputDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(560); + setState(563); match(DOUBLE_PARAMS); } break; @@ -4466,7 +4477,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio _localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(561); + setState(564); match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS); } break; @@ -4520,14 +4531,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 86, RULE_identifierOrParameter); try { - setState(567); + setState(570); _errHandler.sync(this); switch (_input.LA(1)) { case UNQUOTED_IDENTIFIER: case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(564); + setState(567); identifier(); } break; @@ -4535,7 +4546,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(565); + setState(568); parameter(); } break; @@ -4543,7 +4554,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(566); + setState(569); doubleParameter(); } break; @@ -4594,9 +4605,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(569); + setState(572); match(LIMIT); - setState(570); + setState(573); constant(); } } @@ -4651,25 +4662,25 @@ public final SortCommandContext sortCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(572); + setState(575); match(SORT); - setState(573); + setState(576); orderExpression(); - setState(578); + 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(574); + setState(577); match(COMMA); - setState(575); + setState(578); orderExpression(); } } } - setState(580); + setState(583); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } @@ -4725,14 +4736,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(581); + setState(584); booleanExpression(0); - setState(583); + setState(586); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { - setState(582); + setState(585); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -4746,14 +4757,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(587); + setState(590); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { case 1: { - setState(585); + setState(588); match(NULLS); - setState(586); + setState(589); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -4812,9 +4823,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(589); + setState(592); match(KEEP); - setState(590); + setState(593); qualifiedNamePatterns(); } } @@ -4861,9 +4872,9 @@ public final DropCommandContext dropCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(592); + setState(595); match(DROP); - setState(593); + setState(596); qualifiedNamePatterns(); } } @@ -4918,25 +4929,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(595); + setState(598); match(RENAME); - setState(596); + setState(599); renameClause(); - setState(601); + 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(597); + setState(600); match(COMMA); - setState(598); + setState(601); renameClause(); } } } - setState(603); + setState(606); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } @@ -4989,28 +5000,28 @@ public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); enterRule(_localctx, 100, RULE_renameClause); try { - setState(612); + setState(615); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(604); + setState(607); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(605); + setState(608); match(AS); - setState(606); + setState(609); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(608); + setState(611); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(609); + setState(612); match(ASSIGN); - setState(610); + setState(613); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); } break; @@ -5065,18 +5076,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(614); + setState(617); match(DISSECT); - setState(615); + setState(618); primaryExpression(0); - setState(616); + setState(619); string(); - setState(618); + setState(621); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: { - setState(617); + setState(620); commandOptions(); } break; @@ -5129,11 +5140,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(620); + setState(623); match(GROK); - setState(621); + setState(624); primaryExpression(0); - setState(622); + setState(625); string(); } } @@ -5180,9 +5191,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(624); + setState(627); match(MV_EXPAND); - setState(625); + setState(628); qualifiedName(); } } @@ -5236,23 +5247,23 @@ public final CommandOptionsContext commandOptions() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(627); + setState(630); commandOption(); - setState(632); + 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(628); + setState(631); match(COMMA); - setState(629); + setState(632); commandOption(); } } } - setState(634); + setState(637); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,58,_ctx); } @@ -5304,11 +5315,11 @@ public final CommandOptionContext commandOption() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(635); + setState(638); identifier(); - setState(636); + setState(639); match(ASSIGN); - setState(637); + setState(640); constant(); } } @@ -5354,7 +5365,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(639); + setState(642); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -5409,20 +5420,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 114, RULE_numericValue); try { - setState(643); + setState(646); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(641); + setState(644); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(642); + setState(645); integerValue(); } break; @@ -5471,12 +5482,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(646); + setState(649); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(645); + setState(648); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5489,7 +5500,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(648); + setState(651); match(DECIMAL_LITERAL); } } @@ -5536,12 +5547,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(651); + setState(654); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(650); + setState(653); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5554,7 +5565,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(653); + setState(656); match(INTEGER_LITERAL); } } @@ -5598,7 +5609,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(655); + setState(658); match(QUOTED_STRING); } } @@ -5648,9 +5659,9 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(657); + setState(660); _la = _input.LA(1); - if ( !(((((_la - 61)) & ~0x3f) == 0 && ((1L << (_la - 61)) & 125L) != 0)) ) { + if ( !(((((_la - 62)) & ~0x3f) == 0 && ((1L << (_la - 62)) & 125L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -5703,9 +5714,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(659); + setState(662); match(EXPLAIN); - setState(660); + setState(663); subqueryExpression(); } } @@ -5753,11 +5764,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(662); + setState(665); match(OPENING_BRACKET); - setState(663); + setState(666); query(0); - setState(664); + setState(667); match(CLOSING_BRACKET); } } @@ -5814,9 +5825,9 @@ public final ShowCommandContext showCommand() throws RecognitionException { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(666); + setState(669); match(SHOW); - setState(667); + setState(670); match(INFO); } } @@ -5879,46 +5890,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(669); + setState(672); match(ENRICH); - setState(670); - ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); setState(673); + ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); + setState(676); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: { - setState(671); + setState(674); match(ON); - setState(672); + setState(675); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(684); + setState(687); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(675); + setState(678); match(WITH); - setState(676); + setState(679); enrichWithClause(); - setState(681); + 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(677); + setState(680); match(COMMA); - setState(678); + setState(681); enrichWithClause(); } } } - setState(683); + setState(686); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); } @@ -5975,19 +5986,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(689); + setState(692); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: { - setState(686); + setState(689); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(687); + setState(690); match(ASSIGN); } break; } - setState(691); + setState(694); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -6044,34 +6055,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(693); + setState(696); match(CHANGE_POINT); - setState(694); - ((ChangePointCommandContext)_localctx).value = qualifiedName(); setState(697); + ((ChangePointCommandContext)_localctx).value = qualifiedName(); + setState(700); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { case 1: { - setState(695); + setState(698); match(ON); - setState(696); + setState(699); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(704); + setState(707); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { - setState(699); + setState(702); match(AS); - setState(700); + setState(703); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(701); + setState(704); match(COMMA); - setState(702); + setState(705); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -6089,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 visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)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; @@ -6123,17 +6184,17 @@ public T accept(ParseTreeVisitor 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(706); + setState(712); match(DEV_LOOKUP); - setState(707); + setState(713); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(708); + setState(714); match(ON); - setState(709); + setState(715); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -6182,22 +6243,22 @@ public T accept(ParseTreeVisitor 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(711); + setState(717); match(DEV_INLINESTATS); - setState(712); + setState(718); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(715); + setState(721); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { - setState(713); + setState(719); match(BY); - setState(714); + setState(720); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -6250,15 +6311,15 @@ public T accept(ParseTreeVisitor 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(717); + setState(723); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 100925440L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 201850880L) != 0)) ) { ((JoinCommandContext)_localctx).type = (Token)_errHandler.recoverInline(this); } else { @@ -6266,11 +6327,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(718); + setState(724); match(JOIN); - setState(719); + setState(725); joinTarget(); - setState(720); + setState(726); joinCondition(); } } @@ -6313,11 +6374,11 @@ public T accept(ParseTreeVisitor 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(722); + setState(728); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6367,30 +6428,30 @@ public T accept(ParseTreeVisitor 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(724); + setState(730); match(ON); - setState(725); + setState(731); joinPredicate(); - setState(730); + 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(726); + setState(732); match(COMMA); - setState(727); + setState(733); joinPredicate(); } } } - setState(732); + setState(738); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } @@ -6434,11 +6495,11 @@ public T accept(ParseTreeVisitor 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(733); + setState(739); valueExpression(); } } @@ -6491,26 +6552,26 @@ public T accept(ParseTreeVisitor 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(735); + setState(741); match(DEV_RERANK); - setState(736); + setState(742); ((RerankCommandContext)_localctx).queryText = constant(); - setState(737); + setState(743); match(ON); - setState(738); + setState(744); rerankFields(); - setState(741); + setState(747); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: { - setState(739); + setState(745); match(WITH); - setState(740); + setState(746); ((RerankCommandContext)_localctx).inferenceId = identifierOrParameter(); } break; @@ -6567,29 +6628,29 @@ public T accept(ParseTreeVisitor 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(743); + setState(749); match(COMPLETION); - setState(747); + setState(753); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { case 1: { - setState(744); + setState(750); ((CompletionCommandContext)_localctx).targetField = qualifiedName(); - setState(745); + setState(751); match(ASSIGN); } break; } - setState(749); + setState(755); ((CompletionCommandContext)_localctx).prompt = primaryExpression(0); - setState(750); + setState(756); match(WITH); - setState(751); + setState(757); ((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter(); } } @@ -6673,7 +6734,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u008a\u02f2\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"+ @@ -6692,458 +6753,460 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in ";\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007"+ "@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007"+ "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+ - "J\u0002K\u0007K\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00a2"+ - "\b\u0001\n\u0001\f\u0001\u00a5\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00ad\b\u0002\u0001\u0003"+ + "J\u0002K\u0007K\u0002L\u0007L\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005"+ + "\u0001\u00a4\b\u0001\n\u0001\f\u0001\u00a7\t\u0001\u0001\u0002\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00af\b\u0002"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0001\u0003\u0003\u0003\u00c4\b\u0003\u0001\u0004\u0001\u0004"+ - "\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0003\u0005\u00d0\b\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00d7\b\u0005\n\u0005"+ - "\f\u0005\u00da\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0003\u0005\u00e1\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0003\u0005\u00e6\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0005\u0005\u00ee\b\u0005\n\u0005\f\u0005\u00f1"+ - "\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00f5\b\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u00fc\b\u0006"+ - "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+ - "\u0103\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0005\u0006\u010a\b\u0006\n\u0006\f\u0006\u010d\t\u0006\u0001\u0006\u0001"+ - "\u0006\u0003\u0006\u0111\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003"+ - "\u0007\u0116\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001"+ - "\b\u0001\b\u0001\b\u0001\b\u0003\b\u0120\b\b\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0003\t\u0126\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005"+ - "\t\u012e\b\t\n\t\f\t\u0131\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n"+ - "\u0001\n\u0001\n\u0001\n\u0003\n\u013b\b\n\u0001\n\u0001\n\u0001\n\u0005"+ - "\n\u0140\b\n\n\n\f\n\u0143\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ - "\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u014b\b\u000b\n\u000b\f\u000b"+ - "\u014e\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u0152\b\u000b\u0003"+ - "\u000b\u0154\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001"+ - "\r\u0001\r\u0001\r\u0005\r\u015e\b\r\n\r\f\r\u0161\t\r\u0001\r\u0001\r"+ - "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f"+ - "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011"+ - "\u0005\u0011\u0171\b\u0011\n\u0011\f\u0011\u0174\t\u0011\u0001\u0012\u0001"+ - "\u0012\u0001\u0012\u0003\u0012\u0179\b\u0012\u0001\u0012\u0001\u0012\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0180\b\u0013\n\u0013\f\u0013"+ - "\u0183\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0188\b"+ - "\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u018e"+ - "\b\u0015\n\u0015\f\u0015\u0191\t\u0015\u0001\u0015\u0003\u0015\u0194\b"+ - "\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+ - "\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0003\u0016\u019f\b\u0016\u0001"+ - "\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001"+ - "\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u01ab\b\u001b\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u01b1\b\u001c\n"+ - "\u001c\f\u001c\u01b4\t\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ - "\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01be"+ - "\b\u001e\n\u001e\f\u001e\u01c1\t\u001e\u0001\u001e\u0003\u001e\u01c4\b"+ - "\u001e\u0001\u001e\u0001\u001e\u0003\u001e\u01c8\b\u001e\u0001\u001f\u0001"+ - "\u001f\u0001\u001f\u0001 \u0001 \u0003 \u01cf\b \u0001 \u0001 \u0003 "+ - "\u01d3\b \u0001!\u0001!\u0001!\u0005!\u01d8\b!\n!\f!\u01db\t!\u0001\""+ - "\u0001\"\u0001\"\u0003\"\u01e0\b\"\u0001#\u0001#\u0001#\u0005#\u01e5\b"+ - "#\n#\f#\u01e8\t#\u0001$\u0001$\u0001$\u0005$\u01ed\b$\n$\f$\u01f0\t$\u0001"+ - "%\u0001%\u0001%\u0005%\u01f5\b%\n%\f%\u01f8\t%\u0001&\u0001&\u0001\'\u0001"+ - "\'\u0001\'\u0003\'\u01ff\b\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+ - "(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u020e\b(\n("+ - "\f(\u0211\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0219\b"+ - "(\n(\f(\u021c\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u0224"+ - "\b(\n(\f(\u0227\t(\u0001(\u0001(\u0003(\u022b\b(\u0001)\u0001)\u0003)"+ - "\u022f\b)\u0001*\u0001*\u0003*\u0233\b*\u0001+\u0001+\u0001+\u0003+\u0238"+ - "\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0005-\u0241\b-\n"+ - "-\f-\u0244\t-\u0001.\u0001.\u0003.\u0248\b.\u0001.\u0001.\u0003.\u024c"+ + "\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\u0258\b1\n1\f1\u025b\t1\u00012\u00012\u00012\u00012\u00012\u0001"+ - "2\u00012\u00012\u00032\u0265\b2\u00013\u00013\u00013\u00013\u00033\u026b"+ + "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\u0277\b6\n6\f6\u027a\t6\u00017\u00017\u00017\u00017\u00018\u0001"+ - "8\u00019\u00019\u00039\u0284\b9\u0001:\u0003:\u0287\b:\u0001:\u0001:\u0001"+ - ";\u0003;\u028c\b;\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001>\u0001"+ + "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\u02a2\bA\u0001A\u0001A\u0001A\u0001A\u0005A\u02a8"+ - "\bA\nA\fA\u02ab\tA\u0003A\u02ad\bA\u0001B\u0001B\u0001B\u0003B\u02b2\b"+ - "B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003C\u02ba\bC\u0001C\u0001"+ - "C\u0001C\u0001C\u0001C\u0003C\u02c1\bC\u0001D\u0001D\u0001D\u0001D\u0001"+ - "D\u0001E\u0001E\u0001E\u0001E\u0003E\u02cc\bE\u0001F\u0001F\u0001F\u0001"+ - "F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0005H\u02d9\bH\nH"+ - "\fH\u02dc\tH\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0003"+ - "J\u02e6\bJ\u0001K\u0001K\u0001K\u0001K\u0003K\u02ec\bK\u0001K\u0001K\u0001"+ - "K\u0001K\u0001K\u0000\u0004\u0002\n\u0012\u0014L\u0000\u0002\u0004\u0006"+ - "\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,."+ - "02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088"+ - "\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0000\t\u0001\u0000DE\u0001"+ - "\u0000FH\u0002\u0000 YY\u0001\u0000PQ\u0002\u0000$$**\u0002\u0000--0"+ - "0\u0002\u0000,,;;\u0002\u0000==?C\u0002\u0000\u0012\u0012\u0019\u001a"+ - "\u0313\u0000\u0098\u0001\u0000\u0000\u0000\u0002\u009b\u0001\u0000\u0000"+ - "\u0000\u0004\u00ac\u0001\u0000\u0000\u0000\u0006\u00c3\u0001\u0000\u0000"+ - "\u0000\b\u00c5\u0001\u0000\u0000\u0000\n\u00e5\u0001\u0000\u0000\u0000"+ - "\f\u0110\u0001\u0000\u0000\u0000\u000e\u0112\u0001\u0000\u0000\u0000\u0010"+ - "\u011f\u0001\u0000\u0000\u0000\u0012\u0125\u0001\u0000\u0000\u0000\u0014"+ - "\u013a\u0001\u0000\u0000\u0000\u0016\u0144\u0001\u0000\u0000\u0000\u0018"+ - "\u0157\u0001\u0000\u0000\u0000\u001a\u0159\u0001\u0000\u0000\u0000\u001c"+ - "\u0164\u0001\u0000\u0000\u0000\u001e\u0168\u0001\u0000\u0000\u0000 \u016a"+ - "\u0001\u0000\u0000\u0000\"\u016d\u0001\u0000\u0000\u0000$\u0178\u0001"+ - "\u0000\u0000\u0000&\u017c\u0001\u0000\u0000\u0000(\u0184\u0001\u0000\u0000"+ - "\u0000*\u0189\u0001\u0000\u0000\u0000,\u019e\u0001\u0000\u0000\u0000."+ - "\u01a0\u0001\u0000\u0000\u00000\u01a2\u0001\u0000\u0000\u00002\u01a4\u0001"+ - "\u0000\u0000\u00004\u01a6\u0001\u0000\u0000\u00006\u01aa\u0001\u0000\u0000"+ - "\u00008\u01ac\u0001\u0000\u0000\u0000:\u01b5\u0001\u0000\u0000\u0000<"+ - "\u01b9\u0001\u0000\u0000\u0000>\u01c9\u0001\u0000\u0000\u0000@\u01cc\u0001"+ - "\u0000\u0000\u0000B\u01d4\u0001\u0000\u0000\u0000D\u01dc\u0001\u0000\u0000"+ - "\u0000F\u01e1\u0001\u0000\u0000\u0000H\u01e9\u0001\u0000\u0000\u0000J"+ - "\u01f1\u0001\u0000\u0000\u0000L\u01f9\u0001\u0000\u0000\u0000N\u01fe\u0001"+ - "\u0000\u0000\u0000P\u022a\u0001\u0000\u0000\u0000R\u022e\u0001\u0000\u0000"+ - "\u0000T\u0232\u0001\u0000\u0000\u0000V\u0237\u0001\u0000\u0000\u0000X"+ - "\u0239\u0001\u0000\u0000\u0000Z\u023c\u0001\u0000\u0000\u0000\\\u0245"+ - "\u0001\u0000\u0000\u0000^\u024d\u0001\u0000\u0000\u0000`\u0250\u0001\u0000"+ - "\u0000\u0000b\u0253\u0001\u0000\u0000\u0000d\u0264\u0001\u0000\u0000\u0000"+ - "f\u0266\u0001\u0000\u0000\u0000h\u026c\u0001\u0000\u0000\u0000j\u0270"+ - "\u0001\u0000\u0000\u0000l\u0273\u0001\u0000\u0000\u0000n\u027b\u0001\u0000"+ - "\u0000\u0000p\u027f\u0001\u0000\u0000\u0000r\u0283\u0001\u0000\u0000\u0000"+ - "t\u0286\u0001\u0000\u0000\u0000v\u028b\u0001\u0000\u0000\u0000x\u028f"+ - "\u0001\u0000\u0000\u0000z\u0291\u0001\u0000\u0000\u0000|\u0293\u0001\u0000"+ - "\u0000\u0000~\u0296\u0001\u0000\u0000\u0000\u0080\u029a\u0001\u0000\u0000"+ - "\u0000\u0082\u029d\u0001\u0000\u0000\u0000\u0084\u02b1\u0001\u0000\u0000"+ - "\u0000\u0086\u02b5\u0001\u0000\u0000\u0000\u0088\u02c2\u0001\u0000\u0000"+ - "\u0000\u008a\u02c7\u0001\u0000\u0000\u0000\u008c\u02cd\u0001\u0000\u0000"+ - "\u0000\u008e\u02d2\u0001\u0000\u0000\u0000\u0090\u02d4\u0001\u0000\u0000"+ - "\u0000\u0092\u02dd\u0001\u0000\u0000\u0000\u0094\u02df\u0001\u0000\u0000"+ - "\u0000\u0096\u02e7\u0001\u0000\u0000\u0000\u0098\u0099\u0003\u0002\u0001"+ - "\u0000\u0099\u009a\u0005\u0000\u0000\u0001\u009a\u0001\u0001\u0000\u0000"+ - "\u0000\u009b\u009c\u0006\u0001\uffff\uffff\u0000\u009c\u009d\u0003\u0004"+ - "\u0002\u0000\u009d\u00a3\u0001\u0000\u0000\u0000\u009e\u009f\n\u0001\u0000"+ - "\u0000\u009f\u00a0\u0005\u001f\u0000\u0000\u00a0\u00a2\u0003\u0006\u0003"+ - "\u0000\u00a1\u009e\u0001\u0000\u0000\u0000\u00a2\u00a5\u0001\u0000\u0000"+ - "\u0000\u00a3\u00a1\u0001\u0000\u0000\u0000\u00a3\u00a4\u0001\u0000\u0000"+ - "\u0000\u00a4\u0003\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000"+ - "\u0000\u00a6\u00ad\u0003|>\u0000\u00a7\u00ad\u0003*\u0015\u0000\u00a8"+ - "\u00ad\u0003 \u0010\u0000\u00a9\u00ad\u0003\u0080@\u0000\u00aa\u00ab\u0004"+ - "\u0002\u0001\u0000\u00ab\u00ad\u0003<\u001e\u0000\u00ac\u00a6\u0001\u0000"+ - "\u0000\u0000\u00ac\u00a7\u0001\u0000\u0000\u0000\u00ac\u00a8\u0001\u0000"+ - "\u0000\u0000\u00ac\u00a9\u0001\u0000\u0000\u0000\u00ac\u00aa\u0001\u0000"+ - "\u0000\u0000\u00ad\u0005\u0001\u0000\u0000\u0000\u00ae\u00c4\u0003>\u001f"+ - "\u0000\u00af\u00c4\u0003\b\u0004\u0000\u00b0\u00c4\u0003^/\u0000\u00b1"+ - "\u00c4\u0003X,\u0000\u00b2\u00c4\u0003@ \u0000\u00b3\u00c4\u0003Z-\u0000"+ - "\u00b4\u00c4\u0003`0\u0000\u00b5\u00c4\u0003b1\u0000\u00b6\u00c4\u0003"+ - "f3\u0000\u00b7\u00c4\u0003h4\u0000\u00b8\u00c4\u0003\u0082A\u0000\u00b9"+ - "\u00c4\u0003j5\u0000\u00ba\u00c4\u0003\u008cF\u0000\u00bb\u00c4\u0003"+ - "\u0086C\u0000\u00bc\u00c4\u0003\u0096K\u0000\u00bd\u00be\u0004\u0003\u0002"+ - "\u0000\u00be\u00c4\u0003\u008aE\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000"+ - "\u00c0\u00c4\u0003\u0088D\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2"+ - "\u00c4\u0003\u0094J\u0000\u00c3\u00ae\u0001\u0000\u0000\u0000\u00c3\u00af"+ - "\u0001\u0000\u0000\u0000\u00c3\u00b0\u0001\u0000\u0000\u0000\u00c3\u00b1"+ - "\u0001\u0000\u0000\u0000\u00c3\u00b2\u0001\u0000\u0000\u0000\u00c3\u00b3"+ - "\u0001\u0000\u0000\u0000\u00c3\u00b4\u0001\u0000\u0000\u0000\u00c3\u00b5"+ - "\u0001\u0000\u0000\u0000\u00c3\u00b6\u0001\u0000\u0000\u0000\u00c3\u00b7"+ - "\u0001\u0000\u0000\u0000\u00c3\u00b8\u0001\u0000\u0000\u0000\u00c3\u00b9"+ - "\u0001\u0000\u0000\u0000\u00c3\u00ba\u0001\u0000\u0000\u0000\u00c3\u00bb"+ - "\u0001\u0000\u0000\u0000\u00c3\u00bc\u0001\u0000\u0000\u0000\u00c3\u00bd"+ - "\u0001\u0000\u0000\u0000\u00c3\u00bf\u0001\u0000\u0000\u0000\u00c3\u00c1"+ - "\u0001\u0000\u0000\u0000\u00c4\u0007\u0001\u0000\u0000\u0000\u00c5\u00c6"+ - "\u0005\u0011\u0000\u0000\u00c6\u00c7\u0003\n\u0005\u0000\u00c7\t\u0001"+ - "\u0000\u0000\u0000\u00c8\u00c9\u0006\u0005\uffff\uffff\u0000\u00c9\u00ca"+ - "\u00053\u0000\u0000\u00ca\u00e6\u0003\n\u0005\b\u00cb\u00e6\u0003\u0010"+ - "\b\u0000\u00cc\u00e6\u0003\f\u0006\u0000\u00cd\u00cf\u0003\u0010\b\u0000"+ - "\u00ce\u00d0\u00053\u0000\u0000\u00cf\u00ce\u0001\u0000\u0000\u0000\u00cf"+ - "\u00d0\u0001\u0000\u0000\u0000\u00d0\u00d1\u0001\u0000\u0000\u0000\u00d1"+ - "\u00d2\u0005.\u0000\u0000\u00d2\u00d3\u00052\u0000\u0000\u00d3\u00d8\u0003"+ - "\u0010\b\u0000\u00d4\u00d5\u0005)\u0000\u0000\u00d5\u00d7\u0003\u0010"+ - "\b\u0000\u00d6\u00d4\u0001\u0000\u0000\u0000\u00d7\u00da\u0001\u0000\u0000"+ - "\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d8\u00d9\u0001\u0000\u0000"+ - "\u0000\u00d9\u00db\u0001\u0000\u0000\u0000\u00da\u00d8\u0001\u0000\u0000"+ - "\u0000\u00db\u00dc\u0005:\u0000\u0000\u00dc\u00e6\u0001\u0000\u0000\u0000"+ - "\u00dd\u00de\u0003\u0010\b\u0000\u00de\u00e0\u0005/\u0000\u0000\u00df"+ - "\u00e1\u00053\u0000\u0000\u00e0\u00df\u0001\u0000\u0000\u0000\u00e0\u00e1"+ - "\u0001\u0000\u0000\u0000\u00e1\u00e2\u0001\u0000\u0000\u0000\u00e2\u00e3"+ - "\u00054\u0000\u0000\u00e3\u00e6\u0001\u0000\u0000\u0000\u00e4\u00e6\u0003"+ - "\u000e\u0007\u0000\u00e5\u00c8\u0001\u0000\u0000\u0000\u00e5\u00cb\u0001"+ - "\u0000\u0000\u0000\u00e5\u00cc\u0001\u0000\u0000\u0000\u00e5\u00cd\u0001"+ - "\u0000\u0000\u0000\u00e5\u00dd\u0001\u0000\u0000\u0000\u00e5\u00e4\u0001"+ - "\u0000\u0000\u0000\u00e6\u00ef\u0001\u0000\u0000\u0000\u00e7\u00e8\n\u0005"+ - "\u0000\u0000\u00e8\u00e9\u0005#\u0000\u0000\u00e9\u00ee\u0003\n\u0005"+ - "\u0006\u00ea\u00eb\n\u0004\u0000\u0000\u00eb\u00ec\u00057\u0000\u0000"+ - "\u00ec\u00ee\u0003\n\u0005\u0005\u00ed\u00e7\u0001\u0000\u0000\u0000\u00ed"+ - "\u00ea\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000\u00ef"+ - "\u00ed\u0001\u0000\u0000\u0000\u00ef\u00f0\u0001\u0000\u0000\u0000\u00f0"+ - "\u000b\u0001\u0000\u0000\u0000\u00f1\u00ef\u0001\u0000\u0000\u0000\u00f2"+ - "\u00f4\u0003\u0010\b\u0000\u00f3\u00f5\u00053\u0000\u0000\u00f4\u00f3"+ - "\u0001\u0000\u0000\u0000\u00f4\u00f5\u0001\u0000\u0000\u0000\u00f5\u00f6"+ - "\u0001\u0000\u0000\u0000\u00f6\u00f7\u00051\u0000\u0000\u00f7\u00f8\u0003"+ - "x<\u0000\u00f8\u0111\u0001\u0000\u0000\u0000\u00f9\u00fb\u0003\u0010\b"+ - "\u0000\u00fa\u00fc\u00053\u0000\u0000\u00fb\u00fa\u0001\u0000\u0000\u0000"+ - "\u00fb\u00fc\u0001\u0000\u0000\u0000\u00fc\u00fd\u0001\u0000\u0000\u0000"+ - "\u00fd\u00fe\u00059\u0000\u0000\u00fe\u00ff\u0003x<\u0000\u00ff\u0111"+ - "\u0001\u0000\u0000\u0000\u0100\u0102\u0003\u0010\b\u0000\u0101\u0103\u0005"+ - "3\u0000\u0000\u0102\u0101\u0001\u0000\u0000\u0000\u0102\u0103\u0001\u0000"+ - "\u0000\u0000\u0103\u0104\u0001\u0000\u0000\u0000\u0104\u0105\u00051\u0000"+ - "\u0000\u0105\u0106\u00052\u0000\u0000\u0106\u010b\u0003x<\u0000\u0107"+ - "\u0108\u0005)\u0000\u0000\u0108\u010a\u0003x<\u0000\u0109\u0107\u0001"+ - "\u0000\u0000\u0000\u010a\u010d\u0001\u0000\u0000\u0000\u010b\u0109\u0001"+ - "\u0000\u0000\u0000\u010b\u010c\u0001\u0000\u0000\u0000\u010c\u010e\u0001"+ - "\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010e\u010f\u0005"+ - ":\u0000\u0000\u010f\u0111\u0001\u0000\u0000\u0000\u0110\u00f2\u0001\u0000"+ - "\u0000\u0000\u0110\u00f9\u0001\u0000\u0000\u0000\u0110\u0100\u0001\u0000"+ - "\u0000\u0000\u0111\r\u0001\u0000\u0000\u0000\u0112\u0115\u0003F#\u0000"+ - "\u0113\u0114\u0005\'\u0000\u0000\u0114\u0116\u0003\u001e\u000f\u0000\u0115"+ - "\u0113\u0001\u0000\u0000\u0000\u0115\u0116\u0001\u0000\u0000\u0000\u0116"+ - "\u0117\u0001\u0000\u0000\u0000\u0117\u0118\u0005(\u0000\u0000\u0118\u0119"+ - "\u0003P(\u0000\u0119\u000f\u0001\u0000\u0000\u0000\u011a\u0120\u0003\u0012"+ - "\t\u0000\u011b\u011c\u0003\u0012\t\u0000\u011c\u011d\u0003z=\u0000\u011d"+ - "\u011e\u0003\u0012\t\u0000\u011e\u0120\u0001\u0000\u0000\u0000\u011f\u011a"+ - "\u0001\u0000\u0000\u0000\u011f\u011b\u0001\u0000\u0000\u0000\u0120\u0011"+ - "\u0001\u0000\u0000\u0000\u0121\u0122\u0006\t\uffff\uffff\u0000\u0122\u0126"+ - "\u0003\u0014\n\u0000\u0123\u0124\u0007\u0000\u0000\u0000\u0124\u0126\u0003"+ - "\u0012\t\u0003\u0125\u0121\u0001\u0000\u0000\u0000\u0125\u0123\u0001\u0000"+ - "\u0000\u0000\u0126\u012f\u0001\u0000\u0000\u0000\u0127\u0128\n\u0002\u0000"+ - "\u0000\u0128\u0129\u0007\u0001\u0000\u0000\u0129\u012e\u0003\u0012\t\u0003"+ - "\u012a\u012b\n\u0001\u0000\u0000\u012b\u012c\u0007\u0000\u0000\u0000\u012c"+ - "\u012e\u0003\u0012\t\u0002\u012d\u0127\u0001\u0000\u0000\u0000\u012d\u012a"+ - "\u0001\u0000\u0000\u0000\u012e\u0131\u0001\u0000\u0000\u0000\u012f\u012d"+ - "\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130\u0013"+ - "\u0001\u0000\u0000\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132\u0133"+ - "\u0006\n\uffff\uffff\u0000\u0133\u013b\u0003P(\u0000\u0134\u013b\u0003"+ - "F#\u0000\u0135\u013b\u0003\u0016\u000b\u0000\u0136\u0137\u00052\u0000"+ - "\u0000\u0137\u0138\u0003\n\u0005\u0000\u0138\u0139\u0005:\u0000\u0000"+ - "\u0139\u013b\u0001\u0000\u0000\u0000\u013a\u0132\u0001\u0000\u0000\u0000"+ - "\u013a\u0134\u0001\u0000\u0000\u0000\u013a\u0135\u0001\u0000\u0000\u0000"+ - "\u013a\u0136\u0001\u0000\u0000\u0000\u013b\u0141\u0001\u0000\u0000\u0000"+ - "\u013c\u013d\n\u0001\u0000\u0000\u013d\u013e\u0005\'\u0000\u0000\u013e"+ - "\u0140\u0003\u001e\u000f\u0000\u013f\u013c\u0001\u0000\u0000\u0000\u0140"+ - "\u0143\u0001\u0000\u0000\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0141"+ - "\u0142\u0001\u0000\u0000\u0000\u0142\u0015\u0001\u0000\u0000\u0000\u0143"+ - "\u0141\u0001\u0000\u0000\u0000\u0144\u0145\u0003\u0018\f\u0000\u0145\u0153"+ - "\u00052\u0000\u0000\u0146\u0154\u0005F\u0000\u0000\u0147\u014c\u0003\n"+ - "\u0005\u0000\u0148\u0149\u0005)\u0000\u0000\u0149\u014b\u0003\n\u0005"+ - "\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014b\u014e\u0001\u0000\u0000"+ - "\u0000\u014c\u014a\u0001\u0000\u0000\u0000\u014c\u014d\u0001\u0000\u0000"+ - "\u0000\u014d\u0151\u0001\u0000\u0000\u0000\u014e\u014c\u0001\u0000\u0000"+ - "\u0000\u014f\u0150\u0005)\u0000\u0000\u0150\u0152\u0003\u001a\r\u0000"+ - "\u0151\u014f\u0001\u0000\u0000\u0000\u0151\u0152\u0001\u0000\u0000\u0000"+ - "\u0152\u0154\u0001\u0000\u0000\u0000\u0153\u0146\u0001\u0000\u0000\u0000"+ - "\u0153\u0147\u0001\u0000\u0000\u0000\u0153\u0154\u0001\u0000\u0000\u0000"+ - "\u0154\u0155\u0001\u0000\u0000\u0000\u0155\u0156\u0005:\u0000\u0000\u0156"+ - "\u0017\u0001\u0000\u0000\u0000\u0157\u0158\u0003V+\u0000\u0158\u0019\u0001"+ - "\u0000\u0000\u0000\u0159\u015a\u0005I\u0000\u0000\u015a\u015f\u0003\u001c"+ - "\u000e\u0000\u015b\u015c\u0005)\u0000\u0000\u015c\u015e\u0003\u001c\u000e"+ - "\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015e\u0161\u0001\u0000\u0000"+ - "\u0000\u015f\u015d\u0001\u0000\u0000\u0000\u015f\u0160\u0001\u0000\u0000"+ - "\u0000\u0160\u0162\u0001\u0000\u0000\u0000\u0161\u015f\u0001\u0000\u0000"+ - "\u0000\u0162\u0163\u0005J\u0000\u0000\u0163\u001b\u0001\u0000\u0000\u0000"+ - "\u0164\u0165\u0003x<\u0000\u0165\u0166\u0005(\u0000\u0000\u0166\u0167"+ - "\u0003P(\u0000\u0167\u001d\u0001\u0000\u0000\u0000\u0168\u0169\u0003L"+ - "&\u0000\u0169\u001f\u0001\u0000\u0000\u0000\u016a\u016b\u0005\r\u0000"+ - "\u0000\u016b\u016c\u0003\"\u0011\u0000\u016c!\u0001\u0000\u0000\u0000"+ - "\u016d\u0172\u0003$\u0012\u0000\u016e\u016f\u0005)\u0000\u0000\u016f\u0171"+ - "\u0003$\u0012\u0000\u0170\u016e\u0001\u0000\u0000\u0000\u0171\u0174\u0001"+ - "\u0000\u0000\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0172\u0173\u0001"+ - "\u0000\u0000\u0000\u0173#\u0001\u0000\u0000\u0000\u0174\u0172\u0001\u0000"+ - "\u0000\u0000\u0175\u0176\u0003F#\u0000\u0176\u0177\u0005%\u0000\u0000"+ - "\u0177\u0179\u0001\u0000\u0000\u0000\u0178\u0175\u0001\u0000\u0000\u0000"+ - "\u0178\u0179\u0001\u0000\u0000\u0000\u0179\u017a\u0001\u0000\u0000\u0000"+ - "\u017a\u017b\u0003\n\u0005\u0000\u017b%\u0001\u0000\u0000\u0000\u017c"+ - "\u0181\u0003(\u0014\u0000\u017d\u017e\u0005)\u0000\u0000\u017e\u0180\u0003"+ - "(\u0014\u0000\u017f\u017d\u0001\u0000\u0000\u0000\u0180\u0183\u0001\u0000"+ - "\u0000\u0000\u0181\u017f\u0001\u0000\u0000\u0000\u0181\u0182\u0001\u0000"+ - "\u0000\u0000\u0182\'\u0001\u0000\u0000\u0000\u0183\u0181\u0001\u0000\u0000"+ - "\u0000\u0184\u0187\u0003F#\u0000\u0185\u0186\u0005%\u0000\u0000\u0186"+ - "\u0188\u0003\n\u0005\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0187\u0188"+ - "\u0001\u0000\u0000\u0000\u0188)\u0001\u0000\u0000\u0000\u0189\u018a\u0005"+ - "\u0007\u0000\u0000\u018a\u018f\u0003,\u0016\u0000\u018b\u018c\u0005)\u0000"+ - "\u0000\u018c\u018e\u0003,\u0016\u0000\u018d\u018b\u0001\u0000\u0000\u0000"+ - "\u018e\u0191\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000\u0000"+ - "\u018f\u0190\u0001\u0000\u0000\u0000\u0190\u0193\u0001\u0000\u0000\u0000"+ - "\u0191\u018f\u0001\u0000\u0000\u0000\u0192\u0194\u00036\u001b\u0000\u0193"+ - "\u0192\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000\u0000\u0194"+ - "+\u0001\u0000\u0000\u0000\u0195\u0196\u0003.\u0017\u0000\u0196\u0197\u0005"+ - "(\u0000\u0000\u0197\u0198\u00032\u0019\u0000\u0198\u019f\u0001\u0000\u0000"+ - "\u0000\u0199\u019a\u00032\u0019\u0000\u019a\u019b\u0005\'\u0000\u0000"+ - "\u019b\u019c\u00030\u0018\u0000\u019c\u019f\u0001\u0000\u0000\u0000\u019d"+ - "\u019f\u00034\u001a\u0000\u019e\u0195\u0001\u0000\u0000\u0000\u019e\u0199"+ - "\u0001\u0000\u0000\u0000\u019e\u019d\u0001\u0000\u0000\u0000\u019f-\u0001"+ - "\u0000\u0000\u0000\u01a0\u01a1\u0005Y\u0000\u0000\u01a1/\u0001\u0000\u0000"+ - "\u0000\u01a2\u01a3\u0005Y\u0000\u0000\u01a31\u0001\u0000\u0000\u0000\u01a4"+ - "\u01a5\u0005Y\u0000\u0000\u01a53\u0001\u0000\u0000\u0000\u01a6\u01a7\u0007"+ - "\u0002\u0000\u0000\u01a75\u0001\u0000\u0000\u0000\u01a8\u01ab\u00038\u001c"+ - "\u0000\u01a9\u01ab\u0003:\u001d\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000"+ - "\u01aa\u01a9\u0001\u0000\u0000\u0000\u01ab7\u0001\u0000\u0000\u0000\u01ac"+ - "\u01ad\u0005X\u0000\u0000\u01ad\u01b2\u0005Y\u0000\u0000\u01ae\u01af\u0005"+ - ")\u0000\u0000\u01af\u01b1\u0005Y\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000"+ - "\u0000\u01b1\u01b4\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000\u0000"+ - "\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000\u01b39\u0001\u0000\u0000\u0000"+ - "\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b6\u0005N\u0000\u0000\u01b6"+ - "\u01b7\u00038\u001c\u0000\u01b7\u01b8\u0005O\u0000\u0000\u01b8;\u0001"+ - "\u0000\u0000\u0000\u01b9\u01ba\u0005\u0016\u0000\u0000\u01ba\u01bf\u0003"+ - ",\u0016\u0000\u01bb\u01bc\u0005)\u0000\u0000\u01bc\u01be\u0003,\u0016"+ - "\u0000\u01bd\u01bb\u0001\u0000\u0000\u0000\u01be\u01c1\u0001\u0000\u0000"+ - "\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001\u0000\u0000"+ - "\u0000\u01c0\u01c3\u0001\u0000\u0000\u0000\u01c1\u01bf\u0001\u0000\u0000"+ - "\u0000\u01c2\u01c4\u0003B!\u0000\u01c3\u01c2\u0001\u0000\u0000\u0000\u01c3"+ - "\u01c4\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5"+ - "\u01c6\u0005&\u0000\u0000\u01c6\u01c8\u0003\"\u0011\u0000\u01c7\u01c5"+ - "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0001\u0000\u0000\u0000\u01c8=\u0001"+ - "\u0000\u0000\u0000\u01c9\u01ca\u0005\u0005\u0000\u0000\u01ca\u01cb\u0003"+ - "\"\u0011\u0000\u01cb?\u0001\u0000\u0000\u0000\u01cc\u01ce\u0005\u0010"+ - "\u0000\u0000\u01cd\u01cf\u0003B!\u0000\u01ce\u01cd\u0001\u0000\u0000\u0000"+ - "\u01ce\u01cf\u0001\u0000\u0000\u0000\u01cf\u01d2\u0001\u0000\u0000\u0000"+ - "\u01d0\u01d1\u0005&\u0000\u0000\u01d1\u01d3\u0003\"\u0011\u0000\u01d2"+ - "\u01d0\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3"+ - "A\u0001\u0000\u0000\u0000\u01d4\u01d9\u0003D\"\u0000\u01d5\u01d6\u0005"+ - ")\u0000\u0000\u01d6\u01d8\u0003D\"\u0000\u01d7\u01d5\u0001\u0000\u0000"+ - "\u0000\u01d8\u01db\u0001\u0000\u0000\u0000\u01d9\u01d7\u0001\u0000\u0000"+ - "\u0000\u01d9\u01da\u0001\u0000\u0000\u0000\u01daC\u0001\u0000\u0000\u0000"+ - "\u01db\u01d9\u0001\u0000\u0000\u0000\u01dc\u01df\u0003$\u0012\u0000\u01dd"+ - "\u01de\u0005\u0011\u0000\u0000\u01de\u01e0\u0003\n\u0005\u0000\u01df\u01dd"+ - "\u0001\u0000\u0000\u0000\u01df\u01e0\u0001\u0000\u0000\u0000\u01e0E\u0001"+ - "\u0000\u0000\u0000\u01e1\u01e6\u0003V+\u0000\u01e2\u01e3\u0005+\u0000"+ - "\u0000\u01e3\u01e5\u0003V+\u0000\u01e4\u01e2\u0001\u0000\u0000\u0000\u01e5"+ - "\u01e8\u0001\u0000\u0000\u0000\u01e6\u01e4\u0001\u0000\u0000\u0000\u01e6"+ - "\u01e7\u0001\u0000\u0000\u0000\u01e7G\u0001\u0000\u0000\u0000\u01e8\u01e6"+ - "\u0001\u0000\u0000\u0000\u01e9\u01ee\u0003N\'\u0000\u01ea\u01eb\u0005"+ - "+\u0000\u0000\u01eb\u01ed\u0003N\'\u0000\u01ec\u01ea\u0001\u0000\u0000"+ - "\u0000\u01ed\u01f0\u0001\u0000\u0000\u0000\u01ee\u01ec\u0001\u0000\u0000"+ - "\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01efI\u0001\u0000\u0000\u0000"+ - "\u01f0\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f6\u0003H$\u0000\u01f2\u01f3"+ - "\u0005)\u0000\u0000\u01f3\u01f5\u0003H$\u0000\u01f4\u01f2\u0001\u0000"+ - "\u0000\u0000\u01f5\u01f8\u0001\u0000\u0000\u0000\u01f6\u01f4\u0001\u0000"+ - "\u0000\u0000\u01f6\u01f7\u0001\u0000\u0000\u0000\u01f7K\u0001\u0000\u0000"+ - "\u0000\u01f8\u01f6\u0001\u0000\u0000\u0000\u01f9\u01fa\u0007\u0003\u0000"+ - "\u0000\u01faM\u0001\u0000\u0000\u0000\u01fb\u01ff\u0005]\u0000\u0000\u01fc"+ - "\u01ff\u0003R)\u0000\u01fd\u01ff\u0003T*\u0000\u01fe\u01fb\u0001\u0000"+ - "\u0000\u0000\u01fe\u01fc\u0001\u0000\u0000\u0000\u01fe\u01fd\u0001\u0000"+ - "\u0000\u0000\u01ffO\u0001\u0000\u0000\u0000\u0200\u022b\u00054\u0000\u0000"+ - "\u0201\u0202\u0003v;\u0000\u0202\u0203\u0005P\u0000\u0000\u0203\u022b"+ - "\u0001\u0000\u0000\u0000\u0204\u022b\u0003t:\u0000\u0205\u022b\u0003v"+ - ";\u0000\u0206\u022b\u0003p8\u0000\u0207\u022b\u0003R)\u0000\u0208\u022b"+ - "\u0003x<\u0000\u0209\u020a\u0005N\u0000\u0000\u020a\u020f\u0003r9\u0000"+ - "\u020b\u020c\u0005)\u0000\u0000\u020c\u020e\u0003r9\u0000\u020d\u020b"+ - "\u0001\u0000\u0000\u0000\u020e\u0211\u0001\u0000\u0000\u0000\u020f\u020d"+ - "\u0001\u0000\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000\u0210\u0212"+ - "\u0001\u0000\u0000\u0000\u0211\u020f\u0001\u0000\u0000\u0000\u0212\u0213"+ - "\u0005O\u0000\u0000\u0213\u022b\u0001\u0000\u0000\u0000\u0214\u0215\u0005"+ - "N\u0000\u0000\u0215\u021a\u0003p8\u0000\u0216\u0217\u0005)\u0000\u0000"+ - "\u0217\u0219\u0003p8\u0000\u0218\u0216\u0001\u0000\u0000\u0000\u0219\u021c"+ - "\u0001\u0000\u0000\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021a\u021b"+ - "\u0001\u0000\u0000\u0000\u021b\u021d\u0001\u0000\u0000\u0000\u021c\u021a"+ - "\u0001\u0000\u0000\u0000\u021d\u021e\u0005O\u0000\u0000\u021e\u022b\u0001"+ - "\u0000\u0000\u0000\u021f\u0220\u0005N\u0000\u0000\u0220\u0225\u0003x<"+ - "\u0000\u0221\u0222\u0005)\u0000\u0000\u0222\u0224\u0003x<\u0000\u0223"+ - "\u0221\u0001\u0000\u0000\u0000\u0224\u0227\u0001\u0000\u0000\u0000\u0225"+ - "\u0223\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+ - "\u0228\u0001\u0000\u0000\u0000\u0227\u0225\u0001\u0000\u0000\u0000\u0228"+ - "\u0229\u0005O\u0000\u0000\u0229\u022b\u0001\u0000\u0000\u0000\u022a\u0200"+ - "\u0001\u0000\u0000\u0000\u022a\u0201\u0001\u0000\u0000\u0000\u022a\u0204"+ - "\u0001\u0000\u0000\u0000\u022a\u0205\u0001\u0000\u0000\u0000\u022a\u0206"+ - "\u0001\u0000\u0000\u0000\u022a\u0207\u0001\u0000\u0000\u0000\u022a\u0208"+ - "\u0001\u0000\u0000\u0000\u022a\u0209\u0001\u0000\u0000\u0000\u022a\u0214"+ - "\u0001\u0000\u0000\u0000\u022a\u021f\u0001\u0000\u0000\u0000\u022bQ\u0001"+ - "\u0000\u0000\u0000\u022c\u022f\u00058\u0000\u0000\u022d\u022f\u0005L\u0000"+ - "\u0000\u022e\u022c\u0001\u0000\u0000\u0000\u022e\u022d\u0001\u0000\u0000"+ - "\u0000\u022fS\u0001\u0000\u0000\u0000\u0230\u0233\u0005K\u0000\u0000\u0231"+ - "\u0233\u0005M\u0000\u0000\u0232\u0230\u0001\u0000\u0000\u0000\u0232\u0231"+ - "\u0001\u0000\u0000\u0000\u0233U\u0001\u0000\u0000\u0000\u0234\u0238\u0003"+ - "L&\u0000\u0235\u0238\u0003R)\u0000\u0236\u0238\u0003T*\u0000\u0237\u0234"+ - "\u0001\u0000\u0000\u0000\u0237\u0235\u0001\u0000\u0000\u0000\u0237\u0236"+ - "\u0001\u0000\u0000\u0000\u0238W\u0001\u0000\u0000\u0000\u0239\u023a\u0005"+ - "\n\u0000\u0000\u023a\u023b\u0003P(\u0000\u023bY\u0001\u0000\u0000\u0000"+ - "\u023c\u023d\u0005\u000f\u0000\u0000\u023d\u0242\u0003\\.\u0000\u023e"+ - "\u023f\u0005)\u0000\u0000\u023f\u0241\u0003\\.\u0000\u0240\u023e\u0001"+ - "\u0000\u0000\u0000\u0241\u0244\u0001\u0000\u0000\u0000\u0242\u0240\u0001"+ - "\u0000\u0000\u0000\u0242\u0243\u0001\u0000\u0000\u0000\u0243[\u0001\u0000"+ - "\u0000\u0000\u0244\u0242\u0001\u0000\u0000\u0000\u0245\u0247\u0003\n\u0005"+ - "\u0000\u0246\u0248\u0007\u0004\u0000\u0000\u0247\u0246\u0001\u0000\u0000"+ - "\u0000\u0247\u0248\u0001\u0000\u0000\u0000\u0248\u024b\u0001\u0000\u0000"+ - "\u0000\u0249\u024a\u00055\u0000\u0000\u024a\u024c\u0007\u0005\u0000\u0000"+ - "\u024b\u0249\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000"+ - "\u024c]\u0001\u0000\u0000\u0000\u024d\u024e\u0005\t\u0000\u0000\u024e"+ - "\u024f\u0003J%\u0000\u024f_\u0001\u0000\u0000\u0000\u0250\u0251\u0005"+ - "\u0003\u0000\u0000\u0251\u0252\u0003J%\u0000\u0252a\u0001\u0000\u0000"+ - "\u0000\u0253\u0254\u0005\f\u0000\u0000\u0254\u0259\u0003d2\u0000\u0255"+ - "\u0256\u0005)\u0000\u0000\u0256\u0258\u0003d2\u0000\u0257\u0255\u0001"+ - "\u0000\u0000\u0000\u0258\u025b\u0001\u0000\u0000\u0000\u0259\u0257\u0001"+ - "\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025ac\u0001\u0000"+ - "\u0000\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025c\u025d\u0003H$\u0000"+ - "\u025d\u025e\u0005a\u0000\u0000\u025e\u025f\u0003H$\u0000\u025f\u0265"+ - "\u0001\u0000\u0000\u0000\u0260\u0261\u0003H$\u0000\u0261\u0262\u0005%"+ - "\u0000\u0000\u0262\u0263\u0003H$\u0000\u0263\u0265\u0001\u0000\u0000\u0000"+ - "\u0264\u025c\u0001\u0000\u0000\u0000\u0264\u0260\u0001\u0000\u0000\u0000"+ - "\u0265e\u0001\u0000\u0000\u0000\u0266\u0267\u0005\u0002\u0000\u0000\u0267"+ - "\u0268\u0003\u0014\n\u0000\u0268\u026a\u0003x<\u0000\u0269\u026b\u0003"+ - "l6\u0000\u026a\u0269\u0001\u0000\u0000\u0000\u026a\u026b\u0001\u0000\u0000"+ - "\u0000\u026bg\u0001\u0000\u0000\u0000\u026c\u026d\u0005\b\u0000\u0000"+ - "\u026d\u026e\u0003\u0014\n\u0000\u026e\u026f\u0003x<\u0000\u026fi\u0001"+ - "\u0000\u0000\u0000\u0270\u0271\u0005\u000b\u0000\u0000\u0271\u0272\u0003"+ - "F#\u0000\u0272k\u0001\u0000\u0000\u0000\u0273\u0278\u0003n7\u0000\u0274"+ - "\u0275\u0005)\u0000\u0000\u0275\u0277\u0003n7\u0000\u0276\u0274\u0001"+ - "\u0000\u0000\u0000\u0277\u027a\u0001\u0000\u0000\u0000\u0278\u0276\u0001"+ - "\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000\u0000\u0279m\u0001\u0000"+ - "\u0000\u0000\u027a\u0278\u0001\u0000\u0000\u0000\u027b\u027c\u0003L&\u0000"+ - "\u027c\u027d\u0005%\u0000\u0000\u027d\u027e\u0003P(\u0000\u027eo\u0001"+ - "\u0000\u0000\u0000\u027f\u0280\u0007\u0006\u0000\u0000\u0280q\u0001\u0000"+ - "\u0000\u0000\u0281\u0284\u0003t:\u0000\u0282\u0284\u0003v;\u0000\u0283"+ - "\u0281\u0001\u0000\u0000\u0000\u0283\u0282\u0001\u0000\u0000\u0000\u0284"+ - "s\u0001\u0000\u0000\u0000\u0285\u0287\u0007\u0000\u0000\u0000\u0286\u0285"+ - "\u0001\u0000\u0000\u0000\u0286\u0287\u0001\u0000\u0000\u0000\u0287\u0288"+ - "\u0001\u0000\u0000\u0000\u0288\u0289\u0005\"\u0000\u0000\u0289u\u0001"+ - "\u0000\u0000\u0000\u028a\u028c\u0007\u0000\u0000\u0000\u028b\u028a\u0001"+ - "\u0000\u0000\u0000\u028b\u028c\u0001\u0000\u0000\u0000\u028c\u028d\u0001"+ - "\u0000\u0000\u0000\u028d\u028e\u0005!\u0000\u0000\u028ew\u0001\u0000\u0000"+ - "\u0000\u028f\u0290\u0005 \u0000\u0000\u0290y\u0001\u0000\u0000\u0000\u0291"+ - "\u0292\u0007\u0007\u0000\u0000\u0292{\u0001\u0000\u0000\u0000\u0293\u0294"+ - "\u0005\u0006\u0000\u0000\u0294\u0295\u0003~?\u0000\u0295}\u0001\u0000"+ - "\u0000\u0000\u0296\u0297\u0005N\u0000\u0000\u0297\u0298\u0003\u0002\u0001"+ - "\u0000\u0298\u0299\u0005O\u0000\u0000\u0299\u007f\u0001\u0000\u0000\u0000"+ - "\u029a\u029b\u0005\u000e\u0000\u0000\u029b\u029c\u0005o\u0000\u0000\u029c"+ - "\u0081\u0001\u0000\u0000\u0000\u029d\u029e\u0005\u0004\u0000\u0000\u029e"+ - "\u02a1\u0005e\u0000\u0000\u029f\u02a0\u00056\u0000\u0000\u02a0\u02a2\u0003"+ - "H$\u0000\u02a1\u029f\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000"+ - "\u0000\u02a2\u02ac\u0001\u0000\u0000\u0000\u02a3\u02a4\u0005<\u0000\u0000"+ - "\u02a4\u02a9\u0003\u0084B\u0000\u02a5\u02a6\u0005)\u0000\u0000\u02a6\u02a8"+ - "\u0003\u0084B\u0000\u02a7\u02a5\u0001\u0000\u0000\u0000\u02a8\u02ab\u0001"+ - "\u0000\u0000\u0000\u02a9\u02a7\u0001\u0000\u0000\u0000\u02a9\u02aa\u0001"+ - "\u0000\u0000\u0000\u02aa\u02ad\u0001\u0000\u0000\u0000\u02ab\u02a9\u0001"+ - "\u0000\u0000\u0000\u02ac\u02a3\u0001\u0000\u0000\u0000\u02ac\u02ad\u0001"+ - "\u0000\u0000\u0000\u02ad\u0083\u0001\u0000\u0000\u0000\u02ae\u02af\u0003"+ - "H$\u0000\u02af\u02b0\u0005%\u0000\u0000\u02b0\u02b2\u0001\u0000\u0000"+ - "\u0000\u02b1\u02ae\u0001\u0000\u0000\u0000\u02b1\u02b2\u0001\u0000\u0000"+ - "\u0000\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3\u02b4\u0003H$\u0000\u02b4"+ - "\u0085\u0001\u0000\u0000\u0000\u02b5\u02b6\u0005\u0013\u0000\u0000\u02b6"+ - "\u02b9\u0003F#\u0000\u02b7\u02b8\u00056\u0000\u0000\u02b8\u02ba\u0003"+ - "F#\u0000\u02b9\u02b7\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000"+ - "\u0000\u02ba\u02c0\u0001\u0000\u0000\u0000\u02bb\u02bc\u0005a\u0000\u0000"+ - "\u02bc\u02bd\u0003F#\u0000\u02bd\u02be\u0005)\u0000\u0000\u02be\u02bf"+ - "\u0003F#\u0000\u02bf\u02c1\u0001\u0000\u0000\u0000\u02c0\u02bb\u0001\u0000"+ - "\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1\u0087\u0001\u0000"+ - "\u0000\u0000\u02c2\u02c3\u0005\u0015\u0000\u0000\u02c3\u02c4\u0003,\u0016"+ - "\u0000\u02c4\u02c5\u00056\u0000\u0000\u02c5\u02c6\u0003J%\u0000\u02c6"+ - "\u0089\u0001\u0000\u0000\u0000\u02c7\u02c8\u0005\u0014\u0000\u0000\u02c8"+ - "\u02cb\u0003B!\u0000\u02c9\u02ca\u0005&\u0000\u0000\u02ca\u02cc\u0003"+ - "\"\u0011\u0000\u02cb\u02c9\u0001\u0000\u0000\u0000\u02cb\u02cc\u0001\u0000"+ - "\u0000\u0000\u02cc\u008b\u0001\u0000\u0000\u0000\u02cd\u02ce\u0007\b\u0000"+ - "\u0000\u02ce\u02cf\u0005}\u0000\u0000\u02cf\u02d0\u0003\u008eG\u0000\u02d0"+ - "\u02d1\u0003\u0090H\u0000\u02d1\u008d\u0001\u0000\u0000\u0000\u02d2\u02d3"+ - "\u0003,\u0016\u0000\u02d3\u008f\u0001\u0000\u0000\u0000\u02d4\u02d5\u0005"+ - "6\u0000\u0000\u02d5\u02da\u0003\u0092I\u0000\u02d6\u02d7\u0005)\u0000"+ - "\u0000\u02d7\u02d9\u0003\u0092I\u0000\u02d8\u02d6\u0001\u0000\u0000\u0000"+ - "\u02d9\u02dc\u0001\u0000\u0000\u0000\u02da\u02d8\u0001\u0000\u0000\u0000"+ - "\u02da\u02db\u0001\u0000\u0000\u0000\u02db\u0091\u0001\u0000\u0000\u0000"+ - "\u02dc\u02da\u0001\u0000\u0000\u0000\u02dd\u02de\u0003\u0010\b\u0000\u02de"+ - "\u0093\u0001\u0000\u0000\u0000\u02df\u02e0\u0005\u0017\u0000\u0000\u02e0"+ - "\u02e1\u0003P(\u0000\u02e1\u02e2\u00056\u0000\u0000\u02e2\u02e5\u0003"+ - "&\u0013\u0000\u02e3\u02e4\u0005<\u0000\u0000\u02e4\u02e6\u0003V+\u0000"+ - "\u02e5\u02e3\u0001\u0000\u0000\u0000\u02e5\u02e6\u0001\u0000\u0000\u0000"+ - "\u02e6\u0095\u0001\u0000\u0000\u0000\u02e7\u02eb\u0005\u0001\u0000\u0000"+ - "\u02e8\u02e9\u0003F#\u0000\u02e9\u02ea\u0005%\u0000\u0000\u02ea\u02ec"+ - "\u0001\u0000\u0000\u0000\u02eb\u02e8\u0001\u0000\u0000\u0000\u02eb\u02ec"+ - "\u0001\u0000\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000\u0000\u02ed\u02ee"+ - "\u0003\u0014\n\u0000\u02ee\u02ef\u0005<\u0000\u0000\u02ef\u02f0\u0003"+ - "V+\u0000\u02f0\u0097\u0001\u0000\u0000\u0000H\u00a3\u00ac\u00c3\u00cf"+ - "\u00d8\u00e0\u00e5\u00ed\u00ef\u00f4\u00fb\u0102\u010b\u0110\u0115\u011f"+ - "\u0125\u012d\u012f\u013a\u0141\u014c\u0151\u0153\u015f\u0172\u0178\u0181"+ - "\u0187\u018f\u0193\u019e\u01aa\u01b2\u01bf\u01c3\u01c7\u01ce\u01d2\u01d9"+ - "\u01df\u01e6\u01ee\u01f6\u01fe\u020f\u021a\u0225\u022a\u022e\u0232\u0237"+ - "\u0242\u0247\u024b\u0259\u0264\u026a\u0278\u0283\u0286\u028b\u02a1\u02a9"+ - "\u02ac\u02b1\u02b9\u02c0\u02cb\u02da\u02e5\u02eb"; + "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 421e643321eea..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} * 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 39f1b6041a516..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} * 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..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 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..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 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..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 @@ -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,17 @@ public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) { ctx.parameter().getText() ); } + + public PlanFactory visitSampleCommand(EsqlBaseParser.SampleCommandContext ctx) { + 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/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..c9c139bf77148 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Sample.java @@ -0,0 +1,88 @@ +/* + * 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.xpack.esql.capabilities.TelemetryAware; +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; + +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; + + public Sample(Source source, Expression probability, LogicalPlan child) { + super(source, child); + this.probability = probability; + } + + private Sample(StreamInput in) throws IOException { + this( + Source.readFrom((PlanStreamInput) in), + in.readNamedWriteable(Expression.class), // probability + in.readNamedWriteable(LogicalPlan.class) // child + ); + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + source().writeTo(out); + out.writeNamedWriteable(probability); + out.writeNamedWriteable(child()); + } + + @Override + public String getWriteableName() { + return ENTRY.name; + } + + @Override + protected NodeInfo info() { + return NodeInfo.create(this, Sample::new, probability, child()); + } + + @Override + public Sample replaceChild(LogicalPlan newChild) { + return new Sample(source(), probability, newChild); + } + + public Expression probability() { + return probability; + } + + @Override + public boolean expressionsResolved() { + return probability.resolved(); + } + + @Override + public int hashCode() { + return Objects.hash(probability, 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(child(), other.child()); + } +} 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..25dbf633713da --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/SampleExec.java @@ -0,0 +1,90 @@ +/* + * 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.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; + +public class SampleExec extends UnaryExec { + public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry( + PhysicalPlan.class, + "SampleExec", + SampleExec::new + ); + + private final Expression probability; + + public SampleExec(Source source, PhysicalPlan child, Expression probability) { + super(source, child); + this.probability = probability; + } + + public SampleExec(StreamInput in) throws IOException { + this( + Source.readFrom((PlanStreamInput) in), + in.readNamedWriteable(PhysicalPlan.class), // child + in.readNamedWriteable(Expression.class) // probability + ); + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + source().writeTo(out); + out.writeNamedWriteable(child()); + out.writeNamedWriteable(probability); + } + + @Override + public UnaryExec replaceChild(PhysicalPlan newChild) { + return new SampleExec(source(), newChild, probability); + } + + @Override + protected NodeInfo info() { + return NodeInfo.create(this, SampleExec::new, child(), probability); + } + + /** + * Returns the name of the writeable object + */ + @Override + public String getWriteableName() { + return ENTRY.name; + } + + public Expression probability() { + return probability; + } + + @Override + public int hashCode() { + return Objects.hash(child(), probability); + } + + @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); + } +} 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..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 @@ -34,6 +34,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 +63,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 +104,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 +249,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 +806,12 @@ 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()); + return source.with(new SampleOperator.Factory(probability), 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..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 @@ -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()); + } + // // 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..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 @@ -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()); + } + // // 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 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/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/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java index f819b506cace6..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 @@ -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,149 @@ 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_V3.isEnabled()); + + var query = """ + FROM TEST + | SAMPLE .3 + | EVAL irrelevant1 = 1 + | SAMPLE .5 + | 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)); + } + + public void testSamplePushDown() { + assumeTrue("sample must be enabled", EsqlCapabilities.Cap.SAMPLE_V3.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)); + } + } + + public void testSamplePushDown_sort() { + 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); + + 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)); + } + + public void testSamplePushDown_where() { + 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); + + 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)); + } + + public void testSampleNoPushDown() { + 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"; + 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_V3.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_V3.isEnabled()); + + var query = """ + FROM TEST + | CHANGE_POINT emp_no ON hire_date + | SAMPLE .5 + """; + 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..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 @@ -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() { @@ -8021,6 +8023,39 @@ public void testNotEqualsPushdownToDelegate() { ); } + /* + * 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_V3.isEnabled()); + + var plan = physicalPlan(""" + FROM test + | SAMPLE +0.1 + """); + 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.hash(), equalTo(0)); + } + @SuppressWarnings("SameParameterValue") private static void assertFilterCondition( Filter filter, @@ -8204,7 +8239,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..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 { @@ -3453,6 +3454,21 @@ public void testInvalidCompletion() { expectError("FROM foo* | COMPLETION completion=prompt", "line 1:41: mismatched input '' expecting {"); } + 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: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) { 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..f5303a12dde72 --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/SampleSerializationTests.java @@ -0,0 +1,52 @@ +/* + * 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(), 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 child = instance.child(); + int updateSelector = randomIntBetween(0, 1); + switch (updateSelector) { + case 0 -> probability = randomValueOtherThan(probability, SampleSerializationTests::randomProbability); + case 1 -> child = randomValueOtherThan(child, () -> randomChild(0)); + default -> throw new IllegalArgumentException("Invalid selector: " + updateSelector); + } + 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 new file mode 100644 index 0000000000000..385e2e37aa140 --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/SampleExecSerializationTests.java @@ -0,0 +1,45 @@ +/* + * 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; + +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()); + } + + /** + * 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 child = instance.child(); + int updateSelector = randomIntBetween(0, 1); + switch (updateSelector) { + case 0 -> probability = randomValueOtherThan(probability, SampleSerializationTests::randomProbability); + case 1 -> child = randomValueOtherThan(child, () -> randomChild(0)); + default -> throw new IllegalArgumentException("Invalid selector: " + updateSelector); + } + return new SampleExec(instance.source(), child, probability); + } +} 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"} 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..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 @@ -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} @@ -121,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} @@ -141,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}