diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/LinearScoreEvalOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/LinearScoreEvalOperator.java new file mode 100644 index 0000000000000..53439af391224 --- /dev/null +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/LinearScoreEvalOperator.java @@ -0,0 +1,228 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ + +package org.elasticsearch.compute.operator; + +import org.apache.lucene.util.BytesRef; +import org.elasticsearch.compute.data.Block; +import org.elasticsearch.compute.data.BytesRefBlock; +import org.elasticsearch.compute.data.DoubleVector; +import org.elasticsearch.compute.data.DoubleVectorBlock; +import org.elasticsearch.compute.data.Page; + +import java.util.ArrayDeque; +import java.util.Collection; +import java.util.Deque; +import java.util.HashMap; +import java.util.Locale; +import java.util.Map; + +public class LinearScoreEvalOperator implements Operator { + public record Factory(int scorePosition, int discriminatorPosition, Map weights, String normalizer) + implements + OperatorFactory { + + @Override + public Operator get(DriverContext driverContext) { + return new LinearScoreEvalOperator(scorePosition, discriminatorPosition, weights, normalizer); + } + + @Override + public String describe() { + return "LinearScoreEvalOperator"; + } + } + + private final int scorePosition; + private final int discriminatorPosition; + private final Map weights; + private final Normalizer normalizer; + + private final Deque inputPages; + private final Deque outputPages; + private boolean finished; + + public LinearScoreEvalOperator(int scorePosition, int discriminatorPosition, Map weights, String normalizerType) { + this.scorePosition = scorePosition; + this.discriminatorPosition = discriminatorPosition; + this.weights = weights; + this.normalizer = createNormalizer(normalizerType); + + finished = false; + inputPages = new ArrayDeque<>(); + outputPages = new ArrayDeque<>(); + } + + @Override + public boolean needsInput() { + return finished == false; + } + + @Override + public void addInput(Page page) { + inputPages.add(page); + } + + @Override + public void finish() { + if (finished == false) { + finished = true; + createOutputPages(); + } + } + + private void createOutputPages() { + normalizer.preprocess(inputPages, scorePosition, discriminatorPosition); + + while (inputPages.isEmpty() == false) { + Page inputPage = inputPages.peek(); + + BytesRefBlock discriminatorBlock = inputPage.getBlock(discriminatorPosition); + DoubleVectorBlock initialScoreBlock = inputPage.getBlock(scorePosition); + + DoubleVector.Builder scores = discriminatorBlock.blockFactory().newDoubleVectorBuilder(discriminatorBlock.getPositionCount()); + + for (int i = 0; i < inputPage.getPositionCount(); i++) { + String discriminator = discriminatorBlock.getBytesRef(i, new BytesRef()).utf8ToString(); + + var weight = weights.get(discriminator) == null ? 1.0 : weights.get(discriminator); + + Double score = initialScoreBlock.getDouble(i); + scores.appendDouble(weight * normalizer.normalize(score, discriminator)); + } + Block scoreBlock = scores.build().asBlock(); + inputPage = inputPage.appendBlock(scoreBlock); + + int[] projections = new int[inputPage.getBlockCount() - 1]; + + for (int i = 0; i < inputPage.getBlockCount() - 1; i++) { + projections[i] = i == scorePosition ? inputPage.getBlockCount() - 1 : i; + } + inputPages.removeFirst(); + outputPages.add(inputPage.projectBlocks(projections)); + inputPage.releaseBlocks(); + } + } + + @Override + public boolean isFinished() { + return finished && outputPages.isEmpty(); + } + + @Override + public Page getOutput() { + if (finished == false || outputPages.isEmpty()) { + return null; + } + return outputPages.removeFirst(); + } + + @Override + public void close() { + for (Page page : inputPages) { + page.releaseBlocks(); + } + for (Page page : outputPages) { + page.releaseBlocks(); + } + } + + @Override + public String toString() { + return "LinearScoreEvalOperator[" + scorePosition + ", " + discriminatorPosition + "]"; + } + + private Normalizer createNormalizer(String normalizer) { + return switch (normalizer.toLowerCase(Locale.ROOT)) { + case "minmax" -> new MinMaxNormalizer(); + case "l2_norm" -> new L2NormNormalizer(); + case "none" -> new NoneNormalizer(); + case null -> new NoneNormalizer(); + default -> throw new IllegalArgumentException("Unknown normalizer: " + normalizer); + }; + } + + private abstract class Normalizer { + public abstract double normalize(double score, String discriminator); + + public abstract void preprocess(Collection inputPages, int scorePosition, int discriminatorPosition); + } + + private class NoneNormalizer extends Normalizer { + @Override + public double normalize(double score, String discriminator) { + return score; + } + + @Override + public void preprocess(Collection inputPages, int scorePosition, int discriminatorPosition) {} + } + + private class L2NormNormalizer extends Normalizer { + private Map l2Norms = new HashMap<>(); + + @Override + public double normalize(double score, String discriminator) { + var l2Norm = l2Norms.get(discriminator); + assert l2Norm != null; + return l2Norms.get(discriminator) == 0.0 ? 0.0 : score / l2Norm; + } + + @Override + public void preprocess(Collection inputPages, int scorePosition, int discriminatorPosition) { + for (Page inputPage : inputPages) { + DoubleVectorBlock scoreBlock = inputPage.getBlock(scorePosition); + BytesRefBlock discriminatorBlock = inputPage.getBlock(discriminatorPosition); + + for (int i = 0; i < inputPage.getPositionCount(); i++) { + double score = scoreBlock.getDouble(i); + String discriminator = discriminatorBlock.getBytesRef(i, new BytesRef()).utf8ToString(); + + l2Norms.compute(discriminator, (k, v) -> v == null ? score * score : v + score * score); + } + } + + l2Norms.replaceAll((k, v) -> Math.sqrt(v)); + } + } + + private class MinMaxNormalizer extends Normalizer { + private Map minScores = new HashMap<>(); + private Map maxScores = new HashMap<>(); + + @Override + public double normalize(double score, String discriminator) { + var min = minScores.get(discriminator); + var max = maxScores.get(discriminator); + + assert min != null; + assert max != null; + + if (min.equals(max)) { + return 0.0; + } + + return (score - min) / (max - min); + } + + @Override + public void preprocess(Collection inputPages, int scorePosition, int discriminatorPosition) { + for (Page inputPage : inputPages) { + DoubleVectorBlock scoreBlock = inputPage.getBlock(scorePosition); + BytesRefBlock discriminatorBlock = inputPage.getBlock(discriminatorPosition); + + for (int i = 0; i < inputPage.getPositionCount(); i++) { + double score = scoreBlock.getDouble(i); + String discriminator = discriminatorBlock.getBytesRef(i, new BytesRef()).utf8ToString(); + + minScores.compute(discriminator, (key, value) -> value == null ? score : Math.min(value, score)); + maxScores.compute(discriminator, (key, value) -> value == null ? score : Math.max(value, score)); + } + } + } + } +} diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/RrfScoreEvalOperator.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/RrfScoreEvalOperator.java index 9dc24e9e0f98d..b4dacad033010 100644 --- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/RrfScoreEvalOperator.java +++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/RrfScoreEvalOperator.java @@ -14,6 +14,7 @@ import org.elasticsearch.compute.data.Page; import java.util.HashMap; +import java.util.Map; /** * Updates the score column with new scores using the RRF formula. @@ -23,10 +24,19 @@ */ public class RrfScoreEvalOperator extends AbstractPageMappingOperator { - public record Factory(int forkPosition, int scorePosition) implements OperatorFactory { + private final double rankConstant; + private final Map weights; + private final int scorePosition; + private final int forkPosition; + + private HashMap counters = new HashMap<>(); + + public record Factory(int forkPosition, int scorePosition, double rankConstant, Map weights) + implements + OperatorFactory { @Override public Operator get(DriverContext driverContext) { - return new RrfScoreEvalOperator(forkPosition, scorePosition); + return new RrfScoreEvalOperator(forkPosition, scorePosition, rankConstant, weights); } @Override @@ -36,14 +46,11 @@ public String describe() { } - private final int scorePosition; - private final int forkPosition; - - private HashMap counters = new HashMap<>(); - - public RrfScoreEvalOperator(int forkPosition, int scorePosition) { + public RrfScoreEvalOperator(int forkPosition, int scorePosition, double rankConstant, Map weights) { this.scorePosition = scorePosition; this.forkPosition = forkPosition; + this.rankConstant = rankConstant; + this.weights = weights; } @Override @@ -57,7 +64,10 @@ protected Page process(Page page) { int rank = counters.getOrDefault(fork, 1); counters.put(fork, rank + 1); - scores.appendDouble(1.0 / (60 + rank)); + + var weight = weights.get(fork) == null ? 1.0 : weights.get(fork); + + scores.appendDouble(1.0 / (rankConstant + rank) * weight); } Block scoreBlock = scores.build().asBlock(); diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fuse.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fuse.csv-spec index a3aa9af5fa9ab..924480e20c9e5 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fuse.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/fuse.csv-spec @@ -4,7 +4,7 @@ simpleFuse required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: match_operator_colon FROM employees METADATA _id, _index, _score @@ -23,7 +23,7 @@ _score:double | _fork:keyword | emp_no:integer fuseWithMatchAndScore required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: match_operator_colon FROM books METADATA _id, _index, _score @@ -46,7 +46,7 @@ _score:double | _fork:keyword | _id:keyword fuseWithDisjunctionAndPostFilter required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: match_operator_colon FROM books METADATA _id, _index, _score @@ -69,7 +69,7 @@ _score:double | _fork:keyword | _id:keyword fuseWithStats required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: match_operator_colon FROM books METADATA _id, _index, _score @@ -89,7 +89,7 @@ count_fork:long | _fork:keyword fuseWithMultipleForkBranches required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: match_operator_colon FROM books METADATA _id, _index, _score @@ -116,7 +116,7 @@ _score:double | author:keyword | title:keyword | _fork fuseWithSemanticSearch required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: semantic_text_field_caps required_capability: metadata_score @@ -134,3 +134,458 @@ _fork:keyword | _score:double | _id:keyword | semantic_text_field:keyword [fork1, fork2] | 0.0328 | 2 | all we have to decide is what to do with the time that is given to us [fork1, fork2] | 0.0323 | 3 | be excellent to each other ; + +fuseWithSimpleRrf +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE rrf +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +0.03279 | [fork1, fork2] | 4 +0.01613 | fork1 | 56 +0.01613 | fork2 | 60 +0.01587 | fork2 | 1 +0.01587 | fork1 | 26 +; + +fuseWithRrfAndRankConstant +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE rrf WITH {"rank_constant": 50 } +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +0.03922 | [fork1, fork2] | 4 +0.01923 | fork1 | 56 +0.01923 | fork2 | 60 +0.01887 | fork2 | 1 +0.01887 | fork1 | 26 +; + +fuseWithRrfAndWeights +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE rrf WITH {"weights": { "fork1": 0.3, "fork2": 0.7 } } +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +0.01639 | [fork1, fork2] | 4 +0.01129 | fork2 | 60 +0.01111 | fork2 | 1 +0.00484 | fork1 | 56 +0.00476 | fork1 | 26 +; + +fuseWithRrfRankConstantAndWeights +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 + | EVAL new_id = CONCAT(_id, _id), new_score = _score + 1, new_fork = "A") + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 + | EVAL new_id = CONCAT(_id, _id), new_score = _score + 1, new_fork = "B") +| DROP _id, _score +| FUSE rrf KEY new_fork GROUP new_id SCORE new_score WITH {"rank_constant": 60, "weights": { "fork1": 0.3, "fork2": 0.7 } } +| SORT new_score DESC, new_id +| EVAL new_fork = mv_sort(new_fork) +| EVAL new_score = round(new_score, 5) +| KEEP new_score, new_fork, new_id +; + +new_score:double | new_fork:keyword | new_id:keyword +0.03279 | [A, B] | 44 +0.01613 | A | 5656 +0.01613 | B | 6060 +0.01587 | B | 11 +0.01587 | A | 2626 +; + +fuseWithRrfAndScoreColumn +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL my_score = _score | DROP _score) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL my_score = _score | DROP _score) +| FUSE rrf SCORE my_score +| SORT my_score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL my_score = round(my_score, 5) +| KEEP my_score, _fork, _id +; + +my_score:double | _fork:keyword | _id:keyword +0.03279 | [fork1, fork2] | 4 +0.01613 | fork1 | 56 +0.01613 | fork2 | 60 +0.01587 | fork2 | 1 +0.01587 | fork1 | 26 +; + +fuseWithRrfAndDiscriminatorColumn +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3) +| EVAL new_fork = _fork +| DROP _fork +| FUSE rrf KEY new_fork +| SORT _score DESC, _id, _index +| EVAL new_fork = mv_sort(new_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, new_fork, _id +; + +_score:double | new_fork:keyword | _id:keyword +0.03279 | [fork1, fork2] | 4 +0.01613 | fork1 | 56 +0.01613 | fork2 | 60 +0.01587 | fork2 | 1 +0.01587 | fork1 | 26 +; + +fuseWithRrfAndGroups +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL new_id = CONCAT(_id, _id) | DROP _id) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL new_id = CONCAT(_id, _id) | DROP _id) +| EVAL new_index = "lalala" +| FUSE rrf GROUP new_id, new_index +| SORT _score DESC, new_id, new_index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, new_id +; + +_score:double | _fork:keyword | new_id:keyword +0.03279 | [fork1, fork2] | 44 +0.01613 | fork1 | 5656 +0.01613 | fork2 | 6060 +0.01587 | fork2 | 11 +0.01587 | fork1 | 2626 +; + +fuseWithRrfAllOptionsScoreGroupAndDiscriminatorColumn +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 + | EVAL new_id = CONCAT(_id, _id) | DROP _id) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL new_id = CONCAT(_id, _id) | DROP _id) +| EVAL new_fork = CASE (_fork == "fork1", "A", "B") +| EVAL new_score = _score * 2 +| DROP _fork, _score +| FUSE rrf KEY new_fork GROUP new_id SCORE new_score WITH {"rank_constant": 60, "weights": { "fork1": 0.3, "fork2": 0.7 } } +| SORT new_score DESC, new_id +| EVAL new_fork = mv_sort(new_fork) +| EVAL new_score = round(new_score, 5) +| KEEP new_score, new_fork, new_id +; + +new_score:double | new_fork:keyword | new_id:keyword +0.03279 | [A, B] | 44 +0.01613 | A | 5656 +0.01613 | B | 6060 +0.01587 | B | 11 +0.01587 | A | 2626 +; + +fuseWithSimpleLinear +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE linear +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +2.44669 | [fork1, fork2] | 4 +2.2543 | fork1 | 26 +2.10316 | fork1 | 56 +0.97056 | fork2 | 1 +0.88365 | fork2 | 60 +; + +fuseWithLinearAndL2Norm + +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE linear WITH {"normalizer": "l2_norm"} +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +0.93394 | [fork1, fork2] | 4 +0.67019 | fork2 | 1 +0.62834 | fork1 | 26 +0.61018 | fork2 | 60 +0.58621 | fork1 | 56 +; + +fuseWithLinearAndMinMax + +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE linear WITH {"normalizer": "minmax"} +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +1.0 | fork2 | 1 +1.0 | fork1 | 26 +0.7577 | fork2 | 60 +0.63972 | fork1 | 56 +0.0 | [fork1, fork2] | 4 +; + +fuseWithLinearAndWeights +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE linear WITH {"weights": { "fork1": 0.3, "fork2": 0.7 }} +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +0.97876 | [fork1, fork2] | 4 +0.67939 | fork2 | 1 +0.67629 | fork1 | 26 +0.63095 | fork1 | 56 +0.61856 | fork2 | 60 +; + + +fuseWithLinearAndPartialWeights +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE linear WITH {"weights": { "fork1": 0.3, "inexistent": 0.7 }} +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +1.16233 | [fork1, fork2] | 4 +0.97056 | fork2 | 1 +0.88365 | fork2 | 60 +0.67629 | fork1 | 26 +0.63095 | fork1 | 56 +; + + +fuseWithLinearWeightsAndMinMax +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| FUSE linear WITH {"normalizer": "minmax", "weights": { "fork1": 0.3, "fork2": 0.7 }} +| SORT _score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, _id +; + +_score:double | _fork:keyword | _id:keyword +0.7 | fork2 | 1 +0.53039 | fork2 | 60 +0.3 | fork1 | 26 +0.19191 | fork1 | 56 +0.0 | [fork1, fork2] | 4 +; + +fuseWithLinearAndScoreColumn +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL my_score = _score | DROP _score) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL my_score = _score | DROP _score) +| FUSE linear SCORE my_score +| SORT my_score DESC, _id, _index +| EVAL _fork = mv_sort(_fork) +| EVAL my_score = round(my_score, 5) +| KEEP my_score, _fork, _id +; + +my_score:double | _fork:keyword | _id:keyword +2.44669 | [fork1, fork2] | 4 +2.2543 | fork1 | 26 +2.10316 | fork1 | 56 +0.97056 | fork2 | 1 +0.88365 | fork2 | 60 +; + + +fuseWithLinearAndDiscriminatorColumn +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3) +| EVAL new_fork = _fork +| DROP _fork +| FUSE linear KEY new_fork +| SORT _score DESC, _id, _index +| EVAL new_fork = mv_sort(new_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, new_fork, _id +; + +_score:double | new_fork:keyword | _id:keyword +2.44669 | [fork1, fork2] | 4 +2.2543 | fork1 | 26 +2.10316 | fork1 | 56 +0.97056 | fork2 | 1 +0.88365 | fork2 | 60 +; + +fuseWithLinearAndGroups +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL new_id = CONCAT(_id, _id) | DROP _id) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL new_id = CONCAT(_id, _id) | DROP _id) +| EVAL new_index = "lalala" +| FUSE LINEAR GROUP new_id, new_index +| SORT _score DESC, new_id, new_index +| EVAL _fork = mv_sort(_fork) +| EVAL _score = round(_score, 5) +| KEEP _score, _fork, new_id +; + +_score:double | _fork:keyword | new_id:keyword +2.44669 | [fork1, fork2] | 44 +2.2543 | fork1 | 2626 +2.10316 | fork1 | 5656 +0.97056 | fork2 | 11 +0.88365 | fork2 | 6060 +; + + +fuseWithLinearAllOptionsScoreGroupAndDiscriminatorColumn +required_capability: fork_v9 +required_capability: fuse_v2 +required_capability: semantic_text_field_caps +required_capability: metadata_score + +FROM books METADATA _id, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 + | EVAL new_id = CONCAT(_id, _id) | DROP _id) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 | EVAL new_id = CONCAT(_id, _id) | DROP _id) +| EVAL new_fork = CASE (_fork == "fork1", "A", "B") +| EVAL new_score = _score * 2 +| DROP _fork, _score +| FUSE LINEAR KEY new_fork GROUP new_id SCORE new_score WITH {"normalizer": "minmax", "weights": { "fork1": 0.3, "fork2": 0.7 }} +| SORT new_score DESC, new_id +| EVAL new_fork = mv_sort(new_fork) +| EVAL new_score = round(new_score, 5) +| KEEP new_score, new_fork, new_id +; + +new_score:double | new_fork:keyword | new_id:keyword +1.0 | B | 11 +1.0 | A | 2626 +0.7577 | B | 6060 +0.63972 | A | 5656 +0.0 | [A, B] | 44 +; diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index 8e5c013346bbd..b3122c3be030c 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -204,7 +204,7 @@ book_no:keyword | title:text | author reranker after FUSE required_capability: fork_v9 -required_capability: fuse +required_capability: fuse_v2 required_capability: match_operator_colon required_capability: rerank diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseIT.java index cb2ce93f7afeb..c28bff65af409 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseIT.java @@ -28,18 +28,18 @@ protected Collection> nodePlugins() { @Before public void setupIndex() { - assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); createAndPopulateIndex(); } - public void testFuseWithRrf() throws Exception { + public void testFuseRrf() { var query = """ FROM test METADATA _score, _id, _index | WHERE id > 2 | FORK ( WHERE content:"fox" | SORT _score, _id DESC ) ( WHERE content:"dog" | SORT _score, _id DESC ) - | FUSE + | FUSE RRF WITH {"weights": { "fork1": 0.4, "fork2": 0.6}} | SORT _score DESC, _id, _index | EVAL _fork = mv_sort(_fork) | EVAL _score = round(_score, 4) @@ -50,9 +50,35 @@ public void testFuseWithRrf() throws Exception { assertColumnTypes(resp.columns(), List.of("integer", "keyword", "double", "keyword")); assertThat(getValuesList(resp.values()).size(), equalTo(3)); Iterable> expectedValues = List.of( - List.of(6, "The quick brown fox jumps over the lazy dog", 0.0325, List.of("fork1", "fork2")), - List.of(4, "The dog is brown but this document is very very long", 0.0164, "fork2"), - List.of(3, "This dog is really brown", 0.0159, "fork2") + List.of(6, "The quick brown fox jumps over the lazy dog", 0.0162, List.of("fork1", "fork2")), + List.of(4, "The dog is brown but this document is very very long", 0.0098, "fork2"), + List.of(3, "This dog is really brown", 0.0095, "fork2") + ); + assertValues(resp.values(), expectedValues); + } + } + + public void testFuseLinear() { + var query = """ + FROM test METADATA _score, _id, _index + | WHERE id > 2 + | FORK + ( WHERE content:"fox" | SORT _score, _id DESC ) + ( WHERE content:"dog" | SORT _score, _id DESC ) + | FUSE LINEAR WITH {"weights": { "fork1": 0.4, "fork2": 0.6}, "normalizer": "l2_norm"} + | SORT _score DESC + | EVAL _fork = mv_sort(_fork) + | EVAL _score = round(_score, 4) + | KEEP id, content, _score, _fork + """; + try (var resp = run(query)) { + assertColumnNames(resp.columns(), List.of("id", "content", "_score", "_fork")); + assertColumnTypes(resp.columns(), List.of("integer", "keyword", "double", "keyword")); + assertThat(getValuesList(resp.values()).size(), equalTo(3)); + Iterable> expectedValues = List.of( + List.of(6, "The quick brown fox jumps over the lazy dog", 0.7241, List.of("fork1", "fork2")), + List.of(3, "This dog is really brown", 0.4112, "fork2"), + List.of(4, "The dog is brown but this document is very very long", 0.293, "fork2") ); assertValues(resp.values(), expectedValues); } diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseWithInvalidLicenseIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseWithInvalidLicenseIT.java index e0d35658391d4..e2371be93807d 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseWithInvalidLicenseIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/FuseWithInvalidLicenseIT.java @@ -31,7 +31,7 @@ protected Collection> nodePlugins() { @Before public void setupIndex() { - assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); var indexName = "test"; var client = client().admin().indices(); var CreateRequest = client.prepareCreate(indexName) diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens index 5de086cef5377..187b621778c21 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens @@ -111,32 +111,40 @@ FROM_WS=110 FORK_WS=111 FORK_LINE_COMMENT=112 FORK_MULTILINE_COMMENT=113 -JOIN=114 -USING=115 -JOIN_LINE_COMMENT=116 -JOIN_MULTILINE_COMMENT=117 -JOIN_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 -MVEXPAND_LINE_COMMENT=125 -MVEXPAND_MULTILINE_COMMENT=126 -MVEXPAND_WS=127 -ID_PATTERN=128 -PROJECT_LINE_COMMENT=129 -PROJECT_MULTILINE_COMMENT=130 -PROJECT_WS=131 -AS=132 -RENAME_LINE_COMMENT=133 -RENAME_MULTILINE_COMMENT=134 -RENAME_WS=135 -INFO=136 -SHOW_LINE_COMMENT=137 -SHOW_MULTILINE_COMMENT=138 -SHOW_WS=139 +GROUP=114 +SCORE=115 +KEY=116 +RRF=117 +LINEAR=118 +FUSE_LINE_COMMENT=119 +FUSE_MULTILINE_COMMENT=120 +FUSE_WS=121 +JOIN=122 +USING=123 +JOIN_LINE_COMMENT=124 +JOIN_MULTILINE_COMMENT=125 +JOIN_WS=126 +LOOKUP_LINE_COMMENT=127 +LOOKUP_MULTILINE_COMMENT=128 +LOOKUP_WS=129 +LOOKUP_FIELD_LINE_COMMENT=130 +LOOKUP_FIELD_MULTILINE_COMMENT=131 +LOOKUP_FIELD_WS=132 +MVEXPAND_LINE_COMMENT=133 +MVEXPAND_MULTILINE_COMMENT=134 +MVEXPAND_WS=135 +ID_PATTERN=136 +PROJECT_LINE_COMMENT=137 +PROJECT_MULTILINE_COMMENT=138 +PROJECT_WS=139 +AS=140 +RENAME_LINE_COMMENT=141 +RENAME_MULTILINE_COMMENT=142 +RENAME_WS=143 +INFO=144 +SHOW_LINE_COMMENT=145 +SHOW_MULTILINE_COMMENT=146 +SHOW_WS=147 'change_point'=4 'enrich'=5 'completion'=7 @@ -201,7 +209,12 @@ SHOW_WS=139 ']'=98 ')'=100 'metadata'=106 -'join'=114 -'USING'=115 -'as'=132 -'info'=136 +'group'=114 +'score'=115 +'key'=116 +'rrf'=117 +'linear'=118 +'join'=122 +'USING'=123 +'as'=140 +'info'=144 diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index ad0e849e1997a..57f1c3cc10ba5 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -321,5 +321,10 @@ insistCommand ; fuseCommand - : DEV_FUSE + : DEV_FUSE (fuseType=fuseMethod)? (KEY key=qualifiedName)? (GROUP group=fields)? (SCORE score=qualifiedName)? fuseOptions=commandNamedParameters + ; + +fuseMethod + : RRF + | LINEAR ; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens index 5de086cef5377..187b621778c21 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens @@ -111,32 +111,40 @@ FROM_WS=110 FORK_WS=111 FORK_LINE_COMMENT=112 FORK_MULTILINE_COMMENT=113 -JOIN=114 -USING=115 -JOIN_LINE_COMMENT=116 -JOIN_MULTILINE_COMMENT=117 -JOIN_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 -MVEXPAND_LINE_COMMENT=125 -MVEXPAND_MULTILINE_COMMENT=126 -MVEXPAND_WS=127 -ID_PATTERN=128 -PROJECT_LINE_COMMENT=129 -PROJECT_MULTILINE_COMMENT=130 -PROJECT_WS=131 -AS=132 -RENAME_LINE_COMMENT=133 -RENAME_MULTILINE_COMMENT=134 -RENAME_WS=135 -INFO=136 -SHOW_LINE_COMMENT=137 -SHOW_MULTILINE_COMMENT=138 -SHOW_WS=139 +GROUP=114 +SCORE=115 +KEY=116 +RRF=117 +LINEAR=118 +FUSE_LINE_COMMENT=119 +FUSE_MULTILINE_COMMENT=120 +FUSE_WS=121 +JOIN=122 +USING=123 +JOIN_LINE_COMMENT=124 +JOIN_MULTILINE_COMMENT=125 +JOIN_WS=126 +LOOKUP_LINE_COMMENT=127 +LOOKUP_MULTILINE_COMMENT=128 +LOOKUP_WS=129 +LOOKUP_FIELD_LINE_COMMENT=130 +LOOKUP_FIELD_MULTILINE_COMMENT=131 +LOOKUP_FIELD_WS=132 +MVEXPAND_LINE_COMMENT=133 +MVEXPAND_MULTILINE_COMMENT=134 +MVEXPAND_WS=135 +ID_PATTERN=136 +PROJECT_LINE_COMMENT=137 +PROJECT_MULTILINE_COMMENT=138 +PROJECT_WS=139 +AS=140 +RENAME_LINE_COMMENT=141 +RENAME_MULTILINE_COMMENT=142 +RENAME_WS=143 +INFO=144 +SHOW_LINE_COMMENT=145 +SHOW_MULTILINE_COMMENT=146 +SHOW_WS=147 'change_point'=4 'enrich'=5 'completion'=7 @@ -201,7 +209,12 @@ SHOW_WS=139 ']'=98 ')'=100 'metadata'=106 -'join'=114 -'USING'=115 -'as'=132 -'info'=136 +'group'=114 +'score'=115 +'key'=116 +'rrf'=117 +'linear'=118 +'join'=122 +'USING'=123 +'as'=140 +'info'=144 diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Fuse.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Fuse.g4 index c681ae1d5573f..8c5eb647acaf0 100644 --- a/x-pack/plugin/esql/src/main/antlr/lexer/Fuse.g4 +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Fuse.g4 @@ -7,4 +7,23 @@ lexer grammar Fuse; -DEV_FUSE : {this.isDevVersion()}? 'fuse' -> pushMode(EXPRESSION_MODE); +DEV_FUSE : {this.isDevVersion()}? 'fuse' -> pushMode(FUSE_MODE); + +mode FUSE_MODE; +FUSE_PIPE : PIPE -> type(PIPE), popMode; +// explicit popMode of RP to allow FUSE in FORK branches +FUSE_RP : RP -> type(RP), popMode, popMode; + +GROUP: 'group'; +SCORE: 'score'; +KEY : 'key'; +RRF : 'rrf'; +LINEAR: 'linear'; + +FUSE_WITH: WITH -> type(WITH), popMode, pushMode(EXPRESSION_MODE); +FUSE_COMMA: COMMA -> type(COMMA); +FUSE_QUOTED_IDENTIFIER: QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER); +FUSE_UNQUOTED_IDENTIFIER: UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER); +FUSE_LINE_COMMENT: LINE_COMMENT -> channel(HIDDEN); +FUSE_MULTILINE_COMMENT: MULTILINE_COMMENT -> channel(HIDDEN); +FUSE_WS: WS -> channel(HIDDEN); diff --git a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 index 9aa8922572cb5..135a104b89139 100644 --- a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 +++ b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 @@ -63,7 +63,12 @@ mapExpression ; entryExpression - : key=string COLON value=constant + : key=string COLON value=mapValue + ; + +mapValue + : constant + | mapExpression ; constant diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java index 6d88b479b59f4..412c26ea86833 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 @@ -1300,12 +1300,6 @@ public enum Cap { * Support for the RLIKE operator with a list of regexes. */ RLIKE_WITH_LIST_OF_PATTERNS, - - /** - * FUSE command - */ - FUSE(Build.current().isSnapshot()), - /** * Support improved behavior for LIKE operator when used with index fields. */ @@ -1351,6 +1345,11 @@ public enum Cap { */ CATEGORIZE_OPTIONS, + /** + * FUSE command + */ + FUSE_V2(Build.current().isSnapshot()), + /** * FIRST and LAST aggregate functions. */ diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index b23f8e60fd88d..223e5f6175d1d 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -65,6 +65,8 @@ import org.elasticsearch.xpack.esql.expression.function.aggregate.MinOverTime; import org.elasticsearch.xpack.esql.expression.function.aggregate.Sum; import org.elasticsearch.xpack.esql.expression.function.aggregate.SumOverTime; +import org.elasticsearch.xpack.esql.expression.function.aggregate.SummationMode; +import org.elasticsearch.xpack.esql.expression.function.aggregate.Values; import org.elasticsearch.xpack.esql.expression.function.grouping.GroupingFunction; import org.elasticsearch.xpack.esql.expression.function.scalar.EsqlScalarFunction; import org.elasticsearch.xpack.esql.expression.function.scalar.conditional.Case; @@ -93,7 +95,6 @@ import org.elasticsearch.xpack.esql.parser.ParsingException; import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; -import org.elasticsearch.xpack.esql.plan.logical.Dedup; import org.elasticsearch.xpack.esql.plan.logical.Drop; import org.elasticsearch.xpack.esql.plan.logical.Enrich; import org.elasticsearch.xpack.esql.plan.logical.EsRelation; @@ -107,8 +108,10 @@ import org.elasticsearch.xpack.esql.plan.logical.MvExpand; import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.Rename; -import org.elasticsearch.xpack.esql.plan.logical.RrfScoreEval; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseConfig; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; @@ -526,12 +529,8 @@ protected LogicalPlan rule(LogicalPlan plan, AnalyzerContext context) { return resolveInsist(i, childrenOutput, context.indexResolution()); } - if (plan instanceof Dedup dedup) { - return resolveDedup(dedup, childrenOutput); - } - - if (plan instanceof RrfScoreEval rrf) { - return resolveRrfScoreEval(rrf, childrenOutput); + if (plan instanceof Fuse fuse) { + return resolveFuse(fuse, childrenOutput); } if (plan instanceof Rerank r) { @@ -916,52 +915,50 @@ private static FieldAttribute insistKeyword(Attribute attribute) { return new FieldAttribute(attribute.source(), attribute.name(), new PotentiallyUnmappedKeywordEsField(attribute.name())); } - private LogicalPlan resolveDedup(Dedup dedup, List childrenOutput) { - List aggregates = dedup.finalAggs(); - List groupings = dedup.groupings(); - List newAggs = new ArrayList<>(); - List newGroupings = new ArrayList<>(); - - for (NamedExpression agg : aggregates) { - var newAgg = (NamedExpression) agg.transformUp(UnresolvedAttribute.class, ua -> { - Expression ne = ua; - Attribute maybeResolved = maybeResolveAttribute(ua, childrenOutput); - if (maybeResolved != null) { - ne = maybeResolved; - } - return ne; - }); - newAggs.add(newAgg); + private LogicalPlan resolveFuse(Fuse fuse, List childrenOutput) { + Source source = fuse.source(); + Attribute score = fuse.score(); + if (score instanceof UnresolvedAttribute) { + score = maybeResolveAttribute((UnresolvedAttribute) score, childrenOutput); } - for (Attribute attr : groupings) { - if (attr instanceof UnresolvedAttribute ua) { - newGroupings.add(resolveAttribute(ua, childrenOutput)); - } else { - newGroupings.add(attr); - } + Attribute discriminator = fuse.discriminator(); + if (discriminator instanceof UnresolvedAttribute) { + discriminator = maybeResolveAttribute((UnresolvedAttribute) discriminator, childrenOutput); } - return new Dedup(dedup.source(), dedup.child(), newAggs, newGroupings); - } - - private LogicalPlan resolveRrfScoreEval(RrfScoreEval rrf, List childrenOutput) { - Attribute scoreAttr = rrf.scoreAttribute(); - Attribute forkAttr = rrf.forkAttribute(); + List groupings = fuse.groupings() + .stream() + .map(attr -> attr instanceof UnresolvedAttribute ? maybeResolveAttribute((UnresolvedAttribute) attr, childrenOutput) : attr) + .toList(); - if (scoreAttr instanceof UnresolvedAttribute ua) { - scoreAttr = resolveAttribute(ua, childrenOutput); + // some attributes were unresolved - we return Fuse here so that the Verifier can raise an error message + if (score instanceof UnresolvedAttribute || discriminator instanceof UnresolvedAttribute) { + return new Fuse(fuse.source(), fuse.child(), score, discriminator, groupings, fuse.fuseType(), fuse.fuseOptions()); } - if (forkAttr instanceof UnresolvedAttribute ua) { - forkAttr = resolveAttribute(ua, childrenOutput); - } + LogicalPlan scoreEval = new FuseScoreEval( + source, + fuse.child(), + score, + discriminator, + new FuseConfig(fuse.fuseType(), fuse.fuseOptions()) + ); - if (forkAttr != rrf.forkAttribute() || scoreAttr != rrf.scoreAttribute()) { - return new RrfScoreEval(rrf.source(), rrf.child(), scoreAttr, forkAttr); + // create aggregations + Expression aggFilter = new Literal(source, true, DataType.BOOLEAN); + + List aggregates = new ArrayList<>(); + aggregates.add(new Alias(source, score.name(), new Sum(source, score, aggFilter, SummationMode.COMPENSATED_LITERAL))); + + for (Attribute attr : childrenOutput) { + if (attr.name().equals(score.name())) { + continue; + } + aggregates.add(new Alias(source, attr.name(), new Values(source, attr, aggFilter))); } - return rrf; + return resolveAggregate(new Aggregate(source, scoreEval, new ArrayList<>(groupings), aggregates), childrenOutput); } private Attribute maybeResolveAttribute(UnresolvedAttribute ua, List childrenOutput) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/AggregateFunction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/AggregateFunction.java index d82bd4f446df0..d59bf721ccf30 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/AggregateFunction.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/aggregate/AggregateFunction.java @@ -21,7 +21,6 @@ import org.elasticsearch.xpack.esql.core.util.CollectionUtils; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; -import org.elasticsearch.xpack.esql.plan.logical.Dedup; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import java.io.IOException; @@ -174,9 +173,7 @@ public boolean equals(Object obj) { @Override public BiConsumer postAnalysisPlanVerification() { return (p, failures) -> { - // `dedup` for now is not exposed as a command, - // so allowing aggregate functions for dedup explicitly is just an internal implementation detail - if ((p instanceof Aggregate) == false && (p instanceof Dedup) == false) { + if ((p instanceof Aggregate) == false) { p.expressions().forEach(x -> x.forEachDown(AggregateFunction.class, af -> { failures.add(fail(af, "aggregate function [{}] not allowed outside STATS command", af.sourceText())); })); 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 682468e9fc1bc..751af02e73d1f 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 @@ -113,6 +113,14 @@ null null null null +'group' +'score' +'key' +'rrf' +'linear' +null +null +null 'join' 'USING' null @@ -255,6 +263,14 @@ FROM_WS FORK_WS FORK_LINE_COMMENT FORK_MULTILINE_COMMENT +GROUP +SCORE +KEY +RRF +LINEAR +FUSE_LINE_COMMENT +FUSE_MULTILINE_COMMENT +FUSE_WS JOIN USING JOIN_LINE_COMMENT @@ -454,6 +470,20 @@ FORK_PIPE FORK_WS FORK_LINE_COMMENT FORK_MULTILINE_COMMENT +FUSE_PIPE +FUSE_RP +GROUP +SCORE +KEY +RRF +LINEAR +FUSE_WITH +FUSE_COMMA +FUSE_QUOTED_IDENTIFIER +FUSE_UNQUOTED_IDENTIFIER +FUSE_LINE_COMMENT +FUSE_MULTILINE_COMMENT +FUSE_WS JOIN_PIPE JOIN JOIN_AS @@ -546,6 +576,7 @@ EXPLAIN_MODE EXPRESSION_MODE FROM_MODE FORK_MODE +FUSE_MODE JOIN_MODE LOOKUP_MODE LOOKUP_FIELD_MODE @@ -555,4 +586,4 @@ RENAME_MODE SHOW_MODE atn: -[4, 0, 139, 1862, 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, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 517, 8, 0, 10, 0, 12, 0, 520, 9, 0, 1, 0, 3, 0, 523, 8, 0, 1, 0, 3, 0, 526, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 535, 8, 1, 10, 1, 12, 1, 538, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 546, 8, 2, 11, 2, 12, 2, 547, 1, 2, 1, 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, 4, 1, 4, 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, 5, 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, 7, 1, 7, 1, 7, 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, 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, 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, 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, 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, 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, 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, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 4, 33, 823, 8, 33, 11, 33, 12, 33, 824, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 4, 51, 905, 8, 51, 11, 51, 12, 51, 906, 1, 51, 1, 51, 3, 51, 911, 8, 51, 1, 51, 4, 51, 914, 8, 51, 11, 51, 12, 51, 915, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 4, 74, 1017, 8, 74, 11, 74, 12, 74, 1018, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 1070, 8, 88, 1, 88, 4, 88, 1073, 8, 88, 11, 88, 12, 88, 1074, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 1084, 8, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 3, 93, 1091, 8, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1096, 8, 94, 10, 94, 12, 94, 1099, 9, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 1107, 8, 94, 10, 94, 12, 94, 1110, 9, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1117, 8, 94, 1, 94, 3, 94, 1120, 8, 94, 3, 94, 1122, 8, 94, 1, 95, 4, 95, 1125, 8, 95, 11, 95, 12, 95, 1126, 1, 96, 4, 96, 1130, 8, 96, 11, 96, 12, 96, 1131, 1, 96, 1, 96, 5, 96, 1136, 8, 96, 10, 96, 12, 96, 1139, 9, 96, 1, 96, 1, 96, 4, 96, 1143, 8, 96, 11, 96, 12, 96, 1144, 1, 96, 4, 96, 1148, 8, 96, 11, 96, 12, 96, 1149, 1, 96, 1, 96, 5, 96, 1154, 8, 96, 10, 96, 12, 96, 1157, 9, 96, 3, 96, 1159, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 4, 96, 1165, 8, 96, 11, 96, 12, 96, 1166, 1, 96, 1, 96, 3, 96, 1171, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 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, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 1310, 8, 137, 1, 137, 5, 137, 1313, 8, 137, 10, 137, 12, 137, 1316, 9, 137, 1, 137, 1, 137, 4, 137, 1320, 8, 137, 11, 137, 12, 137, 1321, 3, 137, 1324, 8, 137, 1, 138, 1, 138, 1, 138, 3, 138, 1329, 8, 138, 1, 138, 5, 138, 1332, 8, 138, 10, 138, 12, 138, 1335, 9, 138, 1, 138, 1, 138, 4, 138, 1339, 8, 138, 11, 138, 12, 138, 1340, 3, 138, 1343, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 5, 143, 1367, 8, 143, 10, 143, 12, 143, 1370, 9, 143, 1, 143, 1, 143, 3, 143, 1374, 8, 143, 1, 143, 4, 143, 1377, 8, 143, 11, 143, 12, 143, 1378, 3, 143, 1381, 8, 143, 1, 144, 1, 144, 4, 144, 1385, 8, 144, 11, 144, 12, 144, 1386, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 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, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 1451, 8, 158, 1, 159, 4, 159, 1454, 8, 159, 11, 159, 12, 159, 1455, 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, 165, 1, 166, 1, 166, 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, 171, 1, 172, 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, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 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, 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, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 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, 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, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 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, 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, 203, 1, 204, 1, 204, 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, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 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, 215, 1, 216, 1, 216, 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, 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, 3, 223, 1742, 8, 223, 1, 224, 1, 224, 3, 224, 1746, 8, 224, 1, 224, 5, 224, 1749, 8, 224, 10, 224, 12, 224, 1752, 9, 224, 1, 224, 1, 224, 3, 224, 1756, 8, 224, 1, 224, 4, 224, 1759, 8, 224, 11, 224, 12, 224, 1760, 3, 224, 1763, 8, 224, 1, 225, 1, 225, 4, 225, 1767, 8, 225, 11, 225, 12, 225, 1768, 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, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 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, 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, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 2, 536, 1108, 0, 248, 16, 1, 18, 2, 20, 3, 22, 4, 24, 5, 26, 6, 28, 7, 30, 8, 32, 9, 34, 10, 36, 11, 38, 12, 40, 13, 42, 14, 44, 15, 46, 16, 48, 17, 50, 18, 52, 19, 54, 20, 56, 21, 58, 22, 60, 23, 62, 24, 64, 25, 66, 26, 68, 27, 70, 28, 72, 29, 74, 30, 76, 31, 78, 32, 80, 33, 82, 34, 84, 0, 86, 0, 88, 0, 90, 0, 92, 0, 94, 0, 96, 0, 98, 0, 100, 35, 102, 36, 104, 37, 106, 0, 108, 0, 110, 0, 112, 0, 114, 0, 116, 0, 118, 38, 120, 0, 122, 0, 124, 39, 126, 40, 128, 41, 130, 0, 132, 0, 134, 0, 136, 0, 138, 0, 140, 0, 142, 0, 144, 0, 146, 0, 148, 0, 150, 0, 152, 0, 154, 42, 156, 43, 158, 44, 160, 0, 162, 0, 164, 45, 166, 46, 168, 47, 170, 48, 172, 0, 174, 0, 176, 49, 178, 50, 180, 51, 182, 52, 184, 0, 186, 0, 188, 0, 190, 0, 192, 0, 194, 0, 196, 0, 198, 0, 200, 0, 202, 0, 204, 53, 206, 54, 208, 55, 210, 56, 212, 57, 214, 58, 216, 59, 218, 60, 220, 61, 222, 62, 224, 63, 226, 64, 228, 65, 230, 66, 232, 67, 234, 68, 236, 69, 238, 70, 240, 71, 242, 72, 244, 73, 246, 74, 248, 75, 250, 76, 252, 77, 254, 78, 256, 79, 258, 80, 260, 81, 262, 82, 264, 83, 266, 84, 268, 85, 270, 86, 272, 87, 274, 88, 276, 89, 278, 90, 280, 91, 282, 92, 284, 93, 286, 94, 288, 0, 290, 95, 292, 96, 294, 97, 296, 98, 298, 99, 300, 100, 302, 101, 304, 0, 306, 102, 308, 103, 310, 104, 312, 105, 314, 0, 316, 0, 318, 0, 320, 0, 322, 0, 324, 0, 326, 0, 328, 106, 330, 0, 332, 0, 334, 107, 336, 0, 338, 0, 340, 108, 342, 109, 344, 110, 346, 0, 348, 0, 350, 0, 352, 111, 354, 112, 356, 113, 358, 0, 360, 114, 362, 0, 364, 0, 366, 115, 368, 0, 370, 0, 372, 0, 374, 0, 376, 0, 378, 116, 380, 117, 382, 118, 384, 0, 386, 0, 388, 0, 390, 0, 392, 0, 394, 0, 396, 0, 398, 0, 400, 119, 402, 120, 404, 121, 406, 0, 408, 0, 410, 0, 412, 0, 414, 0, 416, 122, 418, 123, 420, 124, 422, 0, 424, 0, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 0, 438, 0, 440, 125, 442, 126, 444, 127, 446, 0, 448, 0, 450, 0, 452, 0, 454, 0, 456, 0, 458, 0, 460, 0, 462, 0, 464, 0, 466, 128, 468, 129, 470, 130, 472, 131, 474, 0, 476, 0, 478, 0, 480, 0, 482, 0, 484, 0, 486, 0, 488, 0, 490, 0, 492, 132, 494, 0, 496, 133, 498, 134, 500, 135, 502, 0, 504, 136, 506, 137, 508, 138, 510, 139, 16, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 36, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 65, 65, 97, 97, 2, 0, 78, 78, 110, 110, 2, 0, 71, 71, 103, 103, 2, 0, 69, 69, 101, 101, 2, 0, 80, 80, 112, 112, 2, 0, 79, 79, 111, 111, 2, 0, 73, 73, 105, 105, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 88, 88, 120, 120, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 86, 86, 118, 118, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 70, 70, 102, 102, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 12, 0, 9, 10, 13, 13, 32, 32, 34, 35, 40, 41, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 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, 12, 0, 9, 10, 13, 13, 32, 32, 34, 34, 40, 41, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 2, 0, 74, 74, 106, 106, 1893, 0, 16, 1, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 0, 80, 1, 0, 0, 0, 0, 82, 1, 0, 0, 0, 1, 84, 1, 0, 0, 0, 1, 86, 1, 0, 0, 0, 1, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 1, 98, 1, 0, 0, 0, 1, 100, 1, 0, 0, 0, 1, 102, 1, 0, 0, 0, 1, 104, 1, 0, 0, 0, 2, 106, 1, 0, 0, 0, 2, 108, 1, 0, 0, 0, 2, 110, 1, 0, 0, 0, 2, 112, 1, 0, 0, 0, 2, 114, 1, 0, 0, 0, 2, 118, 1, 0, 0, 0, 2, 120, 1, 0, 0, 0, 2, 122, 1, 0, 0, 0, 2, 124, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 2, 128, 1, 0, 0, 0, 3, 130, 1, 0, 0, 0, 3, 132, 1, 0, 0, 0, 3, 134, 1, 0, 0, 0, 3, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 3, 146, 1, 0, 0, 0, 3, 148, 1, 0, 0, 0, 3, 150, 1, 0, 0, 0, 3, 152, 1, 0, 0, 0, 3, 154, 1, 0, 0, 0, 3, 156, 1, 0, 0, 0, 3, 158, 1, 0, 0, 0, 4, 160, 1, 0, 0, 0, 4, 162, 1, 0, 0, 0, 4, 164, 1, 0, 0, 0, 4, 166, 1, 0, 0, 0, 4, 168, 1, 0, 0, 0, 4, 170, 1, 0, 0, 0, 5, 172, 1, 0, 0, 0, 5, 174, 1, 0, 0, 0, 5, 176, 1, 0, 0, 0, 5, 178, 1, 0, 0, 0, 5, 180, 1, 0, 0, 0, 6, 182, 1, 0, 0, 0, 6, 204, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 6, 208, 1, 0, 0, 0, 6, 210, 1, 0, 0, 0, 6, 212, 1, 0, 0, 0, 6, 214, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 6, 220, 1, 0, 0, 0, 6, 222, 1, 0, 0, 0, 6, 224, 1, 0, 0, 0, 6, 226, 1, 0, 0, 0, 6, 228, 1, 0, 0, 0, 6, 230, 1, 0, 0, 0, 6, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 6, 236, 1, 0, 0, 0, 6, 238, 1, 0, 0, 0, 6, 240, 1, 0, 0, 0, 6, 242, 1, 0, 0, 0, 6, 244, 1, 0, 0, 0, 6, 246, 1, 0, 0, 0, 6, 248, 1, 0, 0, 0, 6, 250, 1, 0, 0, 0, 6, 252, 1, 0, 0, 0, 6, 254, 1, 0, 0, 0, 6, 256, 1, 0, 0, 0, 6, 258, 1, 0, 0, 0, 6, 260, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 6, 264, 1, 0, 0, 0, 6, 266, 1, 0, 0, 0, 6, 268, 1, 0, 0, 0, 6, 270, 1, 0, 0, 0, 6, 272, 1, 0, 0, 0, 6, 274, 1, 0, 0, 0, 6, 276, 1, 0, 0, 0, 6, 278, 1, 0, 0, 0, 6, 280, 1, 0, 0, 0, 6, 282, 1, 0, 0, 0, 6, 284, 1, 0, 0, 0, 6, 286, 1, 0, 0, 0, 6, 288, 1, 0, 0, 0, 6, 290, 1, 0, 0, 0, 6, 292, 1, 0, 0, 0, 6, 294, 1, 0, 0, 0, 6, 296, 1, 0, 0, 0, 6, 298, 1, 0, 0, 0, 6, 300, 1, 0, 0, 0, 6, 302, 1, 0, 0, 0, 6, 306, 1, 0, 0, 0, 6, 308, 1, 0, 0, 0, 6, 310, 1, 0, 0, 0, 6, 312, 1, 0, 0, 0, 7, 314, 1, 0, 0, 0, 7, 316, 1, 0, 0, 0, 7, 318, 1, 0, 0, 0, 7, 320, 1, 0, 0, 0, 7, 322, 1, 0, 0, 0, 7, 324, 1, 0, 0, 0, 7, 326, 1, 0, 0, 0, 7, 328, 1, 0, 0, 0, 7, 330, 1, 0, 0, 0, 7, 334, 1, 0, 0, 0, 7, 336, 1, 0, 0, 0, 7, 338, 1, 0, 0, 0, 7, 340, 1, 0, 0, 0, 7, 342, 1, 0, 0, 0, 7, 344, 1, 0, 0, 0, 8, 346, 1, 0, 0, 0, 8, 348, 1, 0, 0, 0, 8, 350, 1, 0, 0, 0, 8, 352, 1, 0, 0, 0, 8, 354, 1, 0, 0, 0, 8, 356, 1, 0, 0, 0, 9, 358, 1, 0, 0, 0, 9, 360, 1, 0, 0, 0, 9, 362, 1, 0, 0, 0, 9, 364, 1, 0, 0, 0, 9, 366, 1, 0, 0, 0, 9, 368, 1, 0, 0, 0, 9, 370, 1, 0, 0, 0, 9, 372, 1, 0, 0, 0, 9, 374, 1, 0, 0, 0, 9, 376, 1, 0, 0, 0, 9, 378, 1, 0, 0, 0, 9, 380, 1, 0, 0, 0, 9, 382, 1, 0, 0, 0, 10, 384, 1, 0, 0, 0, 10, 386, 1, 0, 0, 0, 10, 388, 1, 0, 0, 0, 10, 390, 1, 0, 0, 0, 10, 392, 1, 0, 0, 0, 10, 394, 1, 0, 0, 0, 10, 396, 1, 0, 0, 0, 10, 398, 1, 0, 0, 0, 10, 400, 1, 0, 0, 0, 10, 402, 1, 0, 0, 0, 10, 404, 1, 0, 0, 0, 11, 406, 1, 0, 0, 0, 11, 408, 1, 0, 0, 0, 11, 410, 1, 0, 0, 0, 11, 412, 1, 0, 0, 0, 11, 414, 1, 0, 0, 0, 11, 416, 1, 0, 0, 0, 11, 418, 1, 0, 0, 0, 11, 420, 1, 0, 0, 0, 12, 422, 1, 0, 0, 0, 12, 424, 1, 0, 0, 0, 12, 426, 1, 0, 0, 0, 12, 428, 1, 0, 0, 0, 12, 430, 1, 0, 0, 0, 12, 432, 1, 0, 0, 0, 12, 434, 1, 0, 0, 0, 12, 436, 1, 0, 0, 0, 12, 438, 1, 0, 0, 0, 12, 440, 1, 0, 0, 0, 12, 442, 1, 0, 0, 0, 12, 444, 1, 0, 0, 0, 13, 446, 1, 0, 0, 0, 13, 448, 1, 0, 0, 0, 13, 450, 1, 0, 0, 0, 13, 452, 1, 0, 0, 0, 13, 454, 1, 0, 0, 0, 13, 456, 1, 0, 0, 0, 13, 458, 1, 0, 0, 0, 13, 460, 1, 0, 0, 0, 13, 466, 1, 0, 0, 0, 13, 468, 1, 0, 0, 0, 13, 470, 1, 0, 0, 0, 13, 472, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 14, 476, 1, 0, 0, 0, 14, 478, 1, 0, 0, 0, 14, 480, 1, 0, 0, 0, 14, 482, 1, 0, 0, 0, 14, 484, 1, 0, 0, 0, 14, 486, 1, 0, 0, 0, 14, 488, 1, 0, 0, 0, 14, 490, 1, 0, 0, 0, 14, 492, 1, 0, 0, 0, 14, 494, 1, 0, 0, 0, 14, 496, 1, 0, 0, 0, 14, 498, 1, 0, 0, 0, 14, 500, 1, 0, 0, 0, 15, 502, 1, 0, 0, 0, 15, 504, 1, 0, 0, 0, 15, 506, 1, 0, 0, 0, 15, 508, 1, 0, 0, 0, 15, 510, 1, 0, 0, 0, 16, 512, 1, 0, 0, 0, 18, 529, 1, 0, 0, 0, 20, 545, 1, 0, 0, 0, 22, 551, 1, 0, 0, 0, 24, 566, 1, 0, 0, 0, 26, 575, 1, 0, 0, 0, 28, 586, 1, 0, 0, 0, 30, 599, 1, 0, 0, 0, 32, 609, 1, 0, 0, 0, 34, 616, 1, 0, 0, 0, 36, 623, 1, 0, 0, 0, 38, 631, 1, 0, 0, 0, 40, 640, 1, 0, 0, 0, 42, 646, 1, 0, 0, 0, 44, 655, 1, 0, 0, 0, 46, 662, 1, 0, 0, 0, 48, 670, 1, 0, 0, 0, 50, 678, 1, 0, 0, 0, 52, 693, 1, 0, 0, 0, 54, 700, 1, 0, 0, 0, 56, 706, 1, 0, 0, 0, 58, 713, 1, 0, 0, 0, 60, 721, 1, 0, 0, 0, 62, 730, 1, 0, 0, 0, 64, 738, 1, 0, 0, 0, 66, 746, 1, 0, 0, 0, 68, 755, 1, 0, 0, 0, 70, 767, 1, 0, 0, 0, 72, 779, 1, 0, 0, 0, 74, 786, 1, 0, 0, 0, 76, 793, 1, 0, 0, 0, 78, 805, 1, 0, 0, 0, 80, 814, 1, 0, 0, 0, 82, 822, 1, 0, 0, 0, 84, 828, 1, 0, 0, 0, 86, 833, 1, 0, 0, 0, 88, 839, 1, 0, 0, 0, 90, 843, 1, 0, 0, 0, 92, 847, 1, 0, 0, 0, 94, 851, 1, 0, 0, 0, 96, 855, 1, 0, 0, 0, 98, 859, 1, 0, 0, 0, 100, 863, 1, 0, 0, 0, 102, 867, 1, 0, 0, 0, 104, 871, 1, 0, 0, 0, 106, 875, 1, 0, 0, 0, 108, 880, 1, 0, 0, 0, 110, 886, 1, 0, 0, 0, 112, 891, 1, 0, 0, 0, 114, 896, 1, 0, 0, 0, 116, 901, 1, 0, 0, 0, 118, 910, 1, 0, 0, 0, 120, 917, 1, 0, 0, 0, 122, 921, 1, 0, 0, 0, 124, 925, 1, 0, 0, 0, 126, 929, 1, 0, 0, 0, 128, 933, 1, 0, 0, 0, 130, 937, 1, 0, 0, 0, 132, 943, 1, 0, 0, 0, 134, 950, 1, 0, 0, 0, 136, 954, 1, 0, 0, 0, 138, 958, 1, 0, 0, 0, 140, 962, 1, 0, 0, 0, 142, 966, 1, 0, 0, 0, 144, 970, 1, 0, 0, 0, 146, 974, 1, 0, 0, 0, 148, 978, 1, 0, 0, 0, 150, 982, 1, 0, 0, 0, 152, 986, 1, 0, 0, 0, 154, 990, 1, 0, 0, 0, 156, 994, 1, 0, 0, 0, 158, 998, 1, 0, 0, 0, 160, 1002, 1, 0, 0, 0, 162, 1007, 1, 0, 0, 0, 164, 1016, 1, 0, 0, 0, 166, 1020, 1, 0, 0, 0, 168, 1024, 1, 0, 0, 0, 170, 1028, 1, 0, 0, 0, 172, 1032, 1, 0, 0, 0, 174, 1037, 1, 0, 0, 0, 176, 1042, 1, 0, 0, 0, 178, 1046, 1, 0, 0, 0, 180, 1050, 1, 0, 0, 0, 182, 1054, 1, 0, 0, 0, 184, 1058, 1, 0, 0, 0, 186, 1060, 1, 0, 0, 0, 188, 1062, 1, 0, 0, 0, 190, 1065, 1, 0, 0, 0, 192, 1067, 1, 0, 0, 0, 194, 1076, 1, 0, 0, 0, 196, 1078, 1, 0, 0, 0, 198, 1083, 1, 0, 0, 0, 200, 1085, 1, 0, 0, 0, 202, 1090, 1, 0, 0, 0, 204, 1121, 1, 0, 0, 0, 206, 1124, 1, 0, 0, 0, 208, 1170, 1, 0, 0, 0, 210, 1172, 1, 0, 0, 0, 212, 1176, 1, 0, 0, 0, 214, 1180, 1, 0, 0, 0, 216, 1182, 1, 0, 0, 0, 218, 1185, 1, 0, 0, 0, 220, 1188, 1, 0, 0, 0, 222, 1190, 1, 0, 0, 0, 224, 1192, 1, 0, 0, 0, 226, 1197, 1, 0, 0, 0, 228, 1199, 1, 0, 0, 0, 230, 1205, 1, 0, 0, 0, 232, 1211, 1, 0, 0, 0, 234, 1214, 1, 0, 0, 0, 236, 1217, 1, 0, 0, 0, 238, 1222, 1, 0, 0, 0, 240, 1227, 1, 0, 0, 0, 242, 1231, 1, 0, 0, 0, 244, 1236, 1, 0, 0, 0, 246, 1242, 1, 0, 0, 0, 248, 1245, 1, 0, 0, 0, 250, 1248, 1, 0, 0, 0, 252, 1250, 1, 0, 0, 0, 254, 1256, 1, 0, 0, 0, 256, 1261, 1, 0, 0, 0, 258, 1266, 1, 0, 0, 0, 260, 1269, 1, 0, 0, 0, 262, 1272, 1, 0, 0, 0, 264, 1275, 1, 0, 0, 0, 266, 1277, 1, 0, 0, 0, 268, 1280, 1, 0, 0, 0, 270, 1282, 1, 0, 0, 0, 272, 1285, 1, 0, 0, 0, 274, 1287, 1, 0, 0, 0, 276, 1289, 1, 0, 0, 0, 278, 1291, 1, 0, 0, 0, 280, 1293, 1, 0, 0, 0, 282, 1295, 1, 0, 0, 0, 284, 1297, 1, 0, 0, 0, 286, 1299, 1, 0, 0, 0, 288, 1302, 1, 0, 0, 0, 290, 1323, 1, 0, 0, 0, 292, 1342, 1, 0, 0, 0, 294, 1344, 1, 0, 0, 0, 296, 1349, 1, 0, 0, 0, 298, 1354, 1, 0, 0, 0, 300, 1359, 1, 0, 0, 0, 302, 1380, 1, 0, 0, 0, 304, 1382, 1, 0, 0, 0, 306, 1390, 1, 0, 0, 0, 308, 1392, 1, 0, 0, 0, 310, 1396, 1, 0, 0, 0, 312, 1400, 1, 0, 0, 0, 314, 1404, 1, 0, 0, 0, 316, 1409, 1, 0, 0, 0, 318, 1413, 1, 0, 0, 0, 320, 1417, 1, 0, 0, 0, 322, 1421, 1, 0, 0, 0, 324, 1425, 1, 0, 0, 0, 326, 1429, 1, 0, 0, 0, 328, 1433, 1, 0, 0, 0, 330, 1442, 1, 0, 0, 0, 332, 1450, 1, 0, 0, 0, 334, 1453, 1, 0, 0, 0, 336, 1457, 1, 0, 0, 0, 338, 1461, 1, 0, 0, 0, 340, 1465, 1, 0, 0, 0, 342, 1469, 1, 0, 0, 0, 344, 1473, 1, 0, 0, 0, 346, 1477, 1, 0, 0, 0, 348, 1482, 1, 0, 0, 0, 350, 1488, 1, 0, 0, 0, 352, 1493, 1, 0, 0, 0, 354, 1497, 1, 0, 0, 0, 356, 1501, 1, 0, 0, 0, 358, 1505, 1, 0, 0, 0, 360, 1510, 1, 0, 0, 0, 362, 1515, 1, 0, 0, 0, 364, 1519, 1, 0, 0, 0, 366, 1525, 1, 0, 0, 0, 368, 1534, 1, 0, 0, 0, 370, 1538, 1, 0, 0, 0, 372, 1542, 1, 0, 0, 0, 374, 1546, 1, 0, 0, 0, 376, 1550, 1, 0, 0, 0, 378, 1554, 1, 0, 0, 0, 380, 1558, 1, 0, 0, 0, 382, 1562, 1, 0, 0, 0, 384, 1566, 1, 0, 0, 0, 386, 1571, 1, 0, 0, 0, 388, 1577, 1, 0, 0, 0, 390, 1581, 1, 0, 0, 0, 392, 1585, 1, 0, 0, 0, 394, 1589, 1, 0, 0, 0, 396, 1594, 1, 0, 0, 0, 398, 1598, 1, 0, 0, 0, 400, 1602, 1, 0, 0, 0, 402, 1606, 1, 0, 0, 0, 404, 1610, 1, 0, 0, 0, 406, 1614, 1, 0, 0, 0, 408, 1620, 1, 0, 0, 0, 410, 1627, 1, 0, 0, 0, 412, 1631, 1, 0, 0, 0, 414, 1635, 1, 0, 0, 0, 416, 1639, 1, 0, 0, 0, 418, 1643, 1, 0, 0, 0, 420, 1647, 1, 0, 0, 0, 422, 1651, 1, 0, 0, 0, 424, 1656, 1, 0, 0, 0, 426, 1662, 1, 0, 0, 0, 428, 1666, 1, 0, 0, 0, 430, 1670, 1, 0, 0, 0, 432, 1674, 1, 0, 0, 0, 434, 1678, 1, 0, 0, 0, 436, 1682, 1, 0, 0, 0, 438, 1686, 1, 0, 0, 0, 440, 1690, 1, 0, 0, 0, 442, 1694, 1, 0, 0, 0, 444, 1698, 1, 0, 0, 0, 446, 1702, 1, 0, 0, 0, 448, 1707, 1, 0, 0, 0, 450, 1713, 1, 0, 0, 0, 452, 1717, 1, 0, 0, 0, 454, 1721, 1, 0, 0, 0, 456, 1725, 1, 0, 0, 0, 458, 1729, 1, 0, 0, 0, 460, 1733, 1, 0, 0, 0, 462, 1741, 1, 0, 0, 0, 464, 1762, 1, 0, 0, 0, 466, 1766, 1, 0, 0, 0, 468, 1770, 1, 0, 0, 0, 470, 1774, 1, 0, 0, 0, 472, 1778, 1, 0, 0, 0, 474, 1782, 1, 0, 0, 0, 476, 1787, 1, 0, 0, 0, 478, 1793, 1, 0, 0, 0, 480, 1797, 1, 0, 0, 0, 482, 1801, 1, 0, 0, 0, 484, 1805, 1, 0, 0, 0, 486, 1809, 1, 0, 0, 0, 488, 1813, 1, 0, 0, 0, 490, 1817, 1, 0, 0, 0, 492, 1821, 1, 0, 0, 0, 494, 1824, 1, 0, 0, 0, 496, 1828, 1, 0, 0, 0, 498, 1832, 1, 0, 0, 0, 500, 1836, 1, 0, 0, 0, 502, 1840, 1, 0, 0, 0, 504, 1845, 1, 0, 0, 0, 506, 1850, 1, 0, 0, 0, 508, 1854, 1, 0, 0, 0, 510, 1858, 1, 0, 0, 0, 512, 513, 5, 47, 0, 0, 513, 514, 5, 47, 0, 0, 514, 518, 1, 0, 0, 0, 515, 517, 8, 0, 0, 0, 516, 515, 1, 0, 0, 0, 517, 520, 1, 0, 0, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 522, 1, 0, 0, 0, 520, 518, 1, 0, 0, 0, 521, 523, 5, 13, 0, 0, 522, 521, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 525, 1, 0, 0, 0, 524, 526, 5, 10, 0, 0, 525, 524, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 528, 6, 0, 0, 0, 528, 17, 1, 0, 0, 0, 529, 530, 5, 47, 0, 0, 530, 531, 5, 42, 0, 0, 531, 536, 1, 0, 0, 0, 532, 535, 3, 18, 1, 0, 533, 535, 9, 0, 0, 0, 534, 532, 1, 0, 0, 0, 534, 533, 1, 0, 0, 0, 535, 538, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 537, 539, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 539, 540, 5, 42, 0, 0, 540, 541, 5, 47, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 6, 1, 0, 0, 543, 19, 1, 0, 0, 0, 544, 546, 7, 1, 0, 0, 545, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 6, 2, 0, 0, 550, 21, 1, 0, 0, 0, 551, 552, 7, 2, 0, 0, 552, 553, 7, 3, 0, 0, 553, 554, 7, 4, 0, 0, 554, 555, 7, 5, 0, 0, 555, 556, 7, 6, 0, 0, 556, 557, 7, 7, 0, 0, 557, 558, 5, 95, 0, 0, 558, 559, 7, 8, 0, 0, 559, 560, 7, 9, 0, 0, 560, 561, 7, 10, 0, 0, 561, 562, 7, 5, 0, 0, 562, 563, 7, 11, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 6, 3, 1, 0, 565, 23, 1, 0, 0, 0, 566, 567, 7, 7, 0, 0, 567, 568, 7, 5, 0, 0, 568, 569, 7, 12, 0, 0, 569, 570, 7, 10, 0, 0, 570, 571, 7, 2, 0, 0, 571, 572, 7, 3, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 6, 4, 2, 0, 574, 25, 1, 0, 0, 0, 575, 576, 4, 5, 0, 0, 576, 577, 7, 7, 0, 0, 577, 578, 7, 13, 0, 0, 578, 579, 7, 8, 0, 0, 579, 580, 7, 14, 0, 0, 580, 581, 7, 4, 0, 0, 581, 582, 7, 10, 0, 0, 582, 583, 7, 5, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 6, 5, 3, 0, 585, 27, 1, 0, 0, 0, 586, 587, 7, 2, 0, 0, 587, 588, 7, 9, 0, 0, 588, 589, 7, 15, 0, 0, 589, 590, 7, 8, 0, 0, 590, 591, 7, 14, 0, 0, 591, 592, 7, 7, 0, 0, 592, 593, 7, 11, 0, 0, 593, 594, 7, 10, 0, 0, 594, 595, 7, 9, 0, 0, 595, 596, 7, 5, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 6, 6, 4, 0, 598, 29, 1, 0, 0, 0, 599, 600, 7, 16, 0, 0, 600, 601, 7, 10, 0, 0, 601, 602, 7, 17, 0, 0, 602, 603, 7, 17, 0, 0, 603, 604, 7, 7, 0, 0, 604, 605, 7, 2, 0, 0, 605, 606, 7, 11, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 6, 7, 4, 0, 608, 31, 1, 0, 0, 0, 609, 610, 7, 7, 0, 0, 610, 611, 7, 18, 0, 0, 611, 612, 7, 4, 0, 0, 612, 613, 7, 14, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 6, 8, 4, 0, 615, 33, 1, 0, 0, 0, 616, 617, 7, 6, 0, 0, 617, 618, 7, 12, 0, 0, 618, 619, 7, 9, 0, 0, 619, 620, 7, 19, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 6, 9, 4, 0, 622, 35, 1, 0, 0, 0, 623, 624, 7, 14, 0, 0, 624, 625, 7, 10, 0, 0, 625, 626, 7, 15, 0, 0, 626, 627, 7, 10, 0, 0, 627, 628, 7, 11, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 6, 10, 4, 0, 630, 37, 1, 0, 0, 0, 631, 632, 7, 12, 0, 0, 632, 633, 7, 7, 0, 0, 633, 634, 7, 12, 0, 0, 634, 635, 7, 4, 0, 0, 635, 636, 7, 5, 0, 0, 636, 637, 7, 19, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 6, 11, 4, 0, 639, 39, 1, 0, 0, 0, 640, 641, 7, 12, 0, 0, 641, 642, 7, 9, 0, 0, 642, 643, 7, 20, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 6, 12, 4, 0, 645, 41, 1, 0, 0, 0, 646, 647, 7, 17, 0, 0, 647, 648, 7, 4, 0, 0, 648, 649, 7, 15, 0, 0, 649, 650, 7, 8, 0, 0, 650, 651, 7, 14, 0, 0, 651, 652, 7, 7, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 6, 13, 4, 0, 654, 43, 1, 0, 0, 0, 655, 656, 7, 17, 0, 0, 656, 657, 7, 9, 0, 0, 657, 658, 7, 12, 0, 0, 658, 659, 7, 11, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 6, 14, 4, 0, 661, 45, 1, 0, 0, 0, 662, 663, 7, 17, 0, 0, 663, 664, 7, 11, 0, 0, 664, 665, 7, 4, 0, 0, 665, 666, 7, 11, 0, 0, 666, 667, 7, 17, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 6, 15, 4, 0, 669, 47, 1, 0, 0, 0, 670, 671, 7, 20, 0, 0, 671, 672, 7, 3, 0, 0, 672, 673, 7, 7, 0, 0, 673, 674, 7, 12, 0, 0, 674, 675, 7, 7, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 6, 16, 4, 0, 677, 49, 1, 0, 0, 0, 678, 679, 4, 17, 1, 0, 679, 680, 7, 10, 0, 0, 680, 681, 7, 5, 0, 0, 681, 682, 7, 14, 0, 0, 682, 683, 7, 10, 0, 0, 683, 684, 7, 5, 0, 0, 684, 685, 7, 7, 0, 0, 685, 686, 7, 17, 0, 0, 686, 687, 7, 11, 0, 0, 687, 688, 7, 4, 0, 0, 688, 689, 7, 11, 0, 0, 689, 690, 7, 17, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 6, 17, 4, 0, 692, 51, 1, 0, 0, 0, 693, 694, 7, 21, 0, 0, 694, 695, 7, 12, 0, 0, 695, 696, 7, 9, 0, 0, 696, 697, 7, 15, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 6, 18, 5, 0, 699, 53, 1, 0, 0, 0, 700, 701, 4, 19, 2, 0, 701, 702, 7, 11, 0, 0, 702, 703, 7, 17, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 6, 19, 5, 0, 705, 55, 1, 0, 0, 0, 706, 707, 7, 21, 0, 0, 707, 708, 7, 9, 0, 0, 708, 709, 7, 12, 0, 0, 709, 710, 7, 19, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 6, 20, 6, 0, 712, 57, 1, 0, 0, 0, 713, 714, 4, 21, 3, 0, 714, 715, 7, 21, 0, 0, 715, 716, 7, 22, 0, 0, 716, 717, 7, 17, 0, 0, 717, 718, 7, 7, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 6, 21, 4, 0, 720, 59, 1, 0, 0, 0, 721, 722, 7, 14, 0, 0, 722, 723, 7, 9, 0, 0, 723, 724, 7, 9, 0, 0, 724, 725, 7, 19, 0, 0, 725, 726, 7, 22, 0, 0, 726, 727, 7, 8, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 6, 22, 7, 0, 729, 61, 1, 0, 0, 0, 730, 731, 4, 23, 4, 0, 731, 732, 7, 21, 0, 0, 732, 733, 7, 22, 0, 0, 733, 734, 7, 14, 0, 0, 734, 735, 7, 14, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 6, 23, 7, 0, 737, 63, 1, 0, 0, 0, 738, 739, 4, 24, 5, 0, 739, 740, 7, 14, 0, 0, 740, 741, 7, 7, 0, 0, 741, 742, 7, 21, 0, 0, 742, 743, 7, 11, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 6, 24, 7, 0, 745, 65, 1, 0, 0, 0, 746, 747, 4, 25, 6, 0, 747, 748, 7, 12, 0, 0, 748, 749, 7, 10, 0, 0, 749, 750, 7, 6, 0, 0, 750, 751, 7, 3, 0, 0, 751, 752, 7, 11, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 6, 25, 7, 0, 754, 67, 1, 0, 0, 0, 755, 756, 4, 26, 7, 0, 756, 757, 7, 14, 0, 0, 757, 758, 7, 9, 0, 0, 758, 759, 7, 9, 0, 0, 759, 760, 7, 19, 0, 0, 760, 761, 7, 22, 0, 0, 761, 762, 7, 8, 0, 0, 762, 763, 5, 95, 0, 0, 763, 764, 5, 128020, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 6, 26, 8, 0, 766, 69, 1, 0, 0, 0, 767, 768, 7, 15, 0, 0, 768, 769, 7, 18, 0, 0, 769, 770, 5, 95, 0, 0, 770, 771, 7, 7, 0, 0, 771, 772, 7, 13, 0, 0, 772, 773, 7, 8, 0, 0, 773, 774, 7, 4, 0, 0, 774, 775, 7, 5, 0, 0, 775, 776, 7, 16, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 6, 27, 9, 0, 778, 71, 1, 0, 0, 0, 779, 780, 7, 16, 0, 0, 780, 781, 7, 12, 0, 0, 781, 782, 7, 9, 0, 0, 782, 783, 7, 8, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 6, 28, 10, 0, 785, 73, 1, 0, 0, 0, 786, 787, 7, 19, 0, 0, 787, 788, 7, 7, 0, 0, 788, 789, 7, 7, 0, 0, 789, 790, 7, 8, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 6, 29, 10, 0, 792, 75, 1, 0, 0, 0, 793, 794, 4, 30, 8, 0, 794, 795, 7, 10, 0, 0, 795, 796, 7, 5, 0, 0, 796, 797, 7, 17, 0, 0, 797, 798, 7, 10, 0, 0, 798, 799, 7, 17, 0, 0, 799, 800, 7, 11, 0, 0, 800, 801, 5, 95, 0, 0, 801, 802, 5, 128020, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 6, 30, 10, 0, 804, 77, 1, 0, 0, 0, 805, 806, 7, 12, 0, 0, 806, 807, 7, 7, 0, 0, 807, 808, 7, 5, 0, 0, 808, 809, 7, 4, 0, 0, 809, 810, 7, 15, 0, 0, 810, 811, 7, 7, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 6, 31, 11, 0, 813, 79, 1, 0, 0, 0, 814, 815, 7, 17, 0, 0, 815, 816, 7, 3, 0, 0, 816, 817, 7, 9, 0, 0, 817, 818, 7, 20, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 6, 32, 12, 0, 820, 81, 1, 0, 0, 0, 821, 823, 8, 23, 0, 0, 822, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 6, 33, 4, 0, 827, 83, 1, 0, 0, 0, 828, 829, 3, 182, 83, 0, 829, 830, 1, 0, 0, 0, 830, 831, 6, 34, 13, 0, 831, 832, 6, 34, 14, 0, 832, 85, 1, 0, 0, 0, 833, 834, 3, 300, 142, 0, 834, 835, 1, 0, 0, 0, 835, 836, 6, 35, 15, 0, 836, 837, 6, 35, 14, 0, 837, 838, 6, 35, 14, 0, 838, 87, 1, 0, 0, 0, 839, 840, 3, 246, 115, 0, 840, 841, 1, 0, 0, 0, 841, 842, 6, 36, 16, 0, 842, 89, 1, 0, 0, 0, 843, 844, 3, 492, 238, 0, 844, 845, 1, 0, 0, 0, 845, 846, 6, 37, 17, 0, 846, 91, 1, 0, 0, 0, 847, 848, 3, 226, 105, 0, 848, 849, 1, 0, 0, 0, 849, 850, 6, 38, 18, 0, 850, 93, 1, 0, 0, 0, 851, 852, 3, 222, 103, 0, 852, 853, 1, 0, 0, 0, 853, 854, 6, 39, 19, 0, 854, 95, 1, 0, 0, 0, 855, 856, 3, 306, 145, 0, 856, 857, 1, 0, 0, 0, 857, 858, 6, 40, 20, 0, 858, 97, 1, 0, 0, 0, 859, 860, 3, 302, 143, 0, 860, 861, 1, 0, 0, 0, 861, 862, 6, 41, 21, 0, 862, 99, 1, 0, 0, 0, 863, 864, 3, 16, 0, 0, 864, 865, 1, 0, 0, 0, 865, 866, 6, 42, 0, 0, 866, 101, 1, 0, 0, 0, 867, 868, 3, 18, 1, 0, 868, 869, 1, 0, 0, 0, 869, 870, 6, 43, 0, 0, 870, 103, 1, 0, 0, 0, 871, 872, 3, 20, 2, 0, 872, 873, 1, 0, 0, 0, 873, 874, 6, 44, 0, 0, 874, 105, 1, 0, 0, 0, 875, 876, 3, 182, 83, 0, 876, 877, 1, 0, 0, 0, 877, 878, 6, 45, 13, 0, 878, 879, 6, 45, 14, 0, 879, 107, 1, 0, 0, 0, 880, 881, 3, 300, 142, 0, 881, 882, 1, 0, 0, 0, 882, 883, 6, 46, 15, 0, 883, 884, 6, 46, 14, 0, 884, 885, 6, 46, 14, 0, 885, 109, 1, 0, 0, 0, 886, 887, 3, 294, 139, 0, 887, 888, 1, 0, 0, 0, 888, 889, 6, 47, 22, 0, 889, 890, 6, 47, 23, 0, 890, 111, 1, 0, 0, 0, 891, 892, 3, 246, 115, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 48, 16, 0, 894, 895, 6, 48, 24, 0, 895, 113, 1, 0, 0, 0, 896, 897, 3, 256, 120, 0, 897, 898, 1, 0, 0, 0, 898, 899, 6, 49, 25, 0, 899, 900, 6, 49, 24, 0, 900, 115, 1, 0, 0, 0, 901, 902, 8, 24, 0, 0, 902, 117, 1, 0, 0, 0, 903, 905, 3, 116, 50, 0, 904, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 909, 3, 220, 102, 0, 909, 911, 1, 0, 0, 0, 910, 904, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 913, 1, 0, 0, 0, 912, 914, 3, 116, 50, 0, 913, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 119, 1, 0, 0, 0, 917, 918, 3, 118, 51, 0, 918, 919, 1, 0, 0, 0, 919, 920, 6, 52, 26, 0, 920, 121, 1, 0, 0, 0, 921, 922, 3, 204, 94, 0, 922, 923, 1, 0, 0, 0, 923, 924, 6, 53, 27, 0, 924, 123, 1, 0, 0, 0, 925, 926, 3, 16, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 54, 0, 0, 928, 125, 1, 0, 0, 0, 929, 930, 3, 18, 1, 0, 930, 931, 1, 0, 0, 0, 931, 932, 6, 55, 0, 0, 932, 127, 1, 0, 0, 0, 933, 934, 3, 20, 2, 0, 934, 935, 1, 0, 0, 0, 935, 936, 6, 56, 0, 0, 936, 129, 1, 0, 0, 0, 937, 938, 3, 182, 83, 0, 938, 939, 1, 0, 0, 0, 939, 940, 6, 57, 13, 0, 940, 941, 6, 57, 14, 0, 941, 942, 6, 57, 14, 0, 942, 131, 1, 0, 0, 0, 943, 944, 3, 300, 142, 0, 944, 945, 1, 0, 0, 0, 945, 946, 6, 58, 15, 0, 946, 947, 6, 58, 14, 0, 947, 948, 6, 58, 14, 0, 948, 949, 6, 58, 14, 0, 949, 133, 1, 0, 0, 0, 950, 951, 3, 214, 99, 0, 951, 952, 1, 0, 0, 0, 952, 953, 6, 59, 28, 0, 953, 135, 1, 0, 0, 0, 954, 955, 3, 222, 103, 0, 955, 956, 1, 0, 0, 0, 956, 957, 6, 60, 19, 0, 957, 137, 1, 0, 0, 0, 958, 959, 3, 226, 105, 0, 959, 960, 1, 0, 0, 0, 960, 961, 6, 61, 18, 0, 961, 139, 1, 0, 0, 0, 962, 963, 3, 256, 120, 0, 963, 964, 1, 0, 0, 0, 964, 965, 6, 62, 25, 0, 965, 141, 1, 0, 0, 0, 966, 967, 3, 466, 225, 0, 967, 968, 1, 0, 0, 0, 968, 969, 6, 63, 29, 0, 969, 143, 1, 0, 0, 0, 970, 971, 3, 306, 145, 0, 971, 972, 1, 0, 0, 0, 972, 973, 6, 64, 20, 0, 973, 145, 1, 0, 0, 0, 974, 975, 3, 250, 117, 0, 975, 976, 1, 0, 0, 0, 976, 977, 6, 65, 30, 0, 977, 147, 1, 0, 0, 0, 978, 979, 3, 290, 137, 0, 979, 980, 1, 0, 0, 0, 980, 981, 6, 66, 31, 0, 981, 149, 1, 0, 0, 0, 982, 983, 3, 286, 135, 0, 983, 984, 1, 0, 0, 0, 984, 985, 6, 67, 32, 0, 985, 151, 1, 0, 0, 0, 986, 987, 3, 292, 138, 0, 987, 988, 1, 0, 0, 0, 988, 989, 6, 68, 33, 0, 989, 153, 1, 0, 0, 0, 990, 991, 3, 16, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 6, 69, 0, 0, 993, 155, 1, 0, 0, 0, 994, 995, 3, 18, 1, 0, 995, 996, 1, 0, 0, 0, 996, 997, 6, 70, 0, 0, 997, 157, 1, 0, 0, 0, 998, 999, 3, 20, 2, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 6, 71, 0, 0, 1001, 159, 1, 0, 0, 0, 1002, 1003, 3, 296, 140, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 6, 72, 34, 0, 1005, 1006, 6, 72, 14, 0, 1006, 161, 1, 0, 0, 0, 1007, 1008, 3, 220, 102, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 6, 73, 35, 0, 1010, 163, 1, 0, 0, 0, 1011, 1017, 3, 194, 89, 0, 1012, 1017, 3, 184, 84, 0, 1013, 1017, 3, 226, 105, 0, 1014, 1017, 3, 186, 85, 0, 1015, 1017, 3, 200, 92, 0, 1016, 1011, 1, 0, 0, 0, 1016, 1012, 1, 0, 0, 0, 1016, 1013, 1, 0, 0, 0, 1016, 1014, 1, 0, 0, 0, 1016, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 165, 1, 0, 0, 0, 1020, 1021, 3, 16, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1023, 6, 75, 0, 0, 1023, 167, 1, 0, 0, 0, 1024, 1025, 3, 18, 1, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 6, 76, 0, 0, 1027, 169, 1, 0, 0, 0, 1028, 1029, 3, 20, 2, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 6, 77, 0, 0, 1031, 171, 1, 0, 0, 0, 1032, 1033, 3, 298, 141, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 6, 78, 36, 0, 1035, 1036, 6, 78, 37, 0, 1036, 173, 1, 0, 0, 0, 1037, 1038, 3, 182, 83, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 6, 79, 13, 0, 1040, 1041, 6, 79, 14, 0, 1041, 175, 1, 0, 0, 0, 1042, 1043, 3, 20, 2, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 6, 80, 0, 0, 1045, 177, 1, 0, 0, 0, 1046, 1047, 3, 16, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 6, 81, 0, 0, 1049, 179, 1, 0, 0, 0, 1050, 1051, 3, 18, 1, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 6, 82, 0, 0, 1053, 181, 1, 0, 0, 0, 1054, 1055, 5, 124, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 6, 83, 14, 0, 1057, 183, 1, 0, 0, 0, 1058, 1059, 7, 25, 0, 0, 1059, 185, 1, 0, 0, 0, 1060, 1061, 7, 26, 0, 0, 1061, 187, 1, 0, 0, 0, 1062, 1063, 5, 92, 0, 0, 1063, 1064, 7, 27, 0, 0, 1064, 189, 1, 0, 0, 0, 1065, 1066, 8, 28, 0, 0, 1066, 191, 1, 0, 0, 0, 1067, 1069, 7, 7, 0, 0, 1068, 1070, 7, 29, 0, 0, 1069, 1068, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1072, 1, 0, 0, 0, 1071, 1073, 3, 184, 84, 0, 1072, 1071, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 193, 1, 0, 0, 0, 1076, 1077, 5, 64, 0, 0, 1077, 195, 1, 0, 0, 0, 1078, 1079, 5, 96, 0, 0, 1079, 197, 1, 0, 0, 0, 1080, 1084, 8, 30, 0, 0, 1081, 1082, 5, 96, 0, 0, 1082, 1084, 5, 96, 0, 0, 1083, 1080, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1084, 199, 1, 0, 0, 0, 1085, 1086, 5, 95, 0, 0, 1086, 201, 1, 0, 0, 0, 1087, 1091, 3, 186, 85, 0, 1088, 1091, 3, 184, 84, 0, 1089, 1091, 3, 200, 92, 0, 1090, 1087, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1089, 1, 0, 0, 0, 1091, 203, 1, 0, 0, 0, 1092, 1097, 5, 34, 0, 0, 1093, 1096, 3, 188, 86, 0, 1094, 1096, 3, 190, 87, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1122, 5, 34, 0, 0, 1101, 1102, 5, 34, 0, 0, 1102, 1103, 5, 34, 0, 0, 1103, 1104, 5, 34, 0, 0, 1104, 1108, 1, 0, 0, 0, 1105, 1107, 8, 0, 0, 0, 1106, 1105, 1, 0, 0, 0, 1107, 1110, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1108, 1106, 1, 0, 0, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1108, 1, 0, 0, 0, 1111, 1112, 5, 34, 0, 0, 1112, 1113, 5, 34, 0, 0, 1113, 1114, 5, 34, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 5, 34, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1119, 1, 0, 0, 0, 1118, 1120, 5, 34, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1122, 1, 0, 0, 0, 1121, 1092, 1, 0, 0, 0, 1121, 1101, 1, 0, 0, 0, 1122, 205, 1, 0, 0, 0, 1123, 1125, 3, 184, 84, 0, 1124, 1123, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 207, 1, 0, 0, 0, 1128, 1130, 3, 184, 84, 0, 1129, 1128, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1137, 3, 226, 105, 0, 1134, 1136, 3, 184, 84, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1171, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1142, 3, 226, 105, 0, 1141, 1143, 3, 184, 84, 0, 1142, 1141, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1171, 1, 0, 0, 0, 1146, 1148, 3, 184, 84, 0, 1147, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1147, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1158, 1, 0, 0, 0, 1151, 1155, 3, 226, 105, 0, 1152, 1154, 3, 184, 84, 0, 1153, 1152, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 3, 192, 88, 0, 1161, 1171, 1, 0, 0, 0, 1162, 1164, 3, 226, 105, 0, 1163, 1165, 3, 184, 84, 0, 1164, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 3, 192, 88, 0, 1169, 1171, 1, 0, 0, 0, 1170, 1129, 1, 0, 0, 0, 1170, 1140, 1, 0, 0, 0, 1170, 1147, 1, 0, 0, 0, 1170, 1162, 1, 0, 0, 0, 1171, 209, 1, 0, 0, 0, 1172, 1173, 7, 4, 0, 0, 1173, 1174, 7, 5, 0, 0, 1174, 1175, 7, 16, 0, 0, 1175, 211, 1, 0, 0, 0, 1176, 1177, 7, 4, 0, 0, 1177, 1178, 7, 17, 0, 0, 1178, 1179, 7, 2, 0, 0, 1179, 213, 1, 0, 0, 0, 1180, 1181, 5, 61, 0, 0, 1181, 215, 1, 0, 0, 0, 1182, 1183, 7, 31, 0, 0, 1183, 1184, 7, 32, 0, 0, 1184, 217, 1, 0, 0, 0, 1185, 1186, 5, 58, 0, 0, 1186, 1187, 5, 58, 0, 0, 1187, 219, 1, 0, 0, 0, 1188, 1189, 5, 58, 0, 0, 1189, 221, 1, 0, 0, 0, 1190, 1191, 5, 44, 0, 0, 1191, 223, 1, 0, 0, 0, 1192, 1193, 7, 16, 0, 0, 1193, 1194, 7, 7, 0, 0, 1194, 1195, 7, 17, 0, 0, 1195, 1196, 7, 2, 0, 0, 1196, 225, 1, 0, 0, 0, 1197, 1198, 5, 46, 0, 0, 1198, 227, 1, 0, 0, 0, 1199, 1200, 7, 21, 0, 0, 1200, 1201, 7, 4, 0, 0, 1201, 1202, 7, 14, 0, 0, 1202, 1203, 7, 17, 0, 0, 1203, 1204, 7, 7, 0, 0, 1204, 229, 1, 0, 0, 0, 1205, 1206, 7, 21, 0, 0, 1206, 1207, 7, 10, 0, 0, 1207, 1208, 7, 12, 0, 0, 1208, 1209, 7, 17, 0, 0, 1209, 1210, 7, 11, 0, 0, 1210, 231, 1, 0, 0, 0, 1211, 1212, 7, 10, 0, 0, 1212, 1213, 7, 5, 0, 0, 1213, 233, 1, 0, 0, 0, 1214, 1215, 7, 10, 0, 0, 1215, 1216, 7, 17, 0, 0, 1216, 235, 1, 0, 0, 0, 1217, 1218, 7, 14, 0, 0, 1218, 1219, 7, 4, 0, 0, 1219, 1220, 7, 17, 0, 0, 1220, 1221, 7, 11, 0, 0, 1221, 237, 1, 0, 0, 0, 1222, 1223, 7, 14, 0, 0, 1223, 1224, 7, 10, 0, 0, 1224, 1225, 7, 19, 0, 0, 1225, 1226, 7, 7, 0, 0, 1226, 239, 1, 0, 0, 0, 1227, 1228, 7, 5, 0, 0, 1228, 1229, 7, 9, 0, 0, 1229, 1230, 7, 11, 0, 0, 1230, 241, 1, 0, 0, 0, 1231, 1232, 7, 5, 0, 0, 1232, 1233, 7, 22, 0, 0, 1233, 1234, 7, 14, 0, 0, 1234, 1235, 7, 14, 0, 0, 1235, 243, 1, 0, 0, 0, 1236, 1237, 7, 5, 0, 0, 1237, 1238, 7, 22, 0, 0, 1238, 1239, 7, 14, 0, 0, 1239, 1240, 7, 14, 0, 0, 1240, 1241, 7, 17, 0, 0, 1241, 245, 1, 0, 0, 0, 1242, 1243, 7, 9, 0, 0, 1243, 1244, 7, 5, 0, 0, 1244, 247, 1, 0, 0, 0, 1245, 1246, 7, 9, 0, 0, 1246, 1247, 7, 12, 0, 0, 1247, 249, 1, 0, 0, 0, 1248, 1249, 5, 63, 0, 0, 1249, 251, 1, 0, 0, 0, 1250, 1251, 7, 12, 0, 0, 1251, 1252, 7, 14, 0, 0, 1252, 1253, 7, 10, 0, 0, 1253, 1254, 7, 19, 0, 0, 1254, 1255, 7, 7, 0, 0, 1255, 253, 1, 0, 0, 0, 1256, 1257, 7, 11, 0, 0, 1257, 1258, 7, 12, 0, 0, 1258, 1259, 7, 22, 0, 0, 1259, 1260, 7, 7, 0, 0, 1260, 255, 1, 0, 0, 0, 1261, 1262, 7, 20, 0, 0, 1262, 1263, 7, 10, 0, 0, 1263, 1264, 7, 11, 0, 0, 1264, 1265, 7, 3, 0, 0, 1265, 257, 1, 0, 0, 0, 1266, 1267, 5, 61, 0, 0, 1267, 1268, 5, 61, 0, 0, 1268, 259, 1, 0, 0, 0, 1269, 1270, 5, 61, 0, 0, 1270, 1271, 5, 126, 0, 0, 1271, 261, 1, 0, 0, 0, 1272, 1273, 5, 33, 0, 0, 1273, 1274, 5, 61, 0, 0, 1274, 263, 1, 0, 0, 0, 1275, 1276, 5, 60, 0, 0, 1276, 265, 1, 0, 0, 0, 1277, 1278, 5, 60, 0, 0, 1278, 1279, 5, 61, 0, 0, 1279, 267, 1, 0, 0, 0, 1280, 1281, 5, 62, 0, 0, 1281, 269, 1, 0, 0, 0, 1282, 1283, 5, 62, 0, 0, 1283, 1284, 5, 61, 0, 0, 1284, 271, 1, 0, 0, 0, 1285, 1286, 5, 43, 0, 0, 1286, 273, 1, 0, 0, 0, 1287, 1288, 5, 45, 0, 0, 1288, 275, 1, 0, 0, 0, 1289, 1290, 5, 42, 0, 0, 1290, 277, 1, 0, 0, 0, 1291, 1292, 5, 47, 0, 0, 1292, 279, 1, 0, 0, 0, 1293, 1294, 5, 37, 0, 0, 1294, 281, 1, 0, 0, 0, 1295, 1296, 5, 123, 0, 0, 1296, 283, 1, 0, 0, 0, 1297, 1298, 5, 125, 0, 0, 1298, 285, 1, 0, 0, 0, 1299, 1300, 5, 63, 0, 0, 1300, 1301, 5, 63, 0, 0, 1301, 287, 1, 0, 0, 0, 1302, 1303, 3, 48, 16, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 6, 136, 38, 0, 1305, 289, 1, 0, 0, 0, 1306, 1309, 3, 250, 117, 0, 1307, 1310, 3, 186, 85, 0, 1308, 1310, 3, 200, 92, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1308, 1, 0, 0, 0, 1310, 1314, 1, 0, 0, 0, 1311, 1313, 3, 202, 93, 0, 1312, 1311, 1, 0, 0, 0, 1313, 1316, 1, 0, 0, 0, 1314, 1312, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1324, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1317, 1319, 3, 250, 117, 0, 1318, 1320, 3, 184, 84, 0, 1319, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1306, 1, 0, 0, 0, 1323, 1317, 1, 0, 0, 0, 1324, 291, 1, 0, 0, 0, 1325, 1328, 3, 286, 135, 0, 1326, 1329, 3, 186, 85, 0, 1327, 1329, 3, 200, 92, 0, 1328, 1326, 1, 0, 0, 0, 1328, 1327, 1, 0, 0, 0, 1329, 1333, 1, 0, 0, 0, 1330, 1332, 3, 202, 93, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1335, 1, 0, 0, 0, 1333, 1331, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1343, 1, 0, 0, 0, 1335, 1333, 1, 0, 0, 0, 1336, 1338, 3, 286, 135, 0, 1337, 1339, 3, 184, 84, 0, 1338, 1337, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 1, 0, 0, 0, 1342, 1325, 1, 0, 0, 0, 1342, 1336, 1, 0, 0, 0, 1343, 293, 1, 0, 0, 0, 1344, 1345, 5, 91, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1347, 6, 139, 4, 0, 1347, 1348, 6, 139, 4, 0, 1348, 295, 1, 0, 0, 0, 1349, 1350, 5, 93, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1352, 6, 140, 14, 0, 1352, 1353, 6, 140, 14, 0, 1353, 297, 1, 0, 0, 0, 1354, 1355, 5, 40, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1357, 6, 141, 4, 0, 1357, 1358, 6, 141, 4, 0, 1358, 299, 1, 0, 0, 0, 1359, 1360, 5, 41, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 6, 142, 14, 0, 1362, 1363, 6, 142, 14, 0, 1363, 301, 1, 0, 0, 0, 1364, 1368, 3, 186, 85, 0, 1365, 1367, 3, 202, 93, 0, 1366, 1365, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1381, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1374, 3, 200, 92, 0, 1372, 1374, 3, 194, 89, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 1376, 1, 0, 0, 0, 1375, 1377, 3, 202, 93, 0, 1376, 1375, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1376, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1381, 1, 0, 0, 0, 1380, 1364, 1, 0, 0, 0, 1380, 1373, 1, 0, 0, 0, 1381, 303, 1, 0, 0, 0, 1382, 1384, 3, 196, 90, 0, 1383, 1385, 3, 198, 91, 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, 196, 90, 0, 1389, 305, 1, 0, 0, 0, 1390, 1391, 3, 304, 144, 0, 1391, 307, 1, 0, 0, 0, 1392, 1393, 3, 16, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 6, 146, 0, 0, 1395, 309, 1, 0, 0, 0, 1396, 1397, 3, 18, 1, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 6, 147, 0, 0, 1399, 311, 1, 0, 0, 0, 1400, 1401, 3, 20, 2, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 148, 0, 0, 1403, 313, 1, 0, 0, 0, 1404, 1405, 3, 182, 83, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 6, 149, 13, 0, 1407, 1408, 6, 149, 14, 0, 1408, 315, 1, 0, 0, 0, 1409, 1410, 3, 294, 139, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 6, 150, 22, 0, 1412, 317, 1, 0, 0, 0, 1413, 1414, 3, 296, 140, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 6, 151, 34, 0, 1416, 319, 1, 0, 0, 0, 1417, 1418, 3, 220, 102, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 6, 152, 35, 0, 1420, 321, 1, 0, 0, 0, 1421, 1422, 3, 218, 101, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 153, 39, 0, 1424, 323, 1, 0, 0, 0, 1425, 1426, 3, 222, 103, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 6, 154, 19, 0, 1428, 325, 1, 0, 0, 0, 1429, 1430, 3, 214, 99, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 6, 155, 28, 0, 1432, 327, 1, 0, 0, 0, 1433, 1434, 7, 15, 0, 0, 1434, 1435, 7, 7, 0, 0, 1435, 1436, 7, 11, 0, 0, 1436, 1437, 7, 4, 0, 0, 1437, 1438, 7, 16, 0, 0, 1438, 1439, 7, 4, 0, 0, 1439, 1440, 7, 11, 0, 0, 1440, 1441, 7, 4, 0, 0, 1441, 329, 1, 0, 0, 0, 1442, 1443, 3, 300, 142, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 6, 157, 15, 0, 1445, 1446, 6, 157, 14, 0, 1446, 331, 1, 0, 0, 0, 1447, 1451, 8, 33, 0, 0, 1448, 1449, 5, 47, 0, 0, 1449, 1451, 8, 34, 0, 0, 1450, 1447, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1451, 333, 1, 0, 0, 0, 1452, 1454, 3, 332, 158, 0, 1453, 1452, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1453, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 335, 1, 0, 0, 0, 1457, 1458, 3, 334, 159, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 6, 160, 40, 0, 1460, 337, 1, 0, 0, 0, 1461, 1462, 3, 204, 94, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1464, 6, 161, 27, 0, 1464, 339, 1, 0, 0, 0, 1465, 1466, 3, 16, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 6, 162, 0, 0, 1468, 341, 1, 0, 0, 0, 1469, 1470, 3, 18, 1, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 6, 163, 0, 0, 1472, 343, 1, 0, 0, 0, 1473, 1474, 3, 20, 2, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 6, 164, 0, 0, 1476, 345, 1, 0, 0, 0, 1477, 1478, 3, 298, 141, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 6, 165, 36, 0, 1480, 1481, 6, 165, 37, 0, 1481, 347, 1, 0, 0, 0, 1482, 1483, 3, 300, 142, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 6, 166, 15, 0, 1485, 1486, 6, 166, 14, 0, 1486, 1487, 6, 166, 14, 0, 1487, 349, 1, 0, 0, 0, 1488, 1489, 3, 182, 83, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 6, 167, 13, 0, 1491, 1492, 6, 167, 14, 0, 1492, 351, 1, 0, 0, 0, 1493, 1494, 3, 20, 2, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 168, 0, 0, 1496, 353, 1, 0, 0, 0, 1497, 1498, 3, 16, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 6, 169, 0, 0, 1500, 355, 1, 0, 0, 0, 1501, 1502, 3, 18, 1, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 6, 170, 0, 0, 1504, 357, 1, 0, 0, 0, 1505, 1506, 3, 182, 83, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 6, 171, 13, 0, 1508, 1509, 6, 171, 14, 0, 1509, 359, 1, 0, 0, 0, 1510, 1511, 7, 35, 0, 0, 1511, 1512, 7, 9, 0, 0, 1512, 1513, 7, 10, 0, 0, 1513, 1514, 7, 5, 0, 0, 1514, 361, 1, 0, 0, 0, 1515, 1516, 3, 492, 238, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 6, 173, 17, 0, 1518, 363, 1, 0, 0, 0, 1519, 1520, 3, 246, 115, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 6, 174, 16, 0, 1522, 1523, 6, 174, 14, 0, 1523, 1524, 6, 174, 4, 0, 1524, 365, 1, 0, 0, 0, 1525, 1526, 7, 22, 0, 0, 1526, 1527, 7, 17, 0, 0, 1527, 1528, 7, 10, 0, 0, 1528, 1529, 7, 5, 0, 0, 1529, 1530, 7, 6, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 6, 175, 14, 0, 1532, 1533, 6, 175, 4, 0, 1533, 367, 1, 0, 0, 0, 1534, 1535, 3, 334, 159, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 6, 176, 40, 0, 1537, 369, 1, 0, 0, 0, 1538, 1539, 3, 204, 94, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 6, 177, 27, 0, 1541, 371, 1, 0, 0, 0, 1542, 1543, 3, 220, 102, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 6, 178, 35, 0, 1545, 373, 1, 0, 0, 0, 1546, 1547, 3, 302, 143, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 6, 179, 21, 0, 1549, 375, 1, 0, 0, 0, 1550, 1551, 3, 306, 145, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 6, 180, 20, 0, 1553, 377, 1, 0, 0, 0, 1554, 1555, 3, 16, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 6, 181, 0, 0, 1557, 379, 1, 0, 0, 0, 1558, 1559, 3, 18, 1, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 6, 182, 0, 0, 1561, 381, 1, 0, 0, 0, 1562, 1563, 3, 20, 2, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1565, 6, 183, 0, 0, 1565, 383, 1, 0, 0, 0, 1566, 1567, 3, 182, 83, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1569, 6, 184, 13, 0, 1569, 1570, 6, 184, 14, 0, 1570, 385, 1, 0, 0, 0, 1571, 1572, 3, 300, 142, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 185, 15, 0, 1574, 1575, 6, 185, 14, 0, 1575, 1576, 6, 185, 14, 0, 1576, 387, 1, 0, 0, 0, 1577, 1578, 3, 220, 102, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 6, 186, 35, 0, 1580, 389, 1, 0, 0, 0, 1581, 1582, 3, 222, 103, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 6, 187, 19, 0, 1584, 391, 1, 0, 0, 0, 1585, 1586, 3, 226, 105, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 6, 188, 18, 0, 1588, 393, 1, 0, 0, 0, 1589, 1590, 3, 246, 115, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 6, 189, 16, 0, 1592, 1593, 6, 189, 41, 0, 1593, 395, 1, 0, 0, 0, 1594, 1595, 3, 334, 159, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 190, 40, 0, 1597, 397, 1, 0, 0, 0, 1598, 1599, 3, 204, 94, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 191, 27, 0, 1601, 399, 1, 0, 0, 0, 1602, 1603, 3, 16, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 192, 0, 0, 1605, 401, 1, 0, 0, 0, 1606, 1607, 3, 18, 1, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 193, 0, 0, 1609, 403, 1, 0, 0, 0, 1610, 1611, 3, 20, 2, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 6, 194, 0, 0, 1613, 405, 1, 0, 0, 0, 1614, 1615, 3, 182, 83, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 6, 195, 13, 0, 1617, 1618, 6, 195, 14, 0, 1618, 1619, 6, 195, 14, 0, 1619, 407, 1, 0, 0, 0, 1620, 1621, 3, 300, 142, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 6, 196, 15, 0, 1623, 1624, 6, 196, 14, 0, 1624, 1625, 6, 196, 14, 0, 1625, 1626, 6, 196, 14, 0, 1626, 409, 1, 0, 0, 0, 1627, 1628, 3, 222, 103, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 6, 197, 19, 0, 1630, 411, 1, 0, 0, 0, 1631, 1632, 3, 226, 105, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 198, 18, 0, 1634, 413, 1, 0, 0, 0, 1635, 1636, 3, 466, 225, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 199, 29, 0, 1638, 415, 1, 0, 0, 0, 1639, 1640, 3, 16, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 200, 0, 0, 1642, 417, 1, 0, 0, 0, 1643, 1644, 3, 18, 1, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 201, 0, 0, 1646, 419, 1, 0, 0, 0, 1647, 1648, 3, 20, 2, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1650, 6, 202, 0, 0, 1650, 421, 1, 0, 0, 0, 1651, 1652, 3, 182, 83, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 203, 13, 0, 1654, 1655, 6, 203, 14, 0, 1655, 423, 1, 0, 0, 0, 1656, 1657, 3, 300, 142, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1659, 6, 204, 15, 0, 1659, 1660, 6, 204, 14, 0, 1660, 1661, 6, 204, 14, 0, 1661, 425, 1, 0, 0, 0, 1662, 1663, 3, 226, 105, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1665, 6, 205, 18, 0, 1665, 427, 1, 0, 0, 0, 1666, 1667, 3, 250, 117, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1669, 6, 206, 30, 0, 1669, 429, 1, 0, 0, 0, 1670, 1671, 3, 290, 137, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 6, 207, 31, 0, 1673, 431, 1, 0, 0, 0, 1674, 1675, 3, 286, 135, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1677, 6, 208, 32, 0, 1677, 433, 1, 0, 0, 0, 1678, 1679, 3, 292, 138, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 6, 209, 33, 0, 1681, 435, 1, 0, 0, 0, 1682, 1683, 3, 306, 145, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 210, 20, 0, 1685, 437, 1, 0, 0, 0, 1686, 1687, 3, 302, 143, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 211, 21, 0, 1689, 439, 1, 0, 0, 0, 1690, 1691, 3, 16, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 6, 212, 0, 0, 1693, 441, 1, 0, 0, 0, 1694, 1695, 3, 18, 1, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 6, 213, 0, 0, 1697, 443, 1, 0, 0, 0, 1698, 1699, 3, 20, 2, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 6, 214, 0, 0, 1701, 445, 1, 0, 0, 0, 1702, 1703, 3, 182, 83, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 6, 215, 13, 0, 1705, 1706, 6, 215, 14, 0, 1706, 447, 1, 0, 0, 0, 1707, 1708, 3, 300, 142, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 216, 15, 0, 1710, 1711, 6, 216, 14, 0, 1711, 1712, 6, 216, 14, 0, 1712, 449, 1, 0, 0, 0, 1713, 1714, 3, 226, 105, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 6, 217, 18, 0, 1716, 451, 1, 0, 0, 0, 1717, 1718, 3, 222, 103, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 6, 218, 19, 0, 1720, 453, 1, 0, 0, 0, 1721, 1722, 3, 250, 117, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 6, 219, 30, 0, 1724, 455, 1, 0, 0, 0, 1725, 1726, 3, 290, 137, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 220, 31, 0, 1728, 457, 1, 0, 0, 0, 1729, 1730, 3, 286, 135, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 6, 221, 32, 0, 1732, 459, 1, 0, 0, 0, 1733, 1734, 3, 292, 138, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 222, 33, 0, 1736, 461, 1, 0, 0, 0, 1737, 1742, 3, 186, 85, 0, 1738, 1742, 3, 184, 84, 0, 1739, 1742, 3, 200, 92, 0, 1740, 1742, 3, 276, 130, 0, 1741, 1737, 1, 0, 0, 0, 1741, 1738, 1, 0, 0, 0, 1741, 1739, 1, 0, 0, 0, 1741, 1740, 1, 0, 0, 0, 1742, 463, 1, 0, 0, 0, 1743, 1746, 3, 186, 85, 0, 1744, 1746, 3, 276, 130, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1744, 1, 0, 0, 0, 1746, 1750, 1, 0, 0, 0, 1747, 1749, 3, 462, 223, 0, 1748, 1747, 1, 0, 0, 0, 1749, 1752, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1763, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 1756, 3, 200, 92, 0, 1754, 1756, 3, 194, 89, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1754, 1, 0, 0, 0, 1756, 1758, 1, 0, 0, 0, 1757, 1759, 3, 462, 223, 0, 1758, 1757, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1745, 1, 0, 0, 0, 1762, 1755, 1, 0, 0, 0, 1763, 465, 1, 0, 0, 0, 1764, 1767, 3, 464, 224, 0, 1765, 1767, 3, 304, 144, 0, 1766, 1764, 1, 0, 0, 0, 1766, 1765, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1766, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 467, 1, 0, 0, 0, 1770, 1771, 3, 16, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 6, 226, 0, 0, 1773, 469, 1, 0, 0, 0, 1774, 1775, 3, 18, 1, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 6, 227, 0, 0, 1777, 471, 1, 0, 0, 0, 1778, 1779, 3, 20, 2, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 6, 228, 0, 0, 1781, 473, 1, 0, 0, 0, 1782, 1783, 3, 182, 83, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 6, 229, 13, 0, 1785, 1786, 6, 229, 14, 0, 1786, 475, 1, 0, 0, 0, 1787, 1788, 3, 300, 142, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 6, 230, 15, 0, 1790, 1791, 6, 230, 14, 0, 1791, 1792, 6, 230, 14, 0, 1792, 477, 1, 0, 0, 0, 1793, 1794, 3, 214, 99, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 6, 231, 28, 0, 1796, 479, 1, 0, 0, 0, 1797, 1798, 3, 222, 103, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 6, 232, 19, 0, 1800, 481, 1, 0, 0, 0, 1801, 1802, 3, 226, 105, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 6, 233, 18, 0, 1804, 483, 1, 0, 0, 0, 1805, 1806, 3, 250, 117, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 6, 234, 30, 0, 1808, 485, 1, 0, 0, 0, 1809, 1810, 3, 290, 137, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 6, 235, 31, 0, 1812, 487, 1, 0, 0, 0, 1813, 1814, 3, 286, 135, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 6, 236, 32, 0, 1816, 489, 1, 0, 0, 0, 1817, 1818, 3, 292, 138, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 6, 237, 33, 0, 1820, 491, 1, 0, 0, 0, 1821, 1822, 7, 4, 0, 0, 1822, 1823, 7, 17, 0, 0, 1823, 493, 1, 0, 0, 0, 1824, 1825, 3, 466, 225, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 6, 239, 29, 0, 1827, 495, 1, 0, 0, 0, 1828, 1829, 3, 16, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 6, 240, 0, 0, 1831, 497, 1, 0, 0, 0, 1832, 1833, 3, 18, 1, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1835, 6, 241, 0, 0, 1835, 499, 1, 0, 0, 0, 1836, 1837, 3, 20, 2, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 6, 242, 0, 0, 1839, 501, 1, 0, 0, 0, 1840, 1841, 3, 182, 83, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1843, 6, 243, 13, 0, 1843, 1844, 6, 243, 14, 0, 1844, 503, 1, 0, 0, 0, 1845, 1846, 7, 10, 0, 0, 1846, 1847, 7, 5, 0, 0, 1847, 1848, 7, 21, 0, 0, 1848, 1849, 7, 9, 0, 0, 1849, 505, 1, 0, 0, 0, 1850, 1851, 3, 16, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 6, 245, 0, 0, 1853, 507, 1, 0, 0, 0, 1854, 1855, 3, 18, 1, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, 6, 246, 0, 0, 1857, 509, 1, 0, 0, 0, 1858, 1859, 3, 20, 2, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 6, 247, 0, 0, 1861, 511, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 518, 522, 525, 534, 536, 547, 824, 906, 910, 915, 1016, 1018, 1069, 1074, 1083, 1090, 1095, 1097, 1108, 1116, 1119, 1121, 1126, 1131, 1137, 1144, 1149, 1155, 1158, 1166, 1170, 1309, 1314, 1321, 1323, 1328, 1333, 1340, 1342, 1368, 1373, 1378, 1380, 1386, 1450, 1455, 1741, 1745, 1750, 1755, 1760, 1762, 1766, 1768, 42, 0, 1, 0, 5, 1, 0, 5, 2, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 10, 0, 5, 12, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 7, 52, 0, 4, 0, 0, 7, 100, 0, 7, 74, 0, 7, 132, 0, 7, 64, 0, 7, 62, 0, 7, 102, 0, 7, 101, 0, 7, 97, 0, 5, 4, 0, 5, 3, 0, 7, 79, 0, 7, 38, 0, 7, 53, 0, 7, 58, 0, 7, 128, 0, 7, 76, 0, 7, 95, 0, 7, 94, 0, 7, 96, 0, 7, 98, 0, 7, 61, 0, 7, 99, 0, 5, 0, 0, 7, 17, 0, 7, 60, 0, 7, 107, 0, 5, 11, 0] \ No newline at end of file +[4, 0, 147, 1959, 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, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 546, 8, 0, 10, 0, 12, 0, 549, 9, 0, 1, 0, 3, 0, 552, 8, 0, 1, 0, 3, 0, 555, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 564, 8, 1, 10, 1, 12, 1, 567, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 575, 8, 2, 11, 2, 12, 2, 576, 1, 2, 1, 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, 4, 1, 4, 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, 5, 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, 7, 1, 7, 1, 7, 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, 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, 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, 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, 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, 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, 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, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 4, 33, 852, 8, 33, 11, 33, 12, 33, 853, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 4, 51, 934, 8, 51, 11, 51, 12, 51, 935, 1, 51, 1, 51, 3, 51, 940, 8, 51, 1, 51, 4, 51, 943, 8, 51, 11, 51, 12, 51, 944, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 4, 74, 1046, 8, 74, 11, 74, 12, 74, 1047, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 1099, 8, 88, 1, 88, 4, 88, 1102, 8, 88, 11, 88, 12, 88, 1103, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 3, 91, 1113, 8, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 3, 93, 1120, 8, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1125, 8, 94, 10, 94, 12, 94, 1128, 9, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 1136, 8, 94, 10, 94, 12, 94, 1139, 9, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1146, 8, 94, 1, 94, 3, 94, 1149, 8, 94, 3, 94, 1151, 8, 94, 1, 95, 4, 95, 1154, 8, 95, 11, 95, 12, 95, 1155, 1, 96, 4, 96, 1159, 8, 96, 11, 96, 12, 96, 1160, 1, 96, 1, 96, 5, 96, 1165, 8, 96, 10, 96, 12, 96, 1168, 9, 96, 1, 96, 1, 96, 4, 96, 1172, 8, 96, 11, 96, 12, 96, 1173, 1, 96, 4, 96, 1177, 8, 96, 11, 96, 12, 96, 1178, 1, 96, 1, 96, 5, 96, 1183, 8, 96, 10, 96, 12, 96, 1186, 9, 96, 3, 96, 1188, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 4, 96, 1194, 8, 96, 11, 96, 12, 96, 1195, 1, 96, 1, 96, 3, 96, 1200, 8, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 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, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 133, 1, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 3, 137, 1339, 8, 137, 1, 137, 5, 137, 1342, 8, 137, 10, 137, 12, 137, 1345, 9, 137, 1, 137, 1, 137, 4, 137, 1349, 8, 137, 11, 137, 12, 137, 1350, 3, 137, 1353, 8, 137, 1, 138, 1, 138, 1, 138, 3, 138, 1358, 8, 138, 1, 138, 5, 138, 1361, 8, 138, 10, 138, 12, 138, 1364, 9, 138, 1, 138, 1, 138, 4, 138, 1368, 8, 138, 11, 138, 12, 138, 1369, 3, 138, 1372, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 5, 143, 1396, 8, 143, 10, 143, 12, 143, 1399, 9, 143, 1, 143, 1, 143, 3, 143, 1403, 8, 143, 1, 143, 4, 143, 1406, 8, 143, 11, 143, 12, 143, 1407, 3, 143, 1410, 8, 143, 1, 144, 1, 144, 4, 144, 1414, 8, 144, 11, 144, 12, 144, 1415, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 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, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 3, 158, 1480, 8, 158, 1, 159, 4, 159, 1483, 8, 159, 11, 159, 12, 159, 1484, 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, 165, 1, 166, 1, 166, 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, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 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, 177, 1, 177, 1, 178, 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, 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, 1, 186, 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, 188, 1, 189, 1, 189, 1, 189, 1, 189, 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, 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, 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, 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, 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, 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, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 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, 225, 1, 225, 1, 225, 1, 225, 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, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 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, 3, 237, 1839, 8, 237, 1, 238, 1, 238, 3, 238, 1843, 8, 238, 1, 238, 5, 238, 1846, 8, 238, 10, 238, 12, 238, 1849, 9, 238, 1, 238, 1, 238, 3, 238, 1853, 8, 238, 1, 238, 4, 238, 1856, 8, 238, 11, 238, 12, 238, 1857, 3, 238, 1860, 8, 238, 1, 239, 1, 239, 4, 239, 1864, 8, 239, 11, 239, 12, 239, 1865, 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, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 2, 565, 1137, 0, 262, 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, 33, 83, 34, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 101, 35, 103, 36, 105, 37, 107, 0, 109, 0, 111, 0, 113, 0, 115, 0, 117, 0, 119, 38, 121, 0, 123, 0, 125, 39, 127, 40, 129, 41, 131, 0, 133, 0, 135, 0, 137, 0, 139, 0, 141, 0, 143, 0, 145, 0, 147, 0, 149, 0, 151, 0, 153, 0, 155, 42, 157, 43, 159, 44, 161, 0, 163, 0, 165, 45, 167, 46, 169, 47, 171, 48, 173, 0, 175, 0, 177, 49, 179, 50, 181, 51, 183, 52, 185, 0, 187, 0, 189, 0, 191, 0, 193, 0, 195, 0, 197, 0, 199, 0, 201, 0, 203, 0, 205, 53, 207, 54, 209, 55, 211, 56, 213, 57, 215, 58, 217, 59, 219, 60, 221, 61, 223, 62, 225, 63, 227, 64, 229, 65, 231, 66, 233, 67, 235, 68, 237, 69, 239, 70, 241, 71, 243, 72, 245, 73, 247, 74, 249, 75, 251, 76, 253, 77, 255, 78, 257, 79, 259, 80, 261, 81, 263, 82, 265, 83, 267, 84, 269, 85, 271, 86, 273, 87, 275, 88, 277, 89, 279, 90, 281, 91, 283, 92, 285, 93, 287, 94, 289, 0, 291, 95, 293, 96, 295, 97, 297, 98, 299, 99, 301, 100, 303, 101, 305, 0, 307, 102, 309, 103, 311, 104, 313, 105, 315, 0, 317, 0, 319, 0, 321, 0, 323, 0, 325, 0, 327, 0, 329, 106, 331, 0, 333, 0, 335, 107, 337, 0, 339, 0, 341, 108, 343, 109, 345, 110, 347, 0, 349, 0, 351, 0, 353, 111, 355, 112, 357, 113, 359, 0, 361, 0, 363, 114, 365, 115, 367, 116, 369, 117, 371, 118, 373, 0, 375, 0, 377, 0, 379, 0, 381, 119, 383, 120, 385, 121, 387, 0, 389, 122, 391, 0, 393, 0, 395, 123, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 124, 409, 125, 411, 126, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 127, 431, 128, 433, 129, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 130, 447, 131, 449, 132, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 0, 463, 0, 465, 0, 467, 0, 469, 133, 471, 134, 473, 135, 475, 0, 477, 0, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 136, 497, 137, 499, 138, 501, 139, 503, 0, 505, 0, 507, 0, 509, 0, 511, 0, 513, 0, 515, 0, 517, 0, 519, 0, 521, 140, 523, 0, 525, 141, 527, 142, 529, 143, 531, 0, 533, 144, 535, 145, 537, 146, 539, 147, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 65, 65, 97, 97, 2, 0, 78, 78, 110, 110, 2, 0, 71, 71, 103, 103, 2, 0, 69, 69, 101, 101, 2, 0, 80, 80, 112, 112, 2, 0, 79, 79, 111, 111, 2, 0, 73, 73, 105, 105, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 88, 88, 120, 120, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 86, 86, 118, 118, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 70, 70, 102, 102, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 12, 0, 9, 10, 13, 13, 32, 32, 34, 35, 40, 41, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 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, 12, 0, 9, 10, 13, 13, 32, 32, 34, 34, 40, 41, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 2, 0, 74, 74, 106, 106, 1989, 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, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 1, 85, 1, 0, 0, 0, 1, 87, 1, 0, 0, 0, 1, 89, 1, 0, 0, 0, 1, 91, 1, 0, 0, 0, 1, 93, 1, 0, 0, 0, 1, 95, 1, 0, 0, 0, 1, 97, 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, 2, 107, 1, 0, 0, 0, 2, 109, 1, 0, 0, 0, 2, 111, 1, 0, 0, 0, 2, 113, 1, 0, 0, 0, 2, 115, 1, 0, 0, 0, 2, 119, 1, 0, 0, 0, 2, 121, 1, 0, 0, 0, 2, 123, 1, 0, 0, 0, 2, 125, 1, 0, 0, 0, 2, 127, 1, 0, 0, 0, 2, 129, 1, 0, 0, 0, 3, 131, 1, 0, 0, 0, 3, 133, 1, 0, 0, 0, 3, 135, 1, 0, 0, 0, 3, 137, 1, 0, 0, 0, 3, 139, 1, 0, 0, 0, 3, 141, 1, 0, 0, 0, 3, 143, 1, 0, 0, 0, 3, 145, 1, 0, 0, 0, 3, 147, 1, 0, 0, 0, 3, 149, 1, 0, 0, 0, 3, 151, 1, 0, 0, 0, 3, 153, 1, 0, 0, 0, 3, 155, 1, 0, 0, 0, 3, 157, 1, 0, 0, 0, 3, 159, 1, 0, 0, 0, 4, 161, 1, 0, 0, 0, 4, 163, 1, 0, 0, 0, 4, 165, 1, 0, 0, 0, 4, 167, 1, 0, 0, 0, 4, 169, 1, 0, 0, 0, 4, 171, 1, 0, 0, 0, 5, 173, 1, 0, 0, 0, 5, 175, 1, 0, 0, 0, 5, 177, 1, 0, 0, 0, 5, 179, 1, 0, 0, 0, 5, 181, 1, 0, 0, 0, 6, 183, 1, 0, 0, 0, 6, 205, 1, 0, 0, 0, 6, 207, 1, 0, 0, 0, 6, 209, 1, 0, 0, 0, 6, 211, 1, 0, 0, 0, 6, 213, 1, 0, 0, 0, 6, 215, 1, 0, 0, 0, 6, 217, 1, 0, 0, 0, 6, 219, 1, 0, 0, 0, 6, 221, 1, 0, 0, 0, 6, 223, 1, 0, 0, 0, 6, 225, 1, 0, 0, 0, 6, 227, 1, 0, 0, 0, 6, 229, 1, 0, 0, 0, 6, 231, 1, 0, 0, 0, 6, 233, 1, 0, 0, 0, 6, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 6, 239, 1, 0, 0, 0, 6, 241, 1, 0, 0, 0, 6, 243, 1, 0, 0, 0, 6, 245, 1, 0, 0, 0, 6, 247, 1, 0, 0, 0, 6, 249, 1, 0, 0, 0, 6, 251, 1, 0, 0, 0, 6, 253, 1, 0, 0, 0, 6, 255, 1, 0, 0, 0, 6, 257, 1, 0, 0, 0, 6, 259, 1, 0, 0, 0, 6, 261, 1, 0, 0, 0, 6, 263, 1, 0, 0, 0, 6, 265, 1, 0, 0, 0, 6, 267, 1, 0, 0, 0, 6, 269, 1, 0, 0, 0, 6, 271, 1, 0, 0, 0, 6, 273, 1, 0, 0, 0, 6, 275, 1, 0, 0, 0, 6, 277, 1, 0, 0, 0, 6, 279, 1, 0, 0, 0, 6, 281, 1, 0, 0, 0, 6, 283, 1, 0, 0, 0, 6, 285, 1, 0, 0, 0, 6, 287, 1, 0, 0, 0, 6, 289, 1, 0, 0, 0, 6, 291, 1, 0, 0, 0, 6, 293, 1, 0, 0, 0, 6, 295, 1, 0, 0, 0, 6, 297, 1, 0, 0, 0, 6, 299, 1, 0, 0, 0, 6, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 307, 1, 0, 0, 0, 6, 309, 1, 0, 0, 0, 6, 311, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 7, 315, 1, 0, 0, 0, 7, 317, 1, 0, 0, 0, 7, 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, 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, 8, 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, 9, 359, 1, 0, 0, 0, 9, 361, 1, 0, 0, 0, 9, 363, 1, 0, 0, 0, 9, 365, 1, 0, 0, 0, 9, 367, 1, 0, 0, 0, 9, 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, 9, 381, 1, 0, 0, 0, 9, 383, 1, 0, 0, 0, 9, 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, 10, 395, 1, 0, 0, 0, 10, 397, 1, 0, 0, 0, 10, 399, 1, 0, 0, 0, 10, 401, 1, 0, 0, 0, 10, 403, 1, 0, 0, 0, 10, 405, 1, 0, 0, 0, 10, 407, 1, 0, 0, 0, 10, 409, 1, 0, 0, 0, 10, 411, 1, 0, 0, 0, 11, 413, 1, 0, 0, 0, 11, 415, 1, 0, 0, 0, 11, 417, 1, 0, 0, 0, 11, 419, 1, 0, 0, 0, 11, 421, 1, 0, 0, 0, 11, 423, 1, 0, 0, 0, 11, 425, 1, 0, 0, 0, 11, 427, 1, 0, 0, 0, 11, 429, 1, 0, 0, 0, 11, 431, 1, 0, 0, 0, 11, 433, 1, 0, 0, 0, 12, 435, 1, 0, 0, 0, 12, 437, 1, 0, 0, 0, 12, 439, 1, 0, 0, 0, 12, 441, 1, 0, 0, 0, 12, 443, 1, 0, 0, 0, 12, 445, 1, 0, 0, 0, 12, 447, 1, 0, 0, 0, 12, 449, 1, 0, 0, 0, 13, 451, 1, 0, 0, 0, 13, 453, 1, 0, 0, 0, 13, 455, 1, 0, 0, 0, 13, 457, 1, 0, 0, 0, 13, 459, 1, 0, 0, 0, 13, 461, 1, 0, 0, 0, 13, 463, 1, 0, 0, 0, 13, 465, 1, 0, 0, 0, 13, 467, 1, 0, 0, 0, 13, 469, 1, 0, 0, 0, 13, 471, 1, 0, 0, 0, 13, 473, 1, 0, 0, 0, 14, 475, 1, 0, 0, 0, 14, 477, 1, 0, 0, 0, 14, 479, 1, 0, 0, 0, 14, 481, 1, 0, 0, 0, 14, 483, 1, 0, 0, 0, 14, 485, 1, 0, 0, 0, 14, 487, 1, 0, 0, 0, 14, 489, 1, 0, 0, 0, 14, 495, 1, 0, 0, 0, 14, 497, 1, 0, 0, 0, 14, 499, 1, 0, 0, 0, 14, 501, 1, 0, 0, 0, 15, 503, 1, 0, 0, 0, 15, 505, 1, 0, 0, 0, 15, 507, 1, 0, 0, 0, 15, 509, 1, 0, 0, 0, 15, 511, 1, 0, 0, 0, 15, 513, 1, 0, 0, 0, 15, 515, 1, 0, 0, 0, 15, 517, 1, 0, 0, 0, 15, 519, 1, 0, 0, 0, 15, 521, 1, 0, 0, 0, 15, 523, 1, 0, 0, 0, 15, 525, 1, 0, 0, 0, 15, 527, 1, 0, 0, 0, 15, 529, 1, 0, 0, 0, 16, 531, 1, 0, 0, 0, 16, 533, 1, 0, 0, 0, 16, 535, 1, 0, 0, 0, 16, 537, 1, 0, 0, 0, 16, 539, 1, 0, 0, 0, 17, 541, 1, 0, 0, 0, 19, 558, 1, 0, 0, 0, 21, 574, 1, 0, 0, 0, 23, 580, 1, 0, 0, 0, 25, 595, 1, 0, 0, 0, 27, 604, 1, 0, 0, 0, 29, 615, 1, 0, 0, 0, 31, 628, 1, 0, 0, 0, 33, 638, 1, 0, 0, 0, 35, 645, 1, 0, 0, 0, 37, 652, 1, 0, 0, 0, 39, 660, 1, 0, 0, 0, 41, 669, 1, 0, 0, 0, 43, 675, 1, 0, 0, 0, 45, 684, 1, 0, 0, 0, 47, 691, 1, 0, 0, 0, 49, 699, 1, 0, 0, 0, 51, 707, 1, 0, 0, 0, 53, 722, 1, 0, 0, 0, 55, 729, 1, 0, 0, 0, 57, 735, 1, 0, 0, 0, 59, 742, 1, 0, 0, 0, 61, 750, 1, 0, 0, 0, 63, 759, 1, 0, 0, 0, 65, 767, 1, 0, 0, 0, 67, 775, 1, 0, 0, 0, 69, 784, 1, 0, 0, 0, 71, 796, 1, 0, 0, 0, 73, 808, 1, 0, 0, 0, 75, 815, 1, 0, 0, 0, 77, 822, 1, 0, 0, 0, 79, 834, 1, 0, 0, 0, 81, 843, 1, 0, 0, 0, 83, 851, 1, 0, 0, 0, 85, 857, 1, 0, 0, 0, 87, 862, 1, 0, 0, 0, 89, 868, 1, 0, 0, 0, 91, 872, 1, 0, 0, 0, 93, 876, 1, 0, 0, 0, 95, 880, 1, 0, 0, 0, 97, 884, 1, 0, 0, 0, 99, 888, 1, 0, 0, 0, 101, 892, 1, 0, 0, 0, 103, 896, 1, 0, 0, 0, 105, 900, 1, 0, 0, 0, 107, 904, 1, 0, 0, 0, 109, 909, 1, 0, 0, 0, 111, 915, 1, 0, 0, 0, 113, 920, 1, 0, 0, 0, 115, 925, 1, 0, 0, 0, 117, 930, 1, 0, 0, 0, 119, 939, 1, 0, 0, 0, 121, 946, 1, 0, 0, 0, 123, 950, 1, 0, 0, 0, 125, 954, 1, 0, 0, 0, 127, 958, 1, 0, 0, 0, 129, 962, 1, 0, 0, 0, 131, 966, 1, 0, 0, 0, 133, 972, 1, 0, 0, 0, 135, 979, 1, 0, 0, 0, 137, 983, 1, 0, 0, 0, 139, 987, 1, 0, 0, 0, 141, 991, 1, 0, 0, 0, 143, 995, 1, 0, 0, 0, 145, 999, 1, 0, 0, 0, 147, 1003, 1, 0, 0, 0, 149, 1007, 1, 0, 0, 0, 151, 1011, 1, 0, 0, 0, 153, 1015, 1, 0, 0, 0, 155, 1019, 1, 0, 0, 0, 157, 1023, 1, 0, 0, 0, 159, 1027, 1, 0, 0, 0, 161, 1031, 1, 0, 0, 0, 163, 1036, 1, 0, 0, 0, 165, 1045, 1, 0, 0, 0, 167, 1049, 1, 0, 0, 0, 169, 1053, 1, 0, 0, 0, 171, 1057, 1, 0, 0, 0, 173, 1061, 1, 0, 0, 0, 175, 1066, 1, 0, 0, 0, 177, 1071, 1, 0, 0, 0, 179, 1075, 1, 0, 0, 0, 181, 1079, 1, 0, 0, 0, 183, 1083, 1, 0, 0, 0, 185, 1087, 1, 0, 0, 0, 187, 1089, 1, 0, 0, 0, 189, 1091, 1, 0, 0, 0, 191, 1094, 1, 0, 0, 0, 193, 1096, 1, 0, 0, 0, 195, 1105, 1, 0, 0, 0, 197, 1107, 1, 0, 0, 0, 199, 1112, 1, 0, 0, 0, 201, 1114, 1, 0, 0, 0, 203, 1119, 1, 0, 0, 0, 205, 1150, 1, 0, 0, 0, 207, 1153, 1, 0, 0, 0, 209, 1199, 1, 0, 0, 0, 211, 1201, 1, 0, 0, 0, 213, 1205, 1, 0, 0, 0, 215, 1209, 1, 0, 0, 0, 217, 1211, 1, 0, 0, 0, 219, 1214, 1, 0, 0, 0, 221, 1217, 1, 0, 0, 0, 223, 1219, 1, 0, 0, 0, 225, 1221, 1, 0, 0, 0, 227, 1226, 1, 0, 0, 0, 229, 1228, 1, 0, 0, 0, 231, 1234, 1, 0, 0, 0, 233, 1240, 1, 0, 0, 0, 235, 1243, 1, 0, 0, 0, 237, 1246, 1, 0, 0, 0, 239, 1251, 1, 0, 0, 0, 241, 1256, 1, 0, 0, 0, 243, 1260, 1, 0, 0, 0, 245, 1265, 1, 0, 0, 0, 247, 1271, 1, 0, 0, 0, 249, 1274, 1, 0, 0, 0, 251, 1277, 1, 0, 0, 0, 253, 1279, 1, 0, 0, 0, 255, 1285, 1, 0, 0, 0, 257, 1290, 1, 0, 0, 0, 259, 1295, 1, 0, 0, 0, 261, 1298, 1, 0, 0, 0, 263, 1301, 1, 0, 0, 0, 265, 1304, 1, 0, 0, 0, 267, 1306, 1, 0, 0, 0, 269, 1309, 1, 0, 0, 0, 271, 1311, 1, 0, 0, 0, 273, 1314, 1, 0, 0, 0, 275, 1316, 1, 0, 0, 0, 277, 1318, 1, 0, 0, 0, 279, 1320, 1, 0, 0, 0, 281, 1322, 1, 0, 0, 0, 283, 1324, 1, 0, 0, 0, 285, 1326, 1, 0, 0, 0, 287, 1328, 1, 0, 0, 0, 289, 1331, 1, 0, 0, 0, 291, 1352, 1, 0, 0, 0, 293, 1371, 1, 0, 0, 0, 295, 1373, 1, 0, 0, 0, 297, 1378, 1, 0, 0, 0, 299, 1383, 1, 0, 0, 0, 301, 1388, 1, 0, 0, 0, 303, 1409, 1, 0, 0, 0, 305, 1411, 1, 0, 0, 0, 307, 1419, 1, 0, 0, 0, 309, 1421, 1, 0, 0, 0, 311, 1425, 1, 0, 0, 0, 313, 1429, 1, 0, 0, 0, 315, 1433, 1, 0, 0, 0, 317, 1438, 1, 0, 0, 0, 319, 1442, 1, 0, 0, 0, 321, 1446, 1, 0, 0, 0, 323, 1450, 1, 0, 0, 0, 325, 1454, 1, 0, 0, 0, 327, 1458, 1, 0, 0, 0, 329, 1462, 1, 0, 0, 0, 331, 1471, 1, 0, 0, 0, 333, 1479, 1, 0, 0, 0, 335, 1482, 1, 0, 0, 0, 337, 1486, 1, 0, 0, 0, 339, 1490, 1, 0, 0, 0, 341, 1494, 1, 0, 0, 0, 343, 1498, 1, 0, 0, 0, 345, 1502, 1, 0, 0, 0, 347, 1506, 1, 0, 0, 0, 349, 1511, 1, 0, 0, 0, 351, 1517, 1, 0, 0, 0, 353, 1522, 1, 0, 0, 0, 355, 1526, 1, 0, 0, 0, 357, 1530, 1, 0, 0, 0, 359, 1534, 1, 0, 0, 0, 361, 1539, 1, 0, 0, 0, 363, 1545, 1, 0, 0, 0, 365, 1551, 1, 0, 0, 0, 367, 1557, 1, 0, 0, 0, 369, 1561, 1, 0, 0, 0, 371, 1565, 1, 0, 0, 0, 373, 1572, 1, 0, 0, 0, 375, 1578, 1, 0, 0, 0, 377, 1582, 1, 0, 0, 0, 379, 1586, 1, 0, 0, 0, 381, 1590, 1, 0, 0, 0, 383, 1594, 1, 0, 0, 0, 385, 1598, 1, 0, 0, 0, 387, 1602, 1, 0, 0, 0, 389, 1607, 1, 0, 0, 0, 391, 1612, 1, 0, 0, 0, 393, 1616, 1, 0, 0, 0, 395, 1622, 1, 0, 0, 0, 397, 1631, 1, 0, 0, 0, 399, 1635, 1, 0, 0, 0, 401, 1639, 1, 0, 0, 0, 403, 1643, 1, 0, 0, 0, 405, 1647, 1, 0, 0, 0, 407, 1651, 1, 0, 0, 0, 409, 1655, 1, 0, 0, 0, 411, 1659, 1, 0, 0, 0, 413, 1663, 1, 0, 0, 0, 415, 1668, 1, 0, 0, 0, 417, 1674, 1, 0, 0, 0, 419, 1678, 1, 0, 0, 0, 421, 1682, 1, 0, 0, 0, 423, 1686, 1, 0, 0, 0, 425, 1691, 1, 0, 0, 0, 427, 1695, 1, 0, 0, 0, 429, 1699, 1, 0, 0, 0, 431, 1703, 1, 0, 0, 0, 433, 1707, 1, 0, 0, 0, 435, 1711, 1, 0, 0, 0, 437, 1717, 1, 0, 0, 0, 439, 1724, 1, 0, 0, 0, 441, 1728, 1, 0, 0, 0, 443, 1732, 1, 0, 0, 0, 445, 1736, 1, 0, 0, 0, 447, 1740, 1, 0, 0, 0, 449, 1744, 1, 0, 0, 0, 451, 1748, 1, 0, 0, 0, 453, 1753, 1, 0, 0, 0, 455, 1759, 1, 0, 0, 0, 457, 1763, 1, 0, 0, 0, 459, 1767, 1, 0, 0, 0, 461, 1771, 1, 0, 0, 0, 463, 1775, 1, 0, 0, 0, 465, 1779, 1, 0, 0, 0, 467, 1783, 1, 0, 0, 0, 469, 1787, 1, 0, 0, 0, 471, 1791, 1, 0, 0, 0, 473, 1795, 1, 0, 0, 0, 475, 1799, 1, 0, 0, 0, 477, 1804, 1, 0, 0, 0, 479, 1810, 1, 0, 0, 0, 481, 1814, 1, 0, 0, 0, 483, 1818, 1, 0, 0, 0, 485, 1822, 1, 0, 0, 0, 487, 1826, 1, 0, 0, 0, 489, 1830, 1, 0, 0, 0, 491, 1838, 1, 0, 0, 0, 493, 1859, 1, 0, 0, 0, 495, 1863, 1, 0, 0, 0, 497, 1867, 1, 0, 0, 0, 499, 1871, 1, 0, 0, 0, 501, 1875, 1, 0, 0, 0, 503, 1879, 1, 0, 0, 0, 505, 1884, 1, 0, 0, 0, 507, 1890, 1, 0, 0, 0, 509, 1894, 1, 0, 0, 0, 511, 1898, 1, 0, 0, 0, 513, 1902, 1, 0, 0, 0, 515, 1906, 1, 0, 0, 0, 517, 1910, 1, 0, 0, 0, 519, 1914, 1, 0, 0, 0, 521, 1918, 1, 0, 0, 0, 523, 1921, 1, 0, 0, 0, 525, 1925, 1, 0, 0, 0, 527, 1929, 1, 0, 0, 0, 529, 1933, 1, 0, 0, 0, 531, 1937, 1, 0, 0, 0, 533, 1942, 1, 0, 0, 0, 535, 1947, 1, 0, 0, 0, 537, 1951, 1, 0, 0, 0, 539, 1955, 1, 0, 0, 0, 541, 542, 5, 47, 0, 0, 542, 543, 5, 47, 0, 0, 543, 547, 1, 0, 0, 0, 544, 546, 8, 0, 0, 0, 545, 544, 1, 0, 0, 0, 546, 549, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 551, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 550, 552, 5, 13, 0, 0, 551, 550, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 554, 1, 0, 0, 0, 553, 555, 5, 10, 0, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 6, 0, 0, 0, 557, 18, 1, 0, 0, 0, 558, 559, 5, 47, 0, 0, 559, 560, 5, 42, 0, 0, 560, 565, 1, 0, 0, 0, 561, 564, 3, 19, 1, 0, 562, 564, 9, 0, 0, 0, 563, 561, 1, 0, 0, 0, 563, 562, 1, 0, 0, 0, 564, 567, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 568, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 568, 569, 5, 42, 0, 0, 569, 570, 5, 47, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 6, 1, 0, 0, 572, 20, 1, 0, 0, 0, 573, 575, 7, 1, 0, 0, 574, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 6, 2, 0, 0, 579, 22, 1, 0, 0, 0, 580, 581, 7, 2, 0, 0, 581, 582, 7, 3, 0, 0, 582, 583, 7, 4, 0, 0, 583, 584, 7, 5, 0, 0, 584, 585, 7, 6, 0, 0, 585, 586, 7, 7, 0, 0, 586, 587, 5, 95, 0, 0, 587, 588, 7, 8, 0, 0, 588, 589, 7, 9, 0, 0, 589, 590, 7, 10, 0, 0, 590, 591, 7, 5, 0, 0, 591, 592, 7, 11, 0, 0, 592, 593, 1, 0, 0, 0, 593, 594, 6, 3, 1, 0, 594, 24, 1, 0, 0, 0, 595, 596, 7, 7, 0, 0, 596, 597, 7, 5, 0, 0, 597, 598, 7, 12, 0, 0, 598, 599, 7, 10, 0, 0, 599, 600, 7, 2, 0, 0, 600, 601, 7, 3, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 6, 4, 2, 0, 603, 26, 1, 0, 0, 0, 604, 605, 4, 5, 0, 0, 605, 606, 7, 7, 0, 0, 606, 607, 7, 13, 0, 0, 607, 608, 7, 8, 0, 0, 608, 609, 7, 14, 0, 0, 609, 610, 7, 4, 0, 0, 610, 611, 7, 10, 0, 0, 611, 612, 7, 5, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 6, 5, 3, 0, 614, 28, 1, 0, 0, 0, 615, 616, 7, 2, 0, 0, 616, 617, 7, 9, 0, 0, 617, 618, 7, 15, 0, 0, 618, 619, 7, 8, 0, 0, 619, 620, 7, 14, 0, 0, 620, 621, 7, 7, 0, 0, 621, 622, 7, 11, 0, 0, 622, 623, 7, 10, 0, 0, 623, 624, 7, 9, 0, 0, 624, 625, 7, 5, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 6, 6, 4, 0, 627, 30, 1, 0, 0, 0, 628, 629, 7, 16, 0, 0, 629, 630, 7, 10, 0, 0, 630, 631, 7, 17, 0, 0, 631, 632, 7, 17, 0, 0, 632, 633, 7, 7, 0, 0, 633, 634, 7, 2, 0, 0, 634, 635, 7, 11, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 6, 7, 4, 0, 637, 32, 1, 0, 0, 0, 638, 639, 7, 7, 0, 0, 639, 640, 7, 18, 0, 0, 640, 641, 7, 4, 0, 0, 641, 642, 7, 14, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 6, 8, 4, 0, 644, 34, 1, 0, 0, 0, 645, 646, 7, 6, 0, 0, 646, 647, 7, 12, 0, 0, 647, 648, 7, 9, 0, 0, 648, 649, 7, 19, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 6, 9, 4, 0, 651, 36, 1, 0, 0, 0, 652, 653, 7, 14, 0, 0, 653, 654, 7, 10, 0, 0, 654, 655, 7, 15, 0, 0, 655, 656, 7, 10, 0, 0, 656, 657, 7, 11, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 6, 10, 4, 0, 659, 38, 1, 0, 0, 0, 660, 661, 7, 12, 0, 0, 661, 662, 7, 7, 0, 0, 662, 663, 7, 12, 0, 0, 663, 664, 7, 4, 0, 0, 664, 665, 7, 5, 0, 0, 665, 666, 7, 19, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 6, 11, 4, 0, 668, 40, 1, 0, 0, 0, 669, 670, 7, 12, 0, 0, 670, 671, 7, 9, 0, 0, 671, 672, 7, 20, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 6, 12, 4, 0, 674, 42, 1, 0, 0, 0, 675, 676, 7, 17, 0, 0, 676, 677, 7, 4, 0, 0, 677, 678, 7, 15, 0, 0, 678, 679, 7, 8, 0, 0, 679, 680, 7, 14, 0, 0, 680, 681, 7, 7, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 6, 13, 4, 0, 683, 44, 1, 0, 0, 0, 684, 685, 7, 17, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 7, 12, 0, 0, 687, 688, 7, 11, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 6, 14, 4, 0, 690, 46, 1, 0, 0, 0, 691, 692, 7, 17, 0, 0, 692, 693, 7, 11, 0, 0, 693, 694, 7, 4, 0, 0, 694, 695, 7, 11, 0, 0, 695, 696, 7, 17, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 6, 15, 4, 0, 698, 48, 1, 0, 0, 0, 699, 700, 7, 20, 0, 0, 700, 701, 7, 3, 0, 0, 701, 702, 7, 7, 0, 0, 702, 703, 7, 12, 0, 0, 703, 704, 7, 7, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 6, 16, 4, 0, 706, 50, 1, 0, 0, 0, 707, 708, 4, 17, 1, 0, 708, 709, 7, 10, 0, 0, 709, 710, 7, 5, 0, 0, 710, 711, 7, 14, 0, 0, 711, 712, 7, 10, 0, 0, 712, 713, 7, 5, 0, 0, 713, 714, 7, 7, 0, 0, 714, 715, 7, 17, 0, 0, 715, 716, 7, 11, 0, 0, 716, 717, 7, 4, 0, 0, 717, 718, 7, 11, 0, 0, 718, 719, 7, 17, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 6, 17, 4, 0, 721, 52, 1, 0, 0, 0, 722, 723, 7, 21, 0, 0, 723, 724, 7, 12, 0, 0, 724, 725, 7, 9, 0, 0, 725, 726, 7, 15, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 6, 18, 5, 0, 728, 54, 1, 0, 0, 0, 729, 730, 4, 19, 2, 0, 730, 731, 7, 11, 0, 0, 731, 732, 7, 17, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 6, 19, 5, 0, 734, 56, 1, 0, 0, 0, 735, 736, 7, 21, 0, 0, 736, 737, 7, 9, 0, 0, 737, 738, 7, 12, 0, 0, 738, 739, 7, 19, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 6, 20, 6, 0, 741, 58, 1, 0, 0, 0, 742, 743, 4, 21, 3, 0, 743, 744, 7, 21, 0, 0, 744, 745, 7, 22, 0, 0, 745, 746, 7, 17, 0, 0, 746, 747, 7, 7, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 6, 21, 7, 0, 749, 60, 1, 0, 0, 0, 750, 751, 7, 14, 0, 0, 751, 752, 7, 9, 0, 0, 752, 753, 7, 9, 0, 0, 753, 754, 7, 19, 0, 0, 754, 755, 7, 22, 0, 0, 755, 756, 7, 8, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 6, 22, 8, 0, 758, 62, 1, 0, 0, 0, 759, 760, 4, 23, 4, 0, 760, 761, 7, 21, 0, 0, 761, 762, 7, 22, 0, 0, 762, 763, 7, 14, 0, 0, 763, 764, 7, 14, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 6, 23, 8, 0, 766, 64, 1, 0, 0, 0, 767, 768, 4, 24, 5, 0, 768, 769, 7, 14, 0, 0, 769, 770, 7, 7, 0, 0, 770, 771, 7, 21, 0, 0, 771, 772, 7, 11, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 6, 24, 8, 0, 774, 66, 1, 0, 0, 0, 775, 776, 4, 25, 6, 0, 776, 777, 7, 12, 0, 0, 777, 778, 7, 10, 0, 0, 778, 779, 7, 6, 0, 0, 779, 780, 7, 3, 0, 0, 780, 781, 7, 11, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 6, 25, 8, 0, 783, 68, 1, 0, 0, 0, 784, 785, 4, 26, 7, 0, 785, 786, 7, 14, 0, 0, 786, 787, 7, 9, 0, 0, 787, 788, 7, 9, 0, 0, 788, 789, 7, 19, 0, 0, 789, 790, 7, 22, 0, 0, 790, 791, 7, 8, 0, 0, 791, 792, 5, 95, 0, 0, 792, 793, 5, 128020, 0, 0, 793, 794, 1, 0, 0, 0, 794, 795, 6, 26, 9, 0, 795, 70, 1, 0, 0, 0, 796, 797, 7, 15, 0, 0, 797, 798, 7, 18, 0, 0, 798, 799, 5, 95, 0, 0, 799, 800, 7, 7, 0, 0, 800, 801, 7, 13, 0, 0, 801, 802, 7, 8, 0, 0, 802, 803, 7, 4, 0, 0, 803, 804, 7, 5, 0, 0, 804, 805, 7, 16, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 6, 27, 10, 0, 807, 72, 1, 0, 0, 0, 808, 809, 7, 16, 0, 0, 809, 810, 7, 12, 0, 0, 810, 811, 7, 9, 0, 0, 811, 812, 7, 8, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 6, 28, 11, 0, 814, 74, 1, 0, 0, 0, 815, 816, 7, 19, 0, 0, 816, 817, 7, 7, 0, 0, 817, 818, 7, 7, 0, 0, 818, 819, 7, 8, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 6, 29, 11, 0, 821, 76, 1, 0, 0, 0, 822, 823, 4, 30, 8, 0, 823, 824, 7, 10, 0, 0, 824, 825, 7, 5, 0, 0, 825, 826, 7, 17, 0, 0, 826, 827, 7, 10, 0, 0, 827, 828, 7, 17, 0, 0, 828, 829, 7, 11, 0, 0, 829, 830, 5, 95, 0, 0, 830, 831, 5, 128020, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 6, 30, 11, 0, 833, 78, 1, 0, 0, 0, 834, 835, 7, 12, 0, 0, 835, 836, 7, 7, 0, 0, 836, 837, 7, 5, 0, 0, 837, 838, 7, 4, 0, 0, 838, 839, 7, 15, 0, 0, 839, 840, 7, 7, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 6, 31, 12, 0, 842, 80, 1, 0, 0, 0, 843, 844, 7, 17, 0, 0, 844, 845, 7, 3, 0, 0, 845, 846, 7, 9, 0, 0, 846, 847, 7, 20, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 6, 32, 13, 0, 849, 82, 1, 0, 0, 0, 850, 852, 8, 23, 0, 0, 851, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 6, 33, 4, 0, 856, 84, 1, 0, 0, 0, 857, 858, 3, 183, 83, 0, 858, 859, 1, 0, 0, 0, 859, 860, 6, 34, 14, 0, 860, 861, 6, 34, 15, 0, 861, 86, 1, 0, 0, 0, 862, 863, 3, 301, 142, 0, 863, 864, 1, 0, 0, 0, 864, 865, 6, 35, 16, 0, 865, 866, 6, 35, 15, 0, 866, 867, 6, 35, 15, 0, 867, 88, 1, 0, 0, 0, 868, 869, 3, 247, 115, 0, 869, 870, 1, 0, 0, 0, 870, 871, 6, 36, 17, 0, 871, 90, 1, 0, 0, 0, 872, 873, 3, 521, 252, 0, 873, 874, 1, 0, 0, 0, 874, 875, 6, 37, 18, 0, 875, 92, 1, 0, 0, 0, 876, 877, 3, 227, 105, 0, 877, 878, 1, 0, 0, 0, 878, 879, 6, 38, 19, 0, 879, 94, 1, 0, 0, 0, 880, 881, 3, 223, 103, 0, 881, 882, 1, 0, 0, 0, 882, 883, 6, 39, 20, 0, 883, 96, 1, 0, 0, 0, 884, 885, 3, 307, 145, 0, 885, 886, 1, 0, 0, 0, 886, 887, 6, 40, 21, 0, 887, 98, 1, 0, 0, 0, 888, 889, 3, 303, 143, 0, 889, 890, 1, 0, 0, 0, 890, 891, 6, 41, 22, 0, 891, 100, 1, 0, 0, 0, 892, 893, 3, 17, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 6, 42, 0, 0, 895, 102, 1, 0, 0, 0, 896, 897, 3, 19, 1, 0, 897, 898, 1, 0, 0, 0, 898, 899, 6, 43, 0, 0, 899, 104, 1, 0, 0, 0, 900, 901, 3, 21, 2, 0, 901, 902, 1, 0, 0, 0, 902, 903, 6, 44, 0, 0, 903, 106, 1, 0, 0, 0, 904, 905, 3, 183, 83, 0, 905, 906, 1, 0, 0, 0, 906, 907, 6, 45, 14, 0, 907, 908, 6, 45, 15, 0, 908, 108, 1, 0, 0, 0, 909, 910, 3, 301, 142, 0, 910, 911, 1, 0, 0, 0, 911, 912, 6, 46, 16, 0, 912, 913, 6, 46, 15, 0, 913, 914, 6, 46, 15, 0, 914, 110, 1, 0, 0, 0, 915, 916, 3, 295, 139, 0, 916, 917, 1, 0, 0, 0, 917, 918, 6, 47, 23, 0, 918, 919, 6, 47, 24, 0, 919, 112, 1, 0, 0, 0, 920, 921, 3, 247, 115, 0, 921, 922, 1, 0, 0, 0, 922, 923, 6, 48, 17, 0, 923, 924, 6, 48, 25, 0, 924, 114, 1, 0, 0, 0, 925, 926, 3, 257, 120, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 49, 26, 0, 928, 929, 6, 49, 25, 0, 929, 116, 1, 0, 0, 0, 930, 931, 8, 24, 0, 0, 931, 118, 1, 0, 0, 0, 932, 934, 3, 117, 50, 0, 933, 932, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 3, 221, 102, 0, 938, 940, 1, 0, 0, 0, 939, 933, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 942, 1, 0, 0, 0, 941, 943, 3, 117, 50, 0, 942, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 120, 1, 0, 0, 0, 946, 947, 3, 119, 51, 0, 947, 948, 1, 0, 0, 0, 948, 949, 6, 52, 27, 0, 949, 122, 1, 0, 0, 0, 950, 951, 3, 205, 94, 0, 951, 952, 1, 0, 0, 0, 952, 953, 6, 53, 28, 0, 953, 124, 1, 0, 0, 0, 954, 955, 3, 17, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 6, 54, 0, 0, 957, 126, 1, 0, 0, 0, 958, 959, 3, 19, 1, 0, 959, 960, 1, 0, 0, 0, 960, 961, 6, 55, 0, 0, 961, 128, 1, 0, 0, 0, 962, 963, 3, 21, 2, 0, 963, 964, 1, 0, 0, 0, 964, 965, 6, 56, 0, 0, 965, 130, 1, 0, 0, 0, 966, 967, 3, 183, 83, 0, 967, 968, 1, 0, 0, 0, 968, 969, 6, 57, 14, 0, 969, 970, 6, 57, 15, 0, 970, 971, 6, 57, 15, 0, 971, 132, 1, 0, 0, 0, 972, 973, 3, 301, 142, 0, 973, 974, 1, 0, 0, 0, 974, 975, 6, 58, 16, 0, 975, 976, 6, 58, 15, 0, 976, 977, 6, 58, 15, 0, 977, 978, 6, 58, 15, 0, 978, 134, 1, 0, 0, 0, 979, 980, 3, 215, 99, 0, 980, 981, 1, 0, 0, 0, 981, 982, 6, 59, 29, 0, 982, 136, 1, 0, 0, 0, 983, 984, 3, 223, 103, 0, 984, 985, 1, 0, 0, 0, 985, 986, 6, 60, 20, 0, 986, 138, 1, 0, 0, 0, 987, 988, 3, 227, 105, 0, 988, 989, 1, 0, 0, 0, 989, 990, 6, 61, 19, 0, 990, 140, 1, 0, 0, 0, 991, 992, 3, 257, 120, 0, 992, 993, 1, 0, 0, 0, 993, 994, 6, 62, 26, 0, 994, 142, 1, 0, 0, 0, 995, 996, 3, 495, 239, 0, 996, 997, 1, 0, 0, 0, 997, 998, 6, 63, 30, 0, 998, 144, 1, 0, 0, 0, 999, 1000, 3, 307, 145, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 6, 64, 21, 0, 1002, 146, 1, 0, 0, 0, 1003, 1004, 3, 251, 117, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 6, 65, 31, 0, 1006, 148, 1, 0, 0, 0, 1007, 1008, 3, 291, 137, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 6, 66, 32, 0, 1010, 150, 1, 0, 0, 0, 1011, 1012, 3, 287, 135, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 6, 67, 33, 0, 1014, 152, 1, 0, 0, 0, 1015, 1016, 3, 293, 138, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 6, 68, 34, 0, 1018, 154, 1, 0, 0, 0, 1019, 1020, 3, 17, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1022, 6, 69, 0, 0, 1022, 156, 1, 0, 0, 0, 1023, 1024, 3, 19, 1, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 6, 70, 0, 0, 1026, 158, 1, 0, 0, 0, 1027, 1028, 3, 21, 2, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 6, 71, 0, 0, 1030, 160, 1, 0, 0, 0, 1031, 1032, 3, 297, 140, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 6, 72, 35, 0, 1034, 1035, 6, 72, 15, 0, 1035, 162, 1, 0, 0, 0, 1036, 1037, 3, 221, 102, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 6, 73, 36, 0, 1039, 164, 1, 0, 0, 0, 1040, 1046, 3, 195, 89, 0, 1041, 1046, 3, 185, 84, 0, 1042, 1046, 3, 227, 105, 0, 1043, 1046, 3, 187, 85, 0, 1044, 1046, 3, 201, 92, 0, 1045, 1040, 1, 0, 0, 0, 1045, 1041, 1, 0, 0, 0, 1045, 1042, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 166, 1, 0, 0, 0, 1049, 1050, 3, 17, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 6, 75, 0, 0, 1052, 168, 1, 0, 0, 0, 1053, 1054, 3, 19, 1, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 6, 76, 0, 0, 1056, 170, 1, 0, 0, 0, 1057, 1058, 3, 21, 2, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 6, 77, 0, 0, 1060, 172, 1, 0, 0, 0, 1061, 1062, 3, 299, 141, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1064, 6, 78, 37, 0, 1064, 1065, 6, 78, 38, 0, 1065, 174, 1, 0, 0, 0, 1066, 1067, 3, 183, 83, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 6, 79, 14, 0, 1069, 1070, 6, 79, 15, 0, 1070, 176, 1, 0, 0, 0, 1071, 1072, 3, 21, 2, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 6, 80, 0, 0, 1074, 178, 1, 0, 0, 0, 1075, 1076, 3, 17, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 6, 81, 0, 0, 1078, 180, 1, 0, 0, 0, 1079, 1080, 3, 19, 1, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 6, 82, 0, 0, 1082, 182, 1, 0, 0, 0, 1083, 1084, 5, 124, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 6, 83, 15, 0, 1086, 184, 1, 0, 0, 0, 1087, 1088, 7, 25, 0, 0, 1088, 186, 1, 0, 0, 0, 1089, 1090, 7, 26, 0, 0, 1090, 188, 1, 0, 0, 0, 1091, 1092, 5, 92, 0, 0, 1092, 1093, 7, 27, 0, 0, 1093, 190, 1, 0, 0, 0, 1094, 1095, 8, 28, 0, 0, 1095, 192, 1, 0, 0, 0, 1096, 1098, 7, 7, 0, 0, 1097, 1099, 7, 29, 0, 0, 1098, 1097, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1102, 3, 185, 84, 0, 1101, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1101, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 194, 1, 0, 0, 0, 1105, 1106, 5, 64, 0, 0, 1106, 196, 1, 0, 0, 0, 1107, 1108, 5, 96, 0, 0, 1108, 198, 1, 0, 0, 0, 1109, 1113, 8, 30, 0, 0, 1110, 1111, 5, 96, 0, 0, 1111, 1113, 5, 96, 0, 0, 1112, 1109, 1, 0, 0, 0, 1112, 1110, 1, 0, 0, 0, 1113, 200, 1, 0, 0, 0, 1114, 1115, 5, 95, 0, 0, 1115, 202, 1, 0, 0, 0, 1116, 1120, 3, 187, 85, 0, 1117, 1120, 3, 185, 84, 0, 1118, 1120, 3, 201, 92, 0, 1119, 1116, 1, 0, 0, 0, 1119, 1117, 1, 0, 0, 0, 1119, 1118, 1, 0, 0, 0, 1120, 204, 1, 0, 0, 0, 1121, 1126, 5, 34, 0, 0, 1122, 1125, 3, 189, 86, 0, 1123, 1125, 3, 191, 87, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1123, 1, 0, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1129, 1151, 5, 34, 0, 0, 1130, 1131, 5, 34, 0, 0, 1131, 1132, 5, 34, 0, 0, 1132, 1133, 5, 34, 0, 0, 1133, 1137, 1, 0, 0, 0, 1134, 1136, 8, 0, 0, 0, 1135, 1134, 1, 0, 0, 0, 1136, 1139, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1137, 1135, 1, 0, 0, 0, 1138, 1140, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1141, 5, 34, 0, 0, 1141, 1142, 5, 34, 0, 0, 1142, 1143, 5, 34, 0, 0, 1143, 1145, 1, 0, 0, 0, 1144, 1146, 5, 34, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1149, 5, 34, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1121, 1, 0, 0, 0, 1150, 1130, 1, 0, 0, 0, 1151, 206, 1, 0, 0, 0, 1152, 1154, 3, 185, 84, 0, 1153, 1152, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 208, 1, 0, 0, 0, 1157, 1159, 3, 185, 84, 0, 1158, 1157, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1166, 3, 227, 105, 0, 1163, 1165, 3, 185, 84, 0, 1164, 1163, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1200, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1171, 3, 227, 105, 0, 1170, 1172, 3, 185, 84, 0, 1171, 1170, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1200, 1, 0, 0, 0, 1175, 1177, 3, 185, 84, 0, 1176, 1175, 1, 0, 0, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1187, 1, 0, 0, 0, 1180, 1184, 3, 227, 105, 0, 1181, 1183, 3, 185, 84, 0, 1182, 1181, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1187, 1180, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 3, 193, 88, 0, 1190, 1200, 1, 0, 0, 0, 1191, 1193, 3, 227, 105, 0, 1192, 1194, 3, 185, 84, 0, 1193, 1192, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1198, 3, 193, 88, 0, 1198, 1200, 1, 0, 0, 0, 1199, 1158, 1, 0, 0, 0, 1199, 1169, 1, 0, 0, 0, 1199, 1176, 1, 0, 0, 0, 1199, 1191, 1, 0, 0, 0, 1200, 210, 1, 0, 0, 0, 1201, 1202, 7, 4, 0, 0, 1202, 1203, 7, 5, 0, 0, 1203, 1204, 7, 16, 0, 0, 1204, 212, 1, 0, 0, 0, 1205, 1206, 7, 4, 0, 0, 1206, 1207, 7, 17, 0, 0, 1207, 1208, 7, 2, 0, 0, 1208, 214, 1, 0, 0, 0, 1209, 1210, 5, 61, 0, 0, 1210, 216, 1, 0, 0, 0, 1211, 1212, 7, 31, 0, 0, 1212, 1213, 7, 32, 0, 0, 1213, 218, 1, 0, 0, 0, 1214, 1215, 5, 58, 0, 0, 1215, 1216, 5, 58, 0, 0, 1216, 220, 1, 0, 0, 0, 1217, 1218, 5, 58, 0, 0, 1218, 222, 1, 0, 0, 0, 1219, 1220, 5, 44, 0, 0, 1220, 224, 1, 0, 0, 0, 1221, 1222, 7, 16, 0, 0, 1222, 1223, 7, 7, 0, 0, 1223, 1224, 7, 17, 0, 0, 1224, 1225, 7, 2, 0, 0, 1225, 226, 1, 0, 0, 0, 1226, 1227, 5, 46, 0, 0, 1227, 228, 1, 0, 0, 0, 1228, 1229, 7, 21, 0, 0, 1229, 1230, 7, 4, 0, 0, 1230, 1231, 7, 14, 0, 0, 1231, 1232, 7, 17, 0, 0, 1232, 1233, 7, 7, 0, 0, 1233, 230, 1, 0, 0, 0, 1234, 1235, 7, 21, 0, 0, 1235, 1236, 7, 10, 0, 0, 1236, 1237, 7, 12, 0, 0, 1237, 1238, 7, 17, 0, 0, 1238, 1239, 7, 11, 0, 0, 1239, 232, 1, 0, 0, 0, 1240, 1241, 7, 10, 0, 0, 1241, 1242, 7, 5, 0, 0, 1242, 234, 1, 0, 0, 0, 1243, 1244, 7, 10, 0, 0, 1244, 1245, 7, 17, 0, 0, 1245, 236, 1, 0, 0, 0, 1246, 1247, 7, 14, 0, 0, 1247, 1248, 7, 4, 0, 0, 1248, 1249, 7, 17, 0, 0, 1249, 1250, 7, 11, 0, 0, 1250, 238, 1, 0, 0, 0, 1251, 1252, 7, 14, 0, 0, 1252, 1253, 7, 10, 0, 0, 1253, 1254, 7, 19, 0, 0, 1254, 1255, 7, 7, 0, 0, 1255, 240, 1, 0, 0, 0, 1256, 1257, 7, 5, 0, 0, 1257, 1258, 7, 9, 0, 0, 1258, 1259, 7, 11, 0, 0, 1259, 242, 1, 0, 0, 0, 1260, 1261, 7, 5, 0, 0, 1261, 1262, 7, 22, 0, 0, 1262, 1263, 7, 14, 0, 0, 1263, 1264, 7, 14, 0, 0, 1264, 244, 1, 0, 0, 0, 1265, 1266, 7, 5, 0, 0, 1266, 1267, 7, 22, 0, 0, 1267, 1268, 7, 14, 0, 0, 1268, 1269, 7, 14, 0, 0, 1269, 1270, 7, 17, 0, 0, 1270, 246, 1, 0, 0, 0, 1271, 1272, 7, 9, 0, 0, 1272, 1273, 7, 5, 0, 0, 1273, 248, 1, 0, 0, 0, 1274, 1275, 7, 9, 0, 0, 1275, 1276, 7, 12, 0, 0, 1276, 250, 1, 0, 0, 0, 1277, 1278, 5, 63, 0, 0, 1278, 252, 1, 0, 0, 0, 1279, 1280, 7, 12, 0, 0, 1280, 1281, 7, 14, 0, 0, 1281, 1282, 7, 10, 0, 0, 1282, 1283, 7, 19, 0, 0, 1283, 1284, 7, 7, 0, 0, 1284, 254, 1, 0, 0, 0, 1285, 1286, 7, 11, 0, 0, 1286, 1287, 7, 12, 0, 0, 1287, 1288, 7, 22, 0, 0, 1288, 1289, 7, 7, 0, 0, 1289, 256, 1, 0, 0, 0, 1290, 1291, 7, 20, 0, 0, 1291, 1292, 7, 10, 0, 0, 1292, 1293, 7, 11, 0, 0, 1293, 1294, 7, 3, 0, 0, 1294, 258, 1, 0, 0, 0, 1295, 1296, 5, 61, 0, 0, 1296, 1297, 5, 61, 0, 0, 1297, 260, 1, 0, 0, 0, 1298, 1299, 5, 61, 0, 0, 1299, 1300, 5, 126, 0, 0, 1300, 262, 1, 0, 0, 0, 1301, 1302, 5, 33, 0, 0, 1302, 1303, 5, 61, 0, 0, 1303, 264, 1, 0, 0, 0, 1304, 1305, 5, 60, 0, 0, 1305, 266, 1, 0, 0, 0, 1306, 1307, 5, 60, 0, 0, 1307, 1308, 5, 61, 0, 0, 1308, 268, 1, 0, 0, 0, 1309, 1310, 5, 62, 0, 0, 1310, 270, 1, 0, 0, 0, 1311, 1312, 5, 62, 0, 0, 1312, 1313, 5, 61, 0, 0, 1313, 272, 1, 0, 0, 0, 1314, 1315, 5, 43, 0, 0, 1315, 274, 1, 0, 0, 0, 1316, 1317, 5, 45, 0, 0, 1317, 276, 1, 0, 0, 0, 1318, 1319, 5, 42, 0, 0, 1319, 278, 1, 0, 0, 0, 1320, 1321, 5, 47, 0, 0, 1321, 280, 1, 0, 0, 0, 1322, 1323, 5, 37, 0, 0, 1323, 282, 1, 0, 0, 0, 1324, 1325, 5, 123, 0, 0, 1325, 284, 1, 0, 0, 0, 1326, 1327, 5, 125, 0, 0, 1327, 286, 1, 0, 0, 0, 1328, 1329, 5, 63, 0, 0, 1329, 1330, 5, 63, 0, 0, 1330, 288, 1, 0, 0, 0, 1331, 1332, 3, 49, 16, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 6, 136, 39, 0, 1334, 290, 1, 0, 0, 0, 1335, 1338, 3, 251, 117, 0, 1336, 1339, 3, 187, 85, 0, 1337, 1339, 3, 201, 92, 0, 1338, 1336, 1, 0, 0, 0, 1338, 1337, 1, 0, 0, 0, 1339, 1343, 1, 0, 0, 0, 1340, 1342, 3, 203, 93, 0, 1341, 1340, 1, 0, 0, 0, 1342, 1345, 1, 0, 0, 0, 1343, 1341, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1353, 1, 0, 0, 0, 1345, 1343, 1, 0, 0, 0, 1346, 1348, 3, 251, 117, 0, 1347, 1349, 3, 185, 84, 0, 1348, 1347, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1353, 1, 0, 0, 0, 1352, 1335, 1, 0, 0, 0, 1352, 1346, 1, 0, 0, 0, 1353, 292, 1, 0, 0, 0, 1354, 1357, 3, 287, 135, 0, 1355, 1358, 3, 187, 85, 0, 1356, 1358, 3, 201, 92, 0, 1357, 1355, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 1362, 1, 0, 0, 0, 1359, 1361, 3, 203, 93, 0, 1360, 1359, 1, 0, 0, 0, 1361, 1364, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1372, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1367, 3, 287, 135, 0, 1366, 1368, 3, 185, 84, 0, 1367, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 1, 0, 0, 0, 1371, 1354, 1, 0, 0, 0, 1371, 1365, 1, 0, 0, 0, 1372, 294, 1, 0, 0, 0, 1373, 1374, 5, 91, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 6, 139, 4, 0, 1376, 1377, 6, 139, 4, 0, 1377, 296, 1, 0, 0, 0, 1378, 1379, 5, 93, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 6, 140, 15, 0, 1381, 1382, 6, 140, 15, 0, 1382, 298, 1, 0, 0, 0, 1383, 1384, 5, 40, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 6, 141, 4, 0, 1386, 1387, 6, 141, 4, 0, 1387, 300, 1, 0, 0, 0, 1388, 1389, 5, 41, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1391, 6, 142, 15, 0, 1391, 1392, 6, 142, 15, 0, 1392, 302, 1, 0, 0, 0, 1393, 1397, 3, 187, 85, 0, 1394, 1396, 3, 203, 93, 0, 1395, 1394, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1410, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1403, 3, 201, 92, 0, 1401, 1403, 3, 195, 89, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1401, 1, 0, 0, 0, 1403, 1405, 1, 0, 0, 0, 1404, 1406, 3, 203, 93, 0, 1405, 1404, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1405, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1410, 1, 0, 0, 0, 1409, 1393, 1, 0, 0, 0, 1409, 1402, 1, 0, 0, 0, 1410, 304, 1, 0, 0, 0, 1411, 1413, 3, 197, 90, 0, 1412, 1414, 3, 199, 91, 0, 1413, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 3, 197, 90, 0, 1418, 306, 1, 0, 0, 0, 1419, 1420, 3, 305, 144, 0, 1420, 308, 1, 0, 0, 0, 1421, 1422, 3, 17, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 146, 0, 0, 1424, 310, 1, 0, 0, 0, 1425, 1426, 3, 19, 1, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 6, 147, 0, 0, 1428, 312, 1, 0, 0, 0, 1429, 1430, 3, 21, 2, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 6, 148, 0, 0, 1432, 314, 1, 0, 0, 0, 1433, 1434, 3, 183, 83, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 6, 149, 14, 0, 1436, 1437, 6, 149, 15, 0, 1437, 316, 1, 0, 0, 0, 1438, 1439, 3, 295, 139, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 6, 150, 23, 0, 1441, 318, 1, 0, 0, 0, 1442, 1443, 3, 297, 140, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 6, 151, 35, 0, 1445, 320, 1, 0, 0, 0, 1446, 1447, 3, 221, 102, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 6, 152, 36, 0, 1449, 322, 1, 0, 0, 0, 1450, 1451, 3, 219, 101, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 6, 153, 40, 0, 1453, 324, 1, 0, 0, 0, 1454, 1455, 3, 223, 103, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1457, 6, 154, 20, 0, 1457, 326, 1, 0, 0, 0, 1458, 1459, 3, 215, 99, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1461, 6, 155, 29, 0, 1461, 328, 1, 0, 0, 0, 1462, 1463, 7, 15, 0, 0, 1463, 1464, 7, 7, 0, 0, 1464, 1465, 7, 11, 0, 0, 1465, 1466, 7, 4, 0, 0, 1466, 1467, 7, 16, 0, 0, 1467, 1468, 7, 4, 0, 0, 1468, 1469, 7, 11, 0, 0, 1469, 1470, 7, 4, 0, 0, 1470, 330, 1, 0, 0, 0, 1471, 1472, 3, 301, 142, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 6, 157, 16, 0, 1474, 1475, 6, 157, 15, 0, 1475, 332, 1, 0, 0, 0, 1476, 1480, 8, 33, 0, 0, 1477, 1478, 5, 47, 0, 0, 1478, 1480, 8, 34, 0, 0, 1479, 1476, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 334, 1, 0, 0, 0, 1481, 1483, 3, 333, 158, 0, 1482, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1482, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 336, 1, 0, 0, 0, 1486, 1487, 3, 335, 159, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 6, 160, 41, 0, 1489, 338, 1, 0, 0, 0, 1490, 1491, 3, 205, 94, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 6, 161, 28, 0, 1493, 340, 1, 0, 0, 0, 1494, 1495, 3, 17, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 6, 162, 0, 0, 1497, 342, 1, 0, 0, 0, 1498, 1499, 3, 19, 1, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 6, 163, 0, 0, 1501, 344, 1, 0, 0, 0, 1502, 1503, 3, 21, 2, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 6, 164, 0, 0, 1505, 346, 1, 0, 0, 0, 1506, 1507, 3, 299, 141, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 6, 165, 37, 0, 1509, 1510, 6, 165, 38, 0, 1510, 348, 1, 0, 0, 0, 1511, 1512, 3, 301, 142, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 6, 166, 16, 0, 1514, 1515, 6, 166, 15, 0, 1515, 1516, 6, 166, 15, 0, 1516, 350, 1, 0, 0, 0, 1517, 1518, 3, 183, 83, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 6, 167, 14, 0, 1520, 1521, 6, 167, 15, 0, 1521, 352, 1, 0, 0, 0, 1522, 1523, 3, 21, 2, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 6, 168, 0, 0, 1525, 354, 1, 0, 0, 0, 1526, 1527, 3, 17, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 6, 169, 0, 0, 1529, 356, 1, 0, 0, 0, 1530, 1531, 3, 19, 1, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 6, 170, 0, 0, 1533, 358, 1, 0, 0, 0, 1534, 1535, 3, 183, 83, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 6, 171, 14, 0, 1537, 1538, 6, 171, 15, 0, 1538, 360, 1, 0, 0, 0, 1539, 1540, 3, 301, 142, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 6, 172, 16, 0, 1542, 1543, 6, 172, 15, 0, 1543, 1544, 6, 172, 15, 0, 1544, 362, 1, 0, 0, 0, 1545, 1546, 7, 6, 0, 0, 1546, 1547, 7, 12, 0, 0, 1547, 1548, 7, 9, 0, 0, 1548, 1549, 7, 22, 0, 0, 1549, 1550, 7, 8, 0, 0, 1550, 364, 1, 0, 0, 0, 1551, 1552, 7, 17, 0, 0, 1552, 1553, 7, 2, 0, 0, 1553, 1554, 7, 9, 0, 0, 1554, 1555, 7, 12, 0, 0, 1555, 1556, 7, 7, 0, 0, 1556, 366, 1, 0, 0, 0, 1557, 1558, 7, 19, 0, 0, 1558, 1559, 7, 7, 0, 0, 1559, 1560, 7, 32, 0, 0, 1560, 368, 1, 0, 0, 0, 1561, 1562, 7, 12, 0, 0, 1562, 1563, 7, 12, 0, 0, 1563, 1564, 7, 21, 0, 0, 1564, 370, 1, 0, 0, 0, 1565, 1566, 7, 14, 0, 0, 1566, 1567, 7, 10, 0, 0, 1567, 1568, 7, 5, 0, 0, 1568, 1569, 7, 7, 0, 0, 1569, 1570, 7, 4, 0, 0, 1570, 1571, 7, 12, 0, 0, 1571, 372, 1, 0, 0, 0, 1572, 1573, 3, 257, 120, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1575, 6, 178, 26, 0, 1575, 1576, 6, 178, 15, 0, 1576, 1577, 6, 178, 4, 0, 1577, 374, 1, 0, 0, 0, 1578, 1579, 3, 223, 103, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 6, 179, 20, 0, 1581, 376, 1, 0, 0, 0, 1582, 1583, 3, 307, 145, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 180, 21, 0, 1585, 378, 1, 0, 0, 0, 1586, 1587, 3, 303, 143, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 181, 22, 0, 1589, 380, 1, 0, 0, 0, 1590, 1591, 3, 17, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 182, 0, 0, 1593, 382, 1, 0, 0, 0, 1594, 1595, 3, 19, 1, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 183, 0, 0, 1597, 384, 1, 0, 0, 0, 1598, 1599, 3, 21, 2, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 184, 0, 0, 1601, 386, 1, 0, 0, 0, 1602, 1603, 3, 183, 83, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 185, 14, 0, 1605, 1606, 6, 185, 15, 0, 1606, 388, 1, 0, 0, 0, 1607, 1608, 7, 35, 0, 0, 1608, 1609, 7, 9, 0, 0, 1609, 1610, 7, 10, 0, 0, 1610, 1611, 7, 5, 0, 0, 1611, 390, 1, 0, 0, 0, 1612, 1613, 3, 521, 252, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 6, 187, 18, 0, 1615, 392, 1, 0, 0, 0, 1616, 1617, 3, 247, 115, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 6, 188, 17, 0, 1619, 1620, 6, 188, 15, 0, 1620, 1621, 6, 188, 4, 0, 1621, 394, 1, 0, 0, 0, 1622, 1623, 7, 22, 0, 0, 1623, 1624, 7, 17, 0, 0, 1624, 1625, 7, 10, 0, 0, 1625, 1626, 7, 5, 0, 0, 1626, 1627, 7, 6, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 6, 189, 15, 0, 1629, 1630, 6, 189, 4, 0, 1630, 396, 1, 0, 0, 0, 1631, 1632, 3, 335, 159, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 190, 41, 0, 1634, 398, 1, 0, 0, 0, 1635, 1636, 3, 205, 94, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 191, 28, 0, 1638, 400, 1, 0, 0, 0, 1639, 1640, 3, 221, 102, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 192, 36, 0, 1642, 402, 1, 0, 0, 0, 1643, 1644, 3, 303, 143, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 193, 22, 0, 1646, 404, 1, 0, 0, 0, 1647, 1648, 3, 307, 145, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1650, 6, 194, 21, 0, 1650, 406, 1, 0, 0, 0, 1651, 1652, 3, 17, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 195, 0, 0, 1654, 408, 1, 0, 0, 0, 1655, 1656, 3, 19, 1, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 6, 196, 0, 0, 1658, 410, 1, 0, 0, 0, 1659, 1660, 3, 21, 2, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 6, 197, 0, 0, 1662, 412, 1, 0, 0, 0, 1663, 1664, 3, 183, 83, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 6, 198, 14, 0, 1666, 1667, 6, 198, 15, 0, 1667, 414, 1, 0, 0, 0, 1668, 1669, 3, 301, 142, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 6, 199, 16, 0, 1671, 1672, 6, 199, 15, 0, 1672, 1673, 6, 199, 15, 0, 1673, 416, 1, 0, 0, 0, 1674, 1675, 3, 221, 102, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1677, 6, 200, 36, 0, 1677, 418, 1, 0, 0, 0, 1678, 1679, 3, 223, 103, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 6, 201, 20, 0, 1681, 420, 1, 0, 0, 0, 1682, 1683, 3, 227, 105, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 202, 19, 0, 1685, 422, 1, 0, 0, 0, 1686, 1687, 3, 247, 115, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 203, 17, 0, 1689, 1690, 6, 203, 42, 0, 1690, 424, 1, 0, 0, 0, 1691, 1692, 3, 335, 159, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 6, 204, 41, 0, 1694, 426, 1, 0, 0, 0, 1695, 1696, 3, 205, 94, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 6, 205, 28, 0, 1698, 428, 1, 0, 0, 0, 1699, 1700, 3, 17, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 6, 206, 0, 0, 1702, 430, 1, 0, 0, 0, 1703, 1704, 3, 19, 1, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1706, 6, 207, 0, 0, 1706, 432, 1, 0, 0, 0, 1707, 1708, 3, 21, 2, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 208, 0, 0, 1710, 434, 1, 0, 0, 0, 1711, 1712, 3, 183, 83, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 6, 209, 14, 0, 1714, 1715, 6, 209, 15, 0, 1715, 1716, 6, 209, 15, 0, 1716, 436, 1, 0, 0, 0, 1717, 1718, 3, 301, 142, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 6, 210, 16, 0, 1720, 1721, 6, 210, 15, 0, 1721, 1722, 6, 210, 15, 0, 1722, 1723, 6, 210, 15, 0, 1723, 438, 1, 0, 0, 0, 1724, 1725, 3, 223, 103, 0, 1725, 1726, 1, 0, 0, 0, 1726, 1727, 6, 211, 20, 0, 1727, 440, 1, 0, 0, 0, 1728, 1729, 3, 227, 105, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 6, 212, 19, 0, 1731, 442, 1, 0, 0, 0, 1732, 1733, 3, 495, 239, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 6, 213, 30, 0, 1735, 444, 1, 0, 0, 0, 1736, 1737, 3, 17, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 6, 214, 0, 0, 1739, 446, 1, 0, 0, 0, 1740, 1741, 3, 19, 1, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 6, 215, 0, 0, 1743, 448, 1, 0, 0, 0, 1744, 1745, 3, 21, 2, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 6, 216, 0, 0, 1747, 450, 1, 0, 0, 0, 1748, 1749, 3, 183, 83, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 6, 217, 14, 0, 1751, 1752, 6, 217, 15, 0, 1752, 452, 1, 0, 0, 0, 1753, 1754, 3, 301, 142, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 6, 218, 16, 0, 1756, 1757, 6, 218, 15, 0, 1757, 1758, 6, 218, 15, 0, 1758, 454, 1, 0, 0, 0, 1759, 1760, 3, 227, 105, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 6, 219, 19, 0, 1762, 456, 1, 0, 0, 0, 1763, 1764, 3, 251, 117, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 220, 31, 0, 1766, 458, 1, 0, 0, 0, 1767, 1768, 3, 291, 137, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 221, 32, 0, 1770, 460, 1, 0, 0, 0, 1771, 1772, 3, 287, 135, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 6, 222, 33, 0, 1774, 462, 1, 0, 0, 0, 1775, 1776, 3, 293, 138, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 6, 223, 34, 0, 1778, 464, 1, 0, 0, 0, 1779, 1780, 3, 307, 145, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 6, 224, 21, 0, 1782, 466, 1, 0, 0, 0, 1783, 1784, 3, 303, 143, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 6, 225, 22, 0, 1786, 468, 1, 0, 0, 0, 1787, 1788, 3, 17, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 6, 226, 0, 0, 1790, 470, 1, 0, 0, 0, 1791, 1792, 3, 19, 1, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 6, 227, 0, 0, 1794, 472, 1, 0, 0, 0, 1795, 1796, 3, 21, 2, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 6, 228, 0, 0, 1798, 474, 1, 0, 0, 0, 1799, 1800, 3, 183, 83, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 6, 229, 14, 0, 1802, 1803, 6, 229, 15, 0, 1803, 476, 1, 0, 0, 0, 1804, 1805, 3, 301, 142, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 6, 230, 16, 0, 1807, 1808, 6, 230, 15, 0, 1808, 1809, 6, 230, 15, 0, 1809, 478, 1, 0, 0, 0, 1810, 1811, 3, 227, 105, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 6, 231, 19, 0, 1813, 480, 1, 0, 0, 0, 1814, 1815, 3, 223, 103, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 6, 232, 20, 0, 1817, 482, 1, 0, 0, 0, 1818, 1819, 3, 251, 117, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 6, 233, 31, 0, 1821, 484, 1, 0, 0, 0, 1822, 1823, 3, 291, 137, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1825, 6, 234, 32, 0, 1825, 486, 1, 0, 0, 0, 1826, 1827, 3, 287, 135, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 6, 235, 33, 0, 1829, 488, 1, 0, 0, 0, 1830, 1831, 3, 293, 138, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 6, 236, 34, 0, 1833, 490, 1, 0, 0, 0, 1834, 1839, 3, 187, 85, 0, 1835, 1839, 3, 185, 84, 0, 1836, 1839, 3, 201, 92, 0, 1837, 1839, 3, 277, 130, 0, 1838, 1834, 1, 0, 0, 0, 1838, 1835, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1838, 1837, 1, 0, 0, 0, 1839, 492, 1, 0, 0, 0, 1840, 1843, 3, 187, 85, 0, 1841, 1843, 3, 277, 130, 0, 1842, 1840, 1, 0, 0, 0, 1842, 1841, 1, 0, 0, 0, 1843, 1847, 1, 0, 0, 0, 1844, 1846, 3, 491, 237, 0, 1845, 1844, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1860, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1853, 3, 201, 92, 0, 1851, 1853, 3, 195, 89, 0, 1852, 1850, 1, 0, 0, 0, 1852, 1851, 1, 0, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1856, 3, 491, 237, 0, 1855, 1854, 1, 0, 0, 0, 1856, 1857, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1842, 1, 0, 0, 0, 1859, 1852, 1, 0, 0, 0, 1860, 494, 1, 0, 0, 0, 1861, 1864, 3, 493, 238, 0, 1862, 1864, 3, 305, 144, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 496, 1, 0, 0, 0, 1867, 1868, 3, 17, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1870, 6, 240, 0, 0, 1870, 498, 1, 0, 0, 0, 1871, 1872, 3, 19, 1, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 6, 241, 0, 0, 1874, 500, 1, 0, 0, 0, 1875, 1876, 3, 21, 2, 0, 1876, 1877, 1, 0, 0, 0, 1877, 1878, 6, 242, 0, 0, 1878, 502, 1, 0, 0, 0, 1879, 1880, 3, 183, 83, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 6, 243, 14, 0, 1882, 1883, 6, 243, 15, 0, 1883, 504, 1, 0, 0, 0, 1884, 1885, 3, 301, 142, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 6, 244, 16, 0, 1887, 1888, 6, 244, 15, 0, 1888, 1889, 6, 244, 15, 0, 1889, 506, 1, 0, 0, 0, 1890, 1891, 3, 215, 99, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1893, 6, 245, 29, 0, 1893, 508, 1, 0, 0, 0, 1894, 1895, 3, 223, 103, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 6, 246, 20, 0, 1897, 510, 1, 0, 0, 0, 1898, 1899, 3, 227, 105, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 6, 247, 19, 0, 1901, 512, 1, 0, 0, 0, 1902, 1903, 3, 251, 117, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 6, 248, 31, 0, 1905, 514, 1, 0, 0, 0, 1906, 1907, 3, 291, 137, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 6, 249, 32, 0, 1909, 516, 1, 0, 0, 0, 1910, 1911, 3, 287, 135, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 6, 250, 33, 0, 1913, 518, 1, 0, 0, 0, 1914, 1915, 3, 293, 138, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 6, 251, 34, 0, 1917, 520, 1, 0, 0, 0, 1918, 1919, 7, 4, 0, 0, 1919, 1920, 7, 17, 0, 0, 1920, 522, 1, 0, 0, 0, 1921, 1922, 3, 495, 239, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1924, 6, 253, 30, 0, 1924, 524, 1, 0, 0, 0, 1925, 1926, 3, 17, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 6, 254, 0, 0, 1928, 526, 1, 0, 0, 0, 1929, 1930, 3, 19, 1, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 6, 255, 0, 0, 1932, 528, 1, 0, 0, 0, 1933, 1934, 3, 21, 2, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 6, 256, 0, 0, 1936, 530, 1, 0, 0, 0, 1937, 1938, 3, 183, 83, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 6, 257, 14, 0, 1940, 1941, 6, 257, 15, 0, 1941, 532, 1, 0, 0, 0, 1942, 1943, 7, 10, 0, 0, 1943, 1944, 7, 5, 0, 0, 1944, 1945, 7, 21, 0, 0, 1945, 1946, 7, 9, 0, 0, 1946, 534, 1, 0, 0, 0, 1947, 1948, 3, 17, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 6, 259, 0, 0, 1950, 536, 1, 0, 0, 0, 1951, 1952, 3, 19, 1, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 6, 260, 0, 0, 1954, 538, 1, 0, 0, 0, 1955, 1956, 3, 21, 2, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 6, 261, 0, 0, 1958, 540, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 547, 551, 554, 563, 565, 576, 853, 935, 939, 944, 1045, 1047, 1098, 1103, 1112, 1119, 1124, 1126, 1137, 1145, 1148, 1150, 1155, 1160, 1166, 1173, 1178, 1184, 1187, 1195, 1199, 1338, 1343, 1350, 1352, 1357, 1362, 1369, 1371, 1397, 1402, 1407, 1409, 1415, 1479, 1484, 1838, 1842, 1847, 1852, 1857, 1859, 1863, 1865, 43, 0, 1, 0, 5, 1, 0, 5, 2, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 10, 0, 5, 11, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 5, 16, 0, 7, 52, 0, 4, 0, 0, 7, 100, 0, 7, 74, 0, 7, 140, 0, 7, 64, 0, 7, 62, 0, 7, 102, 0, 7, 101, 0, 7, 97, 0, 5, 4, 0, 5, 3, 0, 7, 79, 0, 7, 38, 0, 7, 53, 0, 7, 58, 0, 7, 136, 0, 7, 76, 0, 7, 95, 0, 7, 94, 0, 7, 96, 0, 7, 98, 0, 7, 61, 0, 7, 99, 0, 5, 0, 0, 7, 17, 0, 7, 60, 0, 7, 107, 0, 5, 12, 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 963f9f623f3f2..304bf1a75a9b6 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 @@ -45,19 +45,21 @@ public class EsqlBaseLexer extends LexerConfig { LP=99, RP=100, UNQUOTED_IDENTIFIER=101, QUOTED_IDENTIFIER=102, EXPR_LINE_COMMENT=103, EXPR_MULTILINE_COMMENT=104, EXPR_WS=105, METADATA=106, UNQUOTED_SOURCE=107, FROM_LINE_COMMENT=108, FROM_MULTILINE_COMMENT=109, FROM_WS=110, FORK_WS=111, - FORK_LINE_COMMENT=112, FORK_MULTILINE_COMMENT=113, JOIN=114, USING=115, - JOIN_LINE_COMMENT=116, JOIN_MULTILINE_COMMENT=117, JOIN_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, MVEXPAND_LINE_COMMENT=125, - MVEXPAND_MULTILINE_COMMENT=126, MVEXPAND_WS=127, ID_PATTERN=128, PROJECT_LINE_COMMENT=129, - PROJECT_MULTILINE_COMMENT=130, PROJECT_WS=131, AS=132, RENAME_LINE_COMMENT=133, - RENAME_MULTILINE_COMMENT=134, RENAME_WS=135, INFO=136, SHOW_LINE_COMMENT=137, - SHOW_MULTILINE_COMMENT=138, SHOW_WS=139; + FORK_LINE_COMMENT=112, FORK_MULTILINE_COMMENT=113, GROUP=114, SCORE=115, + KEY=116, RRF=117, LINEAR=118, FUSE_LINE_COMMENT=119, FUSE_MULTILINE_COMMENT=120, + FUSE_WS=121, JOIN=122, USING=123, JOIN_LINE_COMMENT=124, JOIN_MULTILINE_COMMENT=125, + JOIN_WS=126, LOOKUP_LINE_COMMENT=127, LOOKUP_MULTILINE_COMMENT=128, LOOKUP_WS=129, + LOOKUP_FIELD_LINE_COMMENT=130, LOOKUP_FIELD_MULTILINE_COMMENT=131, LOOKUP_FIELD_WS=132, + MVEXPAND_LINE_COMMENT=133, MVEXPAND_MULTILINE_COMMENT=134, MVEXPAND_WS=135, + ID_PATTERN=136, PROJECT_LINE_COMMENT=137, PROJECT_MULTILINE_COMMENT=138, + PROJECT_WS=139, AS=140, RENAME_LINE_COMMENT=141, RENAME_MULTILINE_COMMENT=142, + RENAME_WS=143, INFO=144, SHOW_LINE_COMMENT=145, SHOW_MULTILINE_COMMENT=146, + SHOW_WS=147; public static final int CHANGE_POINT_MODE=1, ENRICH_MODE=2, ENRICH_FIELD_MODE=3, SETTING_MODE=4, - EXPLAIN_MODE=5, EXPRESSION_MODE=6, FROM_MODE=7, FORK_MODE=8, JOIN_MODE=9, - LOOKUP_MODE=10, LOOKUP_FIELD_MODE=11, MVEXPAND_MODE=12, PROJECT_MODE=13, - RENAME_MODE=14, SHOW_MODE=15; + EXPLAIN_MODE=5, EXPRESSION_MODE=6, FROM_MODE=7, FORK_MODE=8, FUSE_MODE=9, + JOIN_MODE=10, LOOKUP_MODE=11, LOOKUP_FIELD_MODE=12, MVEXPAND_MODE=13, + PROJECT_MODE=14, RENAME_MODE=15, SHOW_MODE=16; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -65,8 +67,8 @@ public class EsqlBaseLexer extends LexerConfig { public static String[] modeNames = { "DEFAULT_MODE", "CHANGE_POINT_MODE", "ENRICH_MODE", "ENRICH_FIELD_MODE", "SETTING_MODE", "EXPLAIN_MODE", "EXPRESSION_MODE", "FROM_MODE", "FORK_MODE", - "JOIN_MODE", "LOOKUP_MODE", "LOOKUP_FIELD_MODE", "MVEXPAND_MODE", "PROJECT_MODE", - "RENAME_MODE", "SHOW_MODE" + "FUSE_MODE", "JOIN_MODE", "LOOKUP_MODE", "LOOKUP_FIELD_MODE", "MVEXPAND_MODE", + "PROJECT_MODE", "RENAME_MODE", "SHOW_MODE" }; private static String[] makeRuleNames() { @@ -106,9 +108,12 @@ private static String[] makeRuleNames() { "FROM_COMMA", "FROM_ASSIGN", "METADATA", "FROM_RP", "UNQUOTED_SOURCE_PART", "UNQUOTED_SOURCE", "FROM_UNQUOTED_SOURCE", "FROM_QUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "FORK_LP", "FORK_RP", "FORK_PIPE", - "FORK_WS", "FORK_LINE_COMMENT", "FORK_MULTILINE_COMMENT", "JOIN_PIPE", - "JOIN", "JOIN_AS", "JOIN_ON", "USING", "JOIN_UNQUOTED_SOURCE", "JOIN_QUOTED_SOURCE", - "JOIN_COLON", "JOIN_UNQUOTED_IDENTIFER", "JOIN_QUOTED_IDENTIFIER", "JOIN_LINE_COMMENT", + "FORK_WS", "FORK_LINE_COMMENT", "FORK_MULTILINE_COMMENT", "FUSE_PIPE", + "FUSE_RP", "GROUP", "SCORE", "KEY", "RRF", "LINEAR", "FUSE_WITH", "FUSE_COMMA", + "FUSE_QUOTED_IDENTIFIER", "FUSE_UNQUOTED_IDENTIFIER", "FUSE_LINE_COMMENT", + "FUSE_MULTILINE_COMMENT", "FUSE_WS", "JOIN_PIPE", "JOIN", "JOIN_AS", + "JOIN_ON", "USING", "JOIN_UNQUOTED_SOURCE", "JOIN_QUOTED_SOURCE", "JOIN_COLON", + "JOIN_UNQUOTED_IDENTIFER", "JOIN_QUOTED_IDENTIFIER", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS", "LOOKUP_PIPE", "LOOKUP_RP", "LOOKUP_COLON", "LOOKUP_COMMA", "LOOKUP_DOT", "LOOKUP_ON", "LOOKUP_UNQUOTED_SOURCE", "LOOKUP_QUOTED_SOURCE", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", @@ -146,7 +151,8 @@ private static String[] makeLiteralNames() { "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", "'??'", null, null, null, "']'", null, "')'", null, null, null, null, null, "'metadata'", null, null, - null, null, null, null, null, "'join'", "'USING'", null, null, null, + null, null, null, null, null, "'group'", "'score'", "'key'", "'rrf'", + "'linear'", null, null, null, "'join'", "'USING'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, "'as'", null, null, null, "'info'" }; @@ -174,13 +180,14 @@ private static String[] makeSymbolicNames() { "LP", "RP", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "FORK_WS", "FORK_LINE_COMMENT", - "FORK_MULTILINE_COMMENT", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", - "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", - "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", - "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", - "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", - "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", - "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" + "FORK_MULTILINE_COMMENT", "GROUP", "SCORE", "KEY", "RRF", "LINEAR", "FUSE_LINE_COMMENT", + "FUSE_MULTILINE_COMMENT", "FUSE_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", + "JOIN_MULTILINE_COMMENT", "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", + "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", + "LOOKUP_FIELD_WS", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", + "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", + "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -331,101 +338,106 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { } public static final String _serializedATN = - "\u0004\u0000\u008b\u0746\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ + "\u0004\u0000\u0093\u07a7\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"+ - "\uffff\u0006\uffff\uffff\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"+ - "\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002\u000f\u0007"+ - "\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002\u0012\u0007"+ - "\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002\u0015\u0007"+ - "\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002\u0018\u0007"+ - "\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002\u001b\u0007"+ - "\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002\u001e\u0007"+ - "\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007!\u0002\"\u0007"+ - "\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007&\u0002\'\u0007"+ - "\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007+\u0002,\u0007"+ - ",\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u00070\u00021\u0007"+ - "1\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u00075\u00026\u0007"+ - "6\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007"+ - ";\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\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007"+ - "O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007"+ - "T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007X\u0002Y\u0007"+ - "Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007]\u0002^\u0007"+ - "^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007b\u0002c\u0007"+ - "c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007g\u0002h\u0007"+ - "h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007l\u0002m\u0007"+ - "m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007q\u0002r\u0007"+ - "r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007v\u0002w\u0007"+ - "w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007{\u0002|\u0007"+ - "|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f\u0002\u0080\u0007"+ - "\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082\u0002\u0083\u0007"+ - "\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085\u0002\u0086\u0007"+ - "\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088\u0002\u0089\u0007"+ - "\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b\u0002\u008c\u0007"+ - "\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e\u0002\u008f\u0007"+ - "\u008f\u0002\u0090\u0007\u0090\u0002\u0091\u0007\u0091\u0002\u0092\u0007"+ - "\u0092\u0002\u0093\u0007\u0093\u0002\u0094\u0007\u0094\u0002\u0095\u0007"+ - "\u0095\u0002\u0096\u0007\u0096\u0002\u0097\u0007\u0097\u0002\u0098\u0007"+ - "\u0098\u0002\u0099\u0007\u0099\u0002\u009a\u0007\u009a\u0002\u009b\u0007"+ - "\u009b\u0002\u009c\u0007\u009c\u0002\u009d\u0007\u009d\u0002\u009e\u0007"+ - "\u009e\u0002\u009f\u0007\u009f\u0002\u00a0\u0007\u00a0\u0002\u00a1\u0007"+ - "\u00a1\u0002\u00a2\u0007\u00a2\u0002\u00a3\u0007\u00a3\u0002\u00a4\u0007"+ - "\u00a4\u0002\u00a5\u0007\u00a5\u0002\u00a6\u0007\u00a6\u0002\u00a7\u0007"+ - "\u00a7\u0002\u00a8\u0007\u00a8\u0002\u00a9\u0007\u00a9\u0002\u00aa\u0007"+ - "\u00aa\u0002\u00ab\u0007\u00ab\u0002\u00ac\u0007\u00ac\u0002\u00ad\u0007"+ - "\u00ad\u0002\u00ae\u0007\u00ae\u0002\u00af\u0007\u00af\u0002\u00b0\u0007"+ - "\u00b0\u0002\u00b1\u0007\u00b1\u0002\u00b2\u0007\u00b2\u0002\u00b3\u0007"+ - "\u00b3\u0002\u00b4\u0007\u00b4\u0002\u00b5\u0007\u00b5\u0002\u00b6\u0007"+ - "\u00b6\u0002\u00b7\u0007\u00b7\u0002\u00b8\u0007\u00b8\u0002\u00b9\u0007"+ - "\u00b9\u0002\u00ba\u0007\u00ba\u0002\u00bb\u0007\u00bb\u0002\u00bc\u0007"+ - "\u00bc\u0002\u00bd\u0007\u00bd\u0002\u00be\u0007\u00be\u0002\u00bf\u0007"+ - "\u00bf\u0002\u00c0\u0007\u00c0\u0002\u00c1\u0007\u00c1\u0002\u00c2\u0007"+ - "\u00c2\u0002\u00c3\u0007\u00c3\u0002\u00c4\u0007\u00c4\u0002\u00c5\u0007"+ - "\u00c5\u0002\u00c6\u0007\u00c6\u0002\u00c7\u0007\u00c7\u0002\u00c8\u0007"+ - "\u00c8\u0002\u00c9\u0007\u00c9\u0002\u00ca\u0007\u00ca\u0002\u00cb\u0007"+ - "\u00cb\u0002\u00cc\u0007\u00cc\u0002\u00cd\u0007\u00cd\u0002\u00ce\u0007"+ - "\u00ce\u0002\u00cf\u0007\u00cf\u0002\u00d0\u0007\u00d0\u0002\u00d1\u0007"+ - "\u00d1\u0002\u00d2\u0007\u00d2\u0002\u00d3\u0007\u00d3\u0002\u00d4\u0007"+ - "\u00d4\u0002\u00d5\u0007\u00d5\u0002\u00d6\u0007\u00d6\u0002\u00d7\u0007"+ - "\u00d7\u0002\u00d8\u0007\u00d8\u0002\u00d9\u0007\u00d9\u0002\u00da\u0007"+ - "\u00da\u0002\u00db\u0007\u00db\u0002\u00dc\u0007\u00dc\u0002\u00dd\u0007"+ - "\u00dd\u0002\u00de\u0007\u00de\u0002\u00df\u0007\u00df\u0002\u00e0\u0007"+ - "\u00e0\u0002\u00e1\u0007\u00e1\u0002\u00e2\u0007\u00e2\u0002\u00e3\u0007"+ - "\u00e3\u0002\u00e4\u0007\u00e4\u0002\u00e5\u0007\u00e5\u0002\u00e6\u0007"+ - "\u00e6\u0002\u00e7\u0007\u00e7\u0002\u00e8\u0007\u00e8\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\u0002\u00f4\u0007\u00f4\u0002\u00f5\u0007"+ - "\u00f5\u0002\u00f6\u0007\u00f6\u0002\u00f7\u0007\u00f7\u0001\u0000\u0001"+ - "\u0000\u0001\u0000\u0001\u0000\u0005\u0000\u0205\b\u0000\n\u0000\f\u0000"+ - "\u0208\t\u0000\u0001\u0000\u0003\u0000\u020b\b\u0000\u0001\u0000\u0003"+ - "\u0000\u020e\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u0217\b\u0001\n\u0001\f\u0001"+ - "\u021a\t\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0002\u0004\u0002\u0222\b\u0002\u000b\u0002\f\u0002\u0223\u0001"+ - "\u0002\u0001\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\u0004\u0001"+ - "\u0004\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\u0005\u0001\u0005\u0001"+ - "\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+ - "\u0006\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\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\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"+ + "\uffff\u0006\uffff\uffff\u0006\uffff\uffff\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\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e"+ + "\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011"+ + "\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014"+ + "\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017"+ + "\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a"+ + "\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d"+ + "\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!"+ + "\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002"+ + "&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002"+ + "+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u0002"+ + "0\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u0002"+ + "5\u00075\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002"+ + ":\u0007:\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002"+ + "?\u0007?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002"+ + "D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002"+ + "I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002"+ + "N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002"+ + "S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002"+ + "X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002"+ + "]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002"+ + "b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002"+ + "g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002"+ + "l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002"+ + "q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002"+ + "v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002"+ + "{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f"+ + "\u0002\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082"+ + "\u0002\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085"+ + "\u0002\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088"+ + "\u0002\u0089\u0007\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b"+ + "\u0002\u008c\u0007\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e"+ + "\u0002\u008f\u0007\u008f\u0002\u0090\u0007\u0090\u0002\u0091\u0007\u0091"+ + "\u0002\u0092\u0007\u0092\u0002\u0093\u0007\u0093\u0002\u0094\u0007\u0094"+ + "\u0002\u0095\u0007\u0095\u0002\u0096\u0007\u0096\u0002\u0097\u0007\u0097"+ + "\u0002\u0098\u0007\u0098\u0002\u0099\u0007\u0099\u0002\u009a\u0007\u009a"+ + "\u0002\u009b\u0007\u009b\u0002\u009c\u0007\u009c\u0002\u009d\u0007\u009d"+ + "\u0002\u009e\u0007\u009e\u0002\u009f\u0007\u009f\u0002\u00a0\u0007\u00a0"+ + "\u0002\u00a1\u0007\u00a1\u0002\u00a2\u0007\u00a2\u0002\u00a3\u0007\u00a3"+ + "\u0002\u00a4\u0007\u00a4\u0002\u00a5\u0007\u00a5\u0002\u00a6\u0007\u00a6"+ + "\u0002\u00a7\u0007\u00a7\u0002\u00a8\u0007\u00a8\u0002\u00a9\u0007\u00a9"+ + "\u0002\u00aa\u0007\u00aa\u0002\u00ab\u0007\u00ab\u0002\u00ac\u0007\u00ac"+ + "\u0002\u00ad\u0007\u00ad\u0002\u00ae\u0007\u00ae\u0002\u00af\u0007\u00af"+ + "\u0002\u00b0\u0007\u00b0\u0002\u00b1\u0007\u00b1\u0002\u00b2\u0007\u00b2"+ + "\u0002\u00b3\u0007\u00b3\u0002\u00b4\u0007\u00b4\u0002\u00b5\u0007\u00b5"+ + "\u0002\u00b6\u0007\u00b6\u0002\u00b7\u0007\u00b7\u0002\u00b8\u0007\u00b8"+ + "\u0002\u00b9\u0007\u00b9\u0002\u00ba\u0007\u00ba\u0002\u00bb\u0007\u00bb"+ + "\u0002\u00bc\u0007\u00bc\u0002\u00bd\u0007\u00bd\u0002\u00be\u0007\u00be"+ + "\u0002\u00bf\u0007\u00bf\u0002\u00c0\u0007\u00c0\u0002\u00c1\u0007\u00c1"+ + "\u0002\u00c2\u0007\u00c2\u0002\u00c3\u0007\u00c3\u0002\u00c4\u0007\u00c4"+ + "\u0002\u00c5\u0007\u00c5\u0002\u00c6\u0007\u00c6\u0002\u00c7\u0007\u00c7"+ + "\u0002\u00c8\u0007\u00c8\u0002\u00c9\u0007\u00c9\u0002\u00ca\u0007\u00ca"+ + "\u0002\u00cb\u0007\u00cb\u0002\u00cc\u0007\u00cc\u0002\u00cd\u0007\u00cd"+ + "\u0002\u00ce\u0007\u00ce\u0002\u00cf\u0007\u00cf\u0002\u00d0\u0007\u00d0"+ + "\u0002\u00d1\u0007\u00d1\u0002\u00d2\u0007\u00d2\u0002\u00d3\u0007\u00d3"+ + "\u0002\u00d4\u0007\u00d4\u0002\u00d5\u0007\u00d5\u0002\u00d6\u0007\u00d6"+ + "\u0002\u00d7\u0007\u00d7\u0002\u00d8\u0007\u00d8\u0002\u00d9\u0007\u00d9"+ + "\u0002\u00da\u0007\u00da\u0002\u00db\u0007\u00db\u0002\u00dc\u0007\u00dc"+ + "\u0002\u00dd\u0007\u00dd\u0002\u00de\u0007\u00de\u0002\u00df\u0007\u00df"+ + "\u0002\u00e0\u0007\u00e0\u0002\u00e1\u0007\u00e1\u0002\u00e2\u0007\u00e2"+ + "\u0002\u00e3\u0007\u00e3\u0002\u00e4\u0007\u00e4\u0002\u00e5\u0007\u00e5"+ + "\u0002\u00e6\u0007\u00e6\u0002\u00e7\u0007\u00e7\u0002\u00e8\u0007\u00e8"+ + "\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\u0002\u00f4\u0007\u00f4"+ + "\u0002\u00f5\u0007\u00f5\u0002\u00f6\u0007\u00f6\u0002\u00f7\u0007\u00f7"+ + "\u0002\u00f8\u0007\u00f8\u0002\u00f9\u0007\u00f9\u0002\u00fa\u0007\u00fa"+ + "\u0002\u00fb\u0007\u00fb\u0002\u00fc\u0007\u00fc\u0002\u00fd\u0007\u00fd"+ + "\u0002\u00fe\u0007\u00fe\u0002\u00ff\u0007\u00ff\u0002\u0100\u0007\u0100"+ + "\u0002\u0101\u0007\u0101\u0002\u0102\u0007\u0102\u0002\u0103\u0007\u0103"+ + "\u0002\u0104\u0007\u0104\u0002\u0105\u0007\u0105\u0001\u0000\u0001\u0000"+ + "\u0001\u0000\u0001\u0000\u0005\u0000\u0222\b\u0000\n\u0000\f\u0000\u0225"+ + "\t\u0000\u0001\u0000\u0003\u0000\u0228\b\u0000\u0001\u0000\u0003\u0000"+ + "\u022b\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0005\u0001\u0234\b\u0001\n\u0001\f\u0001\u0237"+ + "\t\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0002\u0004\u0002\u023f\b\u0002\u000b\u0002\f\u0002\u0240\u0001\u0002"+ + "\u0001\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\u0004\u0001\u0004"+ + "\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\u0005\u0001\u0005\u0001\u0005"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ + "\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\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\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\u000f"+ @@ -453,8 +465,8 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+ "\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+ "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+ - "\u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0004!\u0337"+ - "\b!\u000b!\f!\u0338\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ + "\u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!\u0004!\u0354"+ + "\b!\u000b!\f!\u0355\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ "\"\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001"+ "$\u0001%\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001"+ "\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001"+ @@ -462,8 +474,8 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { ",\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001"+ ".\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001/\u00010\u0001"+ "0\u00010\u00010\u00010\u00011\u00011\u00011\u00011\u00011\u00012\u0001"+ - "2\u00013\u00043\u0389\b3\u000b3\f3\u038a\u00013\u00013\u00033\u038f\b"+ - "3\u00013\u00043\u0392\b3\u000b3\f3\u0393\u00014\u00014\u00014\u00014\u0001"+ + "2\u00013\u00043\u03a6\b3\u000b3\f3\u03a7\u00013\u00013\u00033\u03ac\b"+ + "3\u00013\u00043\u03af\b3\u000b3\f3\u03b0\u00014\u00014\u00014\u00014\u0001"+ "5\u00015\u00015\u00015\u00016\u00016\u00016\u00016\u00017\u00017\u0001"+ "7\u00017\u00018\u00018\u00018\u00018\u00019\u00019\u00019\u00019\u0001"+ "9\u00019\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001;\u0001"+ @@ -473,22 +485,22 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { "B\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001E\u0001"+ "E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001"+ "G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001"+ - "J\u0001J\u0001J\u0001J\u0001J\u0004J\u03f9\bJ\u000bJ\fJ\u03fa\u0001K\u0001"+ + "J\u0001J\u0001J\u0001J\u0001J\u0004J\u0416\bJ\u000bJ\fJ\u0417\u0001K\u0001"+ "K\u0001K\u0001K\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001M\u0001"+ "M\u0001N\u0001N\u0001N\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001"+ "O\u0001P\u0001P\u0001P\u0001P\u0001Q\u0001Q\u0001Q\u0001Q\u0001R\u0001"+ "R\u0001R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0001U\u0001"+ - "U\u0001V\u0001V\u0001V\u0001W\u0001W\u0001X\u0001X\u0003X\u042e\bX\u0001"+ - "X\u0004X\u0431\bX\u000bX\fX\u0432\u0001Y\u0001Y\u0001Z\u0001Z\u0001[\u0001"+ - "[\u0001[\u0003[\u043c\b[\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0003]\u0443"+ - "\b]\u0001^\u0001^\u0001^\u0005^\u0448\b^\n^\f^\u044b\t^\u0001^\u0001^"+ - "\u0001^\u0001^\u0001^\u0001^\u0005^\u0453\b^\n^\f^\u0456\t^\u0001^\u0001"+ - "^\u0001^\u0001^\u0001^\u0003^\u045d\b^\u0001^\u0003^\u0460\b^\u0003^\u0462"+ - "\b^\u0001_\u0004_\u0465\b_\u000b_\f_\u0466\u0001`\u0004`\u046a\b`\u000b"+ - "`\f`\u046b\u0001`\u0001`\u0005`\u0470\b`\n`\f`\u0473\t`\u0001`\u0001`"+ - "\u0004`\u0477\b`\u000b`\f`\u0478\u0001`\u0004`\u047c\b`\u000b`\f`\u047d"+ - "\u0001`\u0001`\u0005`\u0482\b`\n`\f`\u0485\t`\u0003`\u0487\b`\u0001`\u0001"+ - "`\u0001`\u0001`\u0004`\u048d\b`\u000b`\f`\u048e\u0001`\u0001`\u0003`\u0493"+ + "U\u0001V\u0001V\u0001V\u0001W\u0001W\u0001X\u0001X\u0003X\u044b\bX\u0001"+ + "X\u0004X\u044e\bX\u000bX\fX\u044f\u0001Y\u0001Y\u0001Z\u0001Z\u0001[\u0001"+ + "[\u0001[\u0003[\u0459\b[\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0003]\u0460"+ + "\b]\u0001^\u0001^\u0001^\u0005^\u0465\b^\n^\f^\u0468\t^\u0001^\u0001^"+ + "\u0001^\u0001^\u0001^\u0001^\u0005^\u0470\b^\n^\f^\u0473\t^\u0001^\u0001"+ + "^\u0001^\u0001^\u0001^\u0003^\u047a\b^\u0001^\u0003^\u047d\b^\u0003^\u047f"+ + "\b^\u0001_\u0004_\u0482\b_\u000b_\f_\u0483\u0001`\u0004`\u0487\b`\u000b"+ + "`\f`\u0488\u0001`\u0001`\u0005`\u048d\b`\n`\f`\u0490\t`\u0001`\u0001`"+ + "\u0004`\u0494\b`\u000b`\f`\u0495\u0001`\u0004`\u0499\b`\u000b`\f`\u049a"+ + "\u0001`\u0001`\u0005`\u049f\b`\n`\f`\u04a2\t`\u0003`\u04a4\b`\u0001`\u0001"+ + "`\u0001`\u0001`\u0004`\u04aa\b`\u000b`\f`\u04ab\u0001`\u0001`\u0003`\u04b0"+ "\b`\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001c\u0001"+ "c\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001f\u0001f\u0001g\u0001"+ "g\u0001h\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001j\u0001j\u0001"+ @@ -504,20 +516,20 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { "\u0001\u0081\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0084"+ "\u0001\u0084\u0001\u0085\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0087"+ "\u0001\u0087\u0001\u0087\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0088"+ - "\u0001\u0089\u0001\u0089\u0001\u0089\u0003\u0089\u051e\b\u0089\u0001\u0089"+ - "\u0005\u0089\u0521\b\u0089\n\u0089\f\u0089\u0524\t\u0089\u0001\u0089\u0001"+ - "\u0089\u0004\u0089\u0528\b\u0089\u000b\u0089\f\u0089\u0529\u0003\u0089"+ - "\u052c\b\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0003\u008a\u0531\b"+ - "\u008a\u0001\u008a\u0005\u008a\u0534\b\u008a\n\u008a\f\u008a\u0537\t\u008a"+ - "\u0001\u008a\u0001\u008a\u0004\u008a\u053b\b\u008a\u000b\u008a\f\u008a"+ - "\u053c\u0003\u008a\u053f\b\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001"+ + "\u0001\u0089\u0001\u0089\u0001\u0089\u0003\u0089\u053b\b\u0089\u0001\u0089"+ + "\u0005\u0089\u053e\b\u0089\n\u0089\f\u0089\u0541\t\u0089\u0001\u0089\u0001"+ + "\u0089\u0004\u0089\u0545\b\u0089\u000b\u0089\f\u0089\u0546\u0003\u0089"+ + "\u0549\b\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0003\u008a\u054e\b"+ + "\u008a\u0001\u008a\u0005\u008a\u0551\b\u008a\n\u008a\f\u008a\u0554\t\u008a"+ + "\u0001\u008a\u0001\u008a\u0004\u008a\u0558\b\u008a\u000b\u008a\f\u008a"+ + "\u0559\u0003\u008a\u055c\b\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001"+ "\u008b\u0001\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+ "\u008c\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001"+ "\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008f\u0001"+ - "\u008f\u0005\u008f\u0557\b\u008f\n\u008f\f\u008f\u055a\t\u008f\u0001\u008f"+ - "\u0001\u008f\u0003\u008f\u055e\b\u008f\u0001\u008f\u0004\u008f\u0561\b"+ - "\u008f\u000b\u008f\f\u008f\u0562\u0003\u008f\u0565\b\u008f\u0001\u0090"+ - "\u0001\u0090\u0004\u0090\u0569\b\u0090\u000b\u0090\f\u0090\u056a\u0001"+ + "\u008f\u0005\u008f\u0574\b\u008f\n\u008f\f\u008f\u0577\t\u008f\u0001\u008f"+ + "\u0001\u008f\u0003\u008f\u057b\b\u008f\u0001\u008f\u0004\u008f\u057e\b"+ + "\u008f\u000b\u008f\f\u008f\u057f\u0003\u008f\u0582\b\u008f\u0001\u0090"+ + "\u0001\u0090\u0004\u0090\u0586\b\u0090\u000b\u0090\f\u0090\u0587\u0001"+ "\u0090\u0001\u0090\u0001\u0091\u0001\u0091\u0001\u0092\u0001\u0092\u0001"+ "\u0092\u0001\u0092\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001"+ "\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0095\u0001\u0095\u0001"+ @@ -528,8 +540,8 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { "\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c\u0001"+ "\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001"+ "\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0001"+ - "\u009e\u0001\u009e\u0003\u009e\u05ab\b\u009e\u0001\u009f\u0004\u009f\u05ae"+ - "\b\u009f\u000b\u009f\f\u009f\u05af\u0001\u00a0\u0001\u00a0\u0001\u00a0"+ + "\u009e\u0001\u009e\u0003\u009e\u05c8\b\u009e\u0001\u009f\u0004\u009f\u05cb"+ + "\b\u009f\u000b\u009f\f\u009f\u05cc\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"+ @@ -539,1029 +551,1090 @@ private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { "\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\u00ab\u0001\u00ac\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\u00ae\u0001\u00ae\u0001\u00af"+ - "\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\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\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\u00b8\u0001\u00b8"+ - "\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\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\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\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\u0001\u00c3"+ + "\u0001\u00ac\u0001\u00ac\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad"+ + "\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\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\u00b1\u0001\u00b1\u0001\u00b2"+ + "\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\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\u0001\u00ba\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\u00bc\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\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\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2"+ "\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001\u00c4\u0001\u00c4"+ - "\u0001\u00c4\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\u00c8"+ + "\u0001\u00c4\u0001\u00c4\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c5"+ + "\u0001\u00c6\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\u00cb\u0001\u00cc\u0001\u00cc"+ - "\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\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00d0\u0001\u00d0"+ - "\u0001\u00d0\u0001\u00d0\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\u00d7\u0001\u00d8\u0001\u00d8\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\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\u0003\u00df"+ - "\u06ce\b\u00df\u0001\u00e0\u0001\u00e0\u0003\u00e0\u06d2\b\u00e0\u0001"+ - "\u00e0\u0005\u00e0\u06d5\b\u00e0\n\u00e0\f\u00e0\u06d8\t\u00e0\u0001\u00e0"+ - "\u0001\u00e0\u0003\u00e0\u06dc\b\u00e0\u0001\u00e0\u0004\u00e0\u06df\b"+ - "\u00e0\u000b\u00e0\f\u00e0\u06e0\u0003\u00e0\u06e3\b\u00e0\u0001\u00e1"+ - "\u0001\u00e1\u0004\u00e1\u06e7\b\u00e1\u000b\u00e1\f\u00e1\u06e8\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\u00e5\u0001\u00e6\u0001"+ - "\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7\u0001"+ - "\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001"+ - "\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\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"+ - "\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\u00f3\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001"+ - "\u00f4\u0001\u00f4\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001"+ - "\u00f6\u0001\u00f6\u0001\u00f6\u0001\u00f6\u0001\u00f7\u0001\u00f7\u0001"+ - "\u00f7\u0001\u00f7\u0002\u0218\u0454\u0000\u00f8\u0010\u0001\u0012\u0002"+ - "\u0014\u0003\u0016\u0004\u0018\u0005\u001a\u0006\u001c\u0007\u001e\b "+ - "\t\"\n$\u000b&\f(\r*\u000e,\u000f.\u00100\u00112\u00124\u00136\u00148"+ - "\u0015:\u0016<\u0017>\u0018@\u0019B\u001aD\u001bF\u001cH\u001dJ\u001e"+ - "L\u001fN P!R\"T\u0000V\u0000X\u0000Z\u0000\\\u0000^\u0000`\u0000b\u0000"+ - "d#f$h%j\u0000l\u0000n\u0000p\u0000r\u0000t\u0000v&x\u0000z\u0000|\'~("+ - "\u0080)\u0082\u0000\u0084\u0000\u0086\u0000\u0088\u0000\u008a\u0000\u008c"+ - "\u0000\u008e\u0000\u0090\u0000\u0092\u0000\u0094\u0000\u0096\u0000\u0098"+ - "\u0000\u009a*\u009c+\u009e,\u00a0\u0000\u00a2\u0000\u00a4-\u00a6.\u00a8"+ - "/\u00aa0\u00ac\u0000\u00ae\u0000\u00b01\u00b22\u00b43\u00b64\u00b8\u0000"+ - "\u00ba\u0000\u00bc\u0000\u00be\u0000\u00c0\u0000\u00c2\u0000\u00c4\u0000"+ - "\u00c6\u0000\u00c8\u0000\u00ca\u0000\u00cc5\u00ce6\u00d07\u00d28\u00d4"+ - "9\u00d6:\u00d8;\u00da<\u00dc=\u00de>\u00e0?\u00e2@\u00e4A\u00e6B\u00e8"+ - "C\u00eaD\u00ecE\u00eeF\u00f0G\u00f2H\u00f4I\u00f6J\u00f8K\u00faL\u00fc"+ - "M\u00feN\u0100O\u0102P\u0104Q\u0106R\u0108S\u010aT\u010cU\u010eV\u0110"+ - "W\u0112X\u0114Y\u0116Z\u0118[\u011a\\\u011c]\u011e^\u0120\u0000\u0122"+ - "_\u0124`\u0126a\u0128b\u012ac\u012cd\u012ee\u0130\u0000\u0132f\u0134g"+ - "\u0136h\u0138i\u013a\u0000\u013c\u0000\u013e\u0000\u0140\u0000\u0142\u0000"+ - "\u0144\u0000\u0146\u0000\u0148j\u014a\u0000\u014c\u0000\u014ek\u0150\u0000"+ - "\u0152\u0000\u0154l\u0156m\u0158n\u015a\u0000\u015c\u0000\u015e\u0000"+ - "\u0160o\u0162p\u0164q\u0166\u0000\u0168r\u016a\u0000\u016c\u0000\u016e"+ - "s\u0170\u0000\u0172\u0000\u0174\u0000\u0176\u0000\u0178\u0000\u017at\u017c"+ - "u\u017ev\u0180\u0000\u0182\u0000\u0184\u0000\u0186\u0000\u0188\u0000\u018a"+ - "\u0000\u018c\u0000\u018e\u0000\u0190w\u0192x\u0194y\u0196\u0000\u0198"+ - "\u0000\u019a\u0000\u019c\u0000\u019e\u0000\u01a0z\u01a2{\u01a4|\u01a6"+ - "\u0000\u01a8\u0000\u01aa\u0000\u01ac\u0000\u01ae\u0000\u01b0\u0000\u01b2"+ - "\u0000\u01b4\u0000\u01b6\u0000\u01b8}\u01ba~\u01bc\u007f\u01be\u0000\u01c0"+ - "\u0000\u01c2\u0000\u01c4\u0000\u01c6\u0000\u01c8\u0000\u01ca\u0000\u01cc"+ - "\u0000\u01ce\u0000\u01d0\u0000\u01d2\u0080\u01d4\u0081\u01d6\u0082\u01d8"+ - "\u0083\u01da\u0000\u01dc\u0000\u01de\u0000\u01e0\u0000\u01e2\u0000\u01e4"+ - "\u0000\u01e6\u0000\u01e8\u0000\u01ea\u0000\u01ec\u0084\u01ee\u0000\u01f0"+ - "\u0085\u01f2\u0086\u01f4\u0087\u01f6\u0000\u01f8\u0088\u01fa\u0089\u01fc"+ - "\u008a\u01fe\u008b\u0010\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+ - "\b\t\n\u000b\f\r\u000e\u000f$\u0002\u0000\n\n\r\r\u0003\u0000\t\n\r\r"+ - " \u0002\u0000CCcc\u0002\u0000HHhh\u0002\u0000AAaa\u0002\u0000NNnn\u0002"+ - "\u0000GGgg\u0002\u0000EEee\u0002\u0000PPpp\u0002\u0000OOoo\u0002\u0000"+ - "IIii\u0002\u0000TTtt\u0002\u0000RRrr\u0002\u0000XXxx\u0002\u0000LLll\u0002"+ - "\u0000MMmm\u0002\u0000DDdd\u0002\u0000SSss\u0002\u0000VVvv\u0002\u0000"+ - "KKkk\u0002\u0000WWww\u0002\u0000FFff\u0002\u0000UUuu\u0006\u0000\t\n\r"+ - "\r //[[]]\f\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\f\u0000\t\n\r"+ - "\r \"\"(),,//::==[[]]||\u0002\u0000**//\u0002\u0000JJjj\u0765\u0000\u0010"+ - "\u0001\u0000\u0000\u0000\u0000\u0012\u0001\u0000\u0000\u0000\u0000\u0014"+ - "\u0001\u0000\u0000\u0000\u0000\u0016\u0001\u0000\u0000\u0000\u0000\u0018"+ - "\u0001\u0000\u0000\u0000\u0000\u001a\u0001\u0000\u0000\u0000\u0000\u001c"+ - "\u0001\u0000\u0000\u0000\u0000\u001e\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\u00000\u0001\u0000\u0000\u0000\u00002\u0001\u0000"+ - "\u0000\u0000\u00004\u0001\u0000\u0000\u0000\u00006\u0001\u0000\u0000\u0000"+ - "\u00008\u0001\u0000\u0000\u0000\u0000:\u0001\u0000\u0000\u0000\u0000<"+ - "\u0001\u0000\u0000\u0000\u0000>\u0001\u0000\u0000\u0000\u0000@\u0001\u0000"+ - "\u0000\u0000\u0000B\u0001\u0000\u0000\u0000\u0000D\u0001\u0000\u0000\u0000"+ - "\u0000F\u0001\u0000\u0000\u0000\u0000H\u0001\u0000\u0000\u0000\u0000J"+ - "\u0001\u0000\u0000\u0000\u0000L\u0001\u0000\u0000\u0000\u0000N\u0001\u0000"+ - "\u0000\u0000\u0000P\u0001\u0000\u0000\u0000\u0000R\u0001\u0000\u0000\u0000"+ - "\u0001T\u0001\u0000\u0000\u0000\u0001V\u0001\u0000\u0000\u0000\u0001X"+ - "\u0001\u0000\u0000\u0000\u0001Z\u0001\u0000\u0000\u0000\u0001\\\u0001"+ - "\u0000\u0000\u0000\u0001^\u0001\u0000\u0000\u0000\u0001`\u0001\u0000\u0000"+ - "\u0000\u0001b\u0001\u0000\u0000\u0000\u0001d\u0001\u0000\u0000\u0000\u0001"+ - "f\u0001\u0000\u0000\u0000\u0001h\u0001\u0000\u0000\u0000\u0002j\u0001"+ - "\u0000\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0002n\u0001\u0000\u0000"+ - "\u0000\u0002p\u0001\u0000\u0000\u0000\u0002r\u0001\u0000\u0000\u0000\u0002"+ - "v\u0001\u0000\u0000\u0000\u0002x\u0001\u0000\u0000\u0000\u0002z\u0001"+ - "\u0000\u0000\u0000\u0002|\u0001\u0000\u0000\u0000\u0002~\u0001\u0000\u0000"+ - "\u0000\u0002\u0080\u0001\u0000\u0000\u0000\u0003\u0082\u0001\u0000\u0000"+ - "\u0000\u0003\u0084\u0001\u0000\u0000\u0000\u0003\u0086\u0001\u0000\u0000"+ - "\u0000\u0003\u0088\u0001\u0000\u0000\u0000\u0003\u008a\u0001\u0000\u0000"+ - "\u0000\u0003\u008c\u0001\u0000\u0000\u0000\u0003\u008e\u0001\u0000\u0000"+ - "\u0000\u0003\u0090\u0001\u0000\u0000\u0000\u0003\u0092\u0001\u0000\u0000"+ - "\u0000\u0003\u0094\u0001\u0000\u0000\u0000\u0003\u0096\u0001\u0000\u0000"+ - "\u0000\u0003\u0098\u0001\u0000\u0000\u0000\u0003\u009a\u0001\u0000\u0000"+ - "\u0000\u0003\u009c\u0001\u0000\u0000\u0000\u0003\u009e\u0001\u0000\u0000"+ - "\u0000\u0004\u00a0\u0001\u0000\u0000\u0000\u0004\u00a2\u0001\u0000\u0000"+ - "\u0000\u0004\u00a4\u0001\u0000\u0000\u0000\u0004\u00a6\u0001\u0000\u0000"+ - "\u0000\u0004\u00a8\u0001\u0000\u0000\u0000\u0004\u00aa\u0001\u0000\u0000"+ - "\u0000\u0005\u00ac\u0001\u0000\u0000\u0000\u0005\u00ae\u0001\u0000\u0000"+ - "\u0000\u0005\u00b0\u0001\u0000\u0000\u0000\u0005\u00b2\u0001\u0000\u0000"+ - "\u0000\u0005\u00b4\u0001\u0000\u0000\u0000\u0006\u00b6\u0001\u0000\u0000"+ - "\u0000\u0006\u00cc\u0001\u0000\u0000\u0000\u0006\u00ce\u0001\u0000\u0000"+ - "\u0000\u0006\u00d0\u0001\u0000\u0000\u0000\u0006\u00d2\u0001\u0000\u0000"+ - "\u0000\u0006\u00d4\u0001\u0000\u0000\u0000\u0006\u00d6\u0001\u0000\u0000"+ - "\u0000\u0006\u00d8\u0001\u0000\u0000\u0000\u0006\u00da\u0001\u0000\u0000"+ - "\u0000\u0006\u00dc\u0001\u0000\u0000\u0000\u0006\u00de\u0001\u0000\u0000"+ - "\u0000\u0006\u00e0\u0001\u0000\u0000\u0000\u0006\u00e2\u0001\u0000\u0000"+ - "\u0000\u0006\u00e4\u0001\u0000\u0000\u0000\u0006\u00e6\u0001\u0000\u0000"+ - "\u0000\u0006\u00e8\u0001\u0000\u0000\u0000\u0006\u00ea\u0001\u0000\u0000"+ - "\u0000\u0006\u00ec\u0001\u0000\u0000\u0000\u0006\u00ee\u0001\u0000\u0000"+ - "\u0000\u0006\u00f0\u0001\u0000\u0000\u0000\u0006\u00f2\u0001\u0000\u0000"+ - "\u0000\u0006\u00f4\u0001\u0000\u0000\u0000\u0006\u00f6\u0001\u0000\u0000"+ - "\u0000\u0006\u00f8\u0001\u0000\u0000\u0000\u0006\u00fa\u0001\u0000\u0000"+ - "\u0000\u0006\u00fc\u0001\u0000\u0000\u0000\u0006\u00fe\u0001\u0000\u0000"+ - "\u0000\u0006\u0100\u0001\u0000\u0000\u0000\u0006\u0102\u0001\u0000\u0000"+ - "\u0000\u0006\u0104\u0001\u0000\u0000\u0000\u0006\u0106\u0001\u0000\u0000"+ - "\u0000\u0006\u0108\u0001\u0000\u0000\u0000\u0006\u010a\u0001\u0000\u0000"+ - "\u0000\u0006\u010c\u0001\u0000\u0000\u0000\u0006\u010e\u0001\u0000\u0000"+ - "\u0000\u0006\u0110\u0001\u0000\u0000\u0000\u0006\u0112\u0001\u0000\u0000"+ - "\u0000\u0006\u0114\u0001\u0000\u0000\u0000\u0006\u0116\u0001\u0000\u0000"+ - "\u0000\u0006\u0118\u0001\u0000\u0000\u0000\u0006\u011a\u0001\u0000\u0000"+ - "\u0000\u0006\u011c\u0001\u0000\u0000\u0000\u0006\u011e\u0001\u0000\u0000"+ - "\u0000\u0006\u0120\u0001\u0000\u0000\u0000\u0006\u0122\u0001\u0000\u0000"+ - "\u0000\u0006\u0124\u0001\u0000\u0000\u0000\u0006\u0126\u0001\u0000\u0000"+ - "\u0000\u0006\u0128\u0001\u0000\u0000\u0000\u0006\u012a\u0001\u0000\u0000"+ - "\u0000\u0006\u012c\u0001\u0000\u0000\u0000\u0006\u012e\u0001\u0000\u0000"+ - "\u0000\u0006\u0132\u0001\u0000\u0000\u0000\u0006\u0134\u0001\u0000\u0000"+ - "\u0000\u0006\u0136\u0001\u0000\u0000\u0000\u0006\u0138\u0001\u0000\u0000"+ - "\u0000\u0007\u013a\u0001\u0000\u0000\u0000\u0007\u013c\u0001\u0000\u0000"+ - "\u0000\u0007\u013e\u0001\u0000\u0000\u0000\u0007\u0140\u0001\u0000\u0000"+ - "\u0000\u0007\u0142\u0001\u0000\u0000\u0000\u0007\u0144\u0001\u0000\u0000"+ - "\u0000\u0007\u0146\u0001\u0000\u0000\u0000\u0007\u0148\u0001\u0000\u0000"+ - "\u0000\u0007\u014a\u0001\u0000\u0000\u0000\u0007\u014e\u0001\u0000\u0000"+ - "\u0000\u0007\u0150\u0001\u0000\u0000\u0000\u0007\u0152\u0001\u0000\u0000"+ - "\u0000\u0007\u0154\u0001\u0000\u0000\u0000\u0007\u0156\u0001\u0000\u0000"+ - "\u0000\u0007\u0158\u0001\u0000\u0000\u0000\b\u015a\u0001\u0000\u0000\u0000"+ - "\b\u015c\u0001\u0000\u0000\u0000\b\u015e\u0001\u0000\u0000\u0000\b\u0160"+ - "\u0001\u0000\u0000\u0000\b\u0162\u0001\u0000\u0000\u0000\b\u0164\u0001"+ - "\u0000\u0000\u0000\t\u0166\u0001\u0000\u0000\u0000\t\u0168\u0001\u0000"+ - "\u0000\u0000\t\u016a\u0001\u0000\u0000\u0000\t\u016c\u0001\u0000\u0000"+ - "\u0000\t\u016e\u0001\u0000\u0000\u0000\t\u0170\u0001\u0000\u0000\u0000"+ - "\t\u0172\u0001\u0000\u0000\u0000\t\u0174\u0001\u0000\u0000\u0000\t\u0176"+ - "\u0001\u0000\u0000\u0000\t\u0178\u0001\u0000\u0000\u0000\t\u017a\u0001"+ - "\u0000\u0000\u0000\t\u017c\u0001\u0000\u0000\u0000\t\u017e\u0001\u0000"+ - "\u0000\u0000\n\u0180\u0001\u0000\u0000\u0000\n\u0182\u0001\u0000\u0000"+ - "\u0000\n\u0184\u0001\u0000\u0000\u0000\n\u0186\u0001\u0000\u0000\u0000"+ - "\n\u0188\u0001\u0000\u0000\u0000\n\u018a\u0001\u0000\u0000\u0000\n\u018c"+ - "\u0001\u0000\u0000\u0000\n\u018e\u0001\u0000\u0000\u0000\n\u0190\u0001"+ - "\u0000\u0000\u0000\n\u0192\u0001\u0000\u0000\u0000\n\u0194\u0001\u0000"+ - "\u0000\u0000\u000b\u0196\u0001\u0000\u0000\u0000\u000b\u0198\u0001\u0000"+ - "\u0000\u0000\u000b\u019a\u0001\u0000\u0000\u0000\u000b\u019c\u0001\u0000"+ - "\u0000\u0000\u000b\u019e\u0001\u0000\u0000\u0000\u000b\u01a0\u0001\u0000"+ - "\u0000\u0000\u000b\u01a2\u0001\u0000\u0000\u0000\u000b\u01a4\u0001\u0000"+ - "\u0000\u0000\f\u01a6\u0001\u0000\u0000\u0000\f\u01a8\u0001\u0000\u0000"+ - "\u0000\f\u01aa\u0001\u0000\u0000\u0000\f\u01ac\u0001\u0000\u0000\u0000"+ - "\f\u01ae\u0001\u0000\u0000\u0000\f\u01b0\u0001\u0000\u0000\u0000\f\u01b2"+ - "\u0001\u0000\u0000\u0000\f\u01b4\u0001\u0000\u0000\u0000\f\u01b6\u0001"+ - "\u0000\u0000\u0000\f\u01b8\u0001\u0000\u0000\u0000\f\u01ba\u0001\u0000"+ - "\u0000\u0000\f\u01bc\u0001\u0000\u0000\u0000\r\u01be\u0001\u0000\u0000"+ - "\u0000\r\u01c0\u0001\u0000\u0000\u0000\r\u01c2\u0001\u0000\u0000\u0000"+ - "\r\u01c4\u0001\u0000\u0000\u0000\r\u01c6\u0001\u0000\u0000\u0000\r\u01c8"+ - "\u0001\u0000\u0000\u0000\r\u01ca\u0001\u0000\u0000\u0000\r\u01cc\u0001"+ - "\u0000\u0000\u0000\r\u01d2\u0001\u0000\u0000\u0000\r\u01d4\u0001\u0000"+ - "\u0000\u0000\r\u01d6\u0001\u0000\u0000\u0000\r\u01d8\u0001\u0000\u0000"+ - "\u0000\u000e\u01da\u0001\u0000\u0000\u0000\u000e\u01dc\u0001\u0000\u0000"+ - "\u0000\u000e\u01de\u0001\u0000\u0000\u0000\u000e\u01e0\u0001\u0000\u0000"+ - "\u0000\u000e\u01e2\u0001\u0000\u0000\u0000\u000e\u01e4\u0001\u0000\u0000"+ - "\u0000\u000e\u01e6\u0001\u0000\u0000\u0000\u000e\u01e8\u0001\u0000\u0000"+ - "\u0000\u000e\u01ea\u0001\u0000\u0000\u0000\u000e\u01ec\u0001\u0000\u0000"+ - "\u0000\u000e\u01ee\u0001\u0000\u0000\u0000\u000e\u01f0\u0001\u0000\u0000"+ - "\u0000\u000e\u01f2\u0001\u0000\u0000\u0000\u000e\u01f4\u0001\u0000\u0000"+ - "\u0000\u000f\u01f6\u0001\u0000\u0000\u0000\u000f\u01f8\u0001\u0000\u0000"+ - "\u0000\u000f\u01fa\u0001\u0000\u0000\u0000\u000f\u01fc\u0001\u0000\u0000"+ - "\u0000\u000f\u01fe\u0001\u0000\u0000\u0000\u0010\u0200\u0001\u0000\u0000"+ - "\u0000\u0012\u0211\u0001\u0000\u0000\u0000\u0014\u0221\u0001\u0000\u0000"+ - "\u0000\u0016\u0227\u0001\u0000\u0000\u0000\u0018\u0236\u0001\u0000\u0000"+ - "\u0000\u001a\u023f\u0001\u0000\u0000\u0000\u001c\u024a\u0001\u0000\u0000"+ - "\u0000\u001e\u0257\u0001\u0000\u0000\u0000 \u0261\u0001\u0000\u0000\u0000"+ - "\"\u0268\u0001\u0000\u0000\u0000$\u026f\u0001\u0000\u0000\u0000&\u0277"+ - "\u0001\u0000\u0000\u0000(\u0280\u0001\u0000\u0000\u0000*\u0286\u0001\u0000"+ - "\u0000\u0000,\u028f\u0001\u0000\u0000\u0000.\u0296\u0001\u0000\u0000\u0000"+ - "0\u029e\u0001\u0000\u0000\u00002\u02a6\u0001\u0000\u0000\u00004\u02b5"+ - "\u0001\u0000\u0000\u00006\u02bc\u0001\u0000\u0000\u00008\u02c2\u0001\u0000"+ - "\u0000\u0000:\u02c9\u0001\u0000\u0000\u0000<\u02d1\u0001\u0000\u0000\u0000"+ - ">\u02da\u0001\u0000\u0000\u0000@\u02e2\u0001\u0000\u0000\u0000B\u02ea"+ - "\u0001\u0000\u0000\u0000D\u02f3\u0001\u0000\u0000\u0000F\u02ff\u0001\u0000"+ - "\u0000\u0000H\u030b\u0001\u0000\u0000\u0000J\u0312\u0001\u0000\u0000\u0000"+ - "L\u0319\u0001\u0000\u0000\u0000N\u0325\u0001\u0000\u0000\u0000P\u032e"+ - "\u0001\u0000\u0000\u0000R\u0336\u0001\u0000\u0000\u0000T\u033c\u0001\u0000"+ - "\u0000\u0000V\u0341\u0001\u0000\u0000\u0000X\u0347\u0001\u0000\u0000\u0000"+ - "Z\u034b\u0001\u0000\u0000\u0000\\\u034f\u0001\u0000\u0000\u0000^\u0353"+ - "\u0001\u0000\u0000\u0000`\u0357\u0001\u0000\u0000\u0000b\u035b\u0001\u0000"+ - "\u0000\u0000d\u035f\u0001\u0000\u0000\u0000f\u0363\u0001\u0000\u0000\u0000"+ - "h\u0367\u0001\u0000\u0000\u0000j\u036b\u0001\u0000\u0000\u0000l\u0370"+ - "\u0001\u0000\u0000\u0000n\u0376\u0001\u0000\u0000\u0000p\u037b\u0001\u0000"+ - "\u0000\u0000r\u0380\u0001\u0000\u0000\u0000t\u0385\u0001\u0000\u0000\u0000"+ - "v\u038e\u0001\u0000\u0000\u0000x\u0395\u0001\u0000\u0000\u0000z\u0399"+ - "\u0001\u0000\u0000\u0000|\u039d\u0001\u0000\u0000\u0000~\u03a1\u0001\u0000"+ - "\u0000\u0000\u0080\u03a5\u0001\u0000\u0000\u0000\u0082\u03a9\u0001\u0000"+ - "\u0000\u0000\u0084\u03af\u0001\u0000\u0000\u0000\u0086\u03b6\u0001\u0000"+ - "\u0000\u0000\u0088\u03ba\u0001\u0000\u0000\u0000\u008a\u03be\u0001\u0000"+ - "\u0000\u0000\u008c\u03c2\u0001\u0000\u0000\u0000\u008e\u03c6\u0001\u0000"+ - "\u0000\u0000\u0090\u03ca\u0001\u0000\u0000\u0000\u0092\u03ce\u0001\u0000"+ - "\u0000\u0000\u0094\u03d2\u0001\u0000\u0000\u0000\u0096\u03d6\u0001\u0000"+ - "\u0000\u0000\u0098\u03da\u0001\u0000\u0000\u0000\u009a\u03de\u0001\u0000"+ - "\u0000\u0000\u009c\u03e2\u0001\u0000\u0000\u0000\u009e\u03e6\u0001\u0000"+ - "\u0000\u0000\u00a0\u03ea\u0001\u0000\u0000\u0000\u00a2\u03ef\u0001\u0000"+ - "\u0000\u0000\u00a4\u03f8\u0001\u0000\u0000\u0000\u00a6\u03fc\u0001\u0000"+ - "\u0000\u0000\u00a8\u0400\u0001\u0000\u0000\u0000\u00aa\u0404\u0001\u0000"+ - "\u0000\u0000\u00ac\u0408\u0001\u0000\u0000\u0000\u00ae\u040d\u0001\u0000"+ - "\u0000\u0000\u00b0\u0412\u0001\u0000\u0000\u0000\u00b2\u0416\u0001\u0000"+ - "\u0000\u0000\u00b4\u041a\u0001\u0000\u0000\u0000\u00b6\u041e\u0001\u0000"+ - "\u0000\u0000\u00b8\u0422\u0001\u0000\u0000\u0000\u00ba\u0424\u0001\u0000"+ - "\u0000\u0000\u00bc\u0426\u0001\u0000\u0000\u0000\u00be\u0429\u0001\u0000"+ - "\u0000\u0000\u00c0\u042b\u0001\u0000\u0000\u0000\u00c2\u0434\u0001\u0000"+ - "\u0000\u0000\u00c4\u0436\u0001\u0000\u0000\u0000\u00c6\u043b\u0001\u0000"+ - "\u0000\u0000\u00c8\u043d\u0001\u0000\u0000\u0000\u00ca\u0442\u0001\u0000"+ - "\u0000\u0000\u00cc\u0461\u0001\u0000\u0000\u0000\u00ce\u0464\u0001\u0000"+ - "\u0000\u0000\u00d0\u0492\u0001\u0000\u0000\u0000\u00d2\u0494\u0001\u0000"+ - "\u0000\u0000\u00d4\u0498\u0001\u0000\u0000\u0000\u00d6\u049c\u0001\u0000"+ - "\u0000\u0000\u00d8\u049e\u0001\u0000\u0000\u0000\u00da\u04a1\u0001\u0000"+ - "\u0000\u0000\u00dc\u04a4\u0001\u0000\u0000\u0000\u00de\u04a6\u0001\u0000"+ - "\u0000\u0000\u00e0\u04a8\u0001\u0000\u0000\u0000\u00e2\u04ad\u0001\u0000"+ - "\u0000\u0000\u00e4\u04af\u0001\u0000\u0000\u0000\u00e6\u04b5\u0001\u0000"+ - "\u0000\u0000\u00e8\u04bb\u0001\u0000\u0000\u0000\u00ea\u04be\u0001\u0000"+ - "\u0000\u0000\u00ec\u04c1\u0001\u0000\u0000\u0000\u00ee\u04c6\u0001\u0000"+ - "\u0000\u0000\u00f0\u04cb\u0001\u0000\u0000\u0000\u00f2\u04cf\u0001\u0000"+ - "\u0000\u0000\u00f4\u04d4\u0001\u0000\u0000\u0000\u00f6\u04da\u0001\u0000"+ - "\u0000\u0000\u00f8\u04dd\u0001\u0000\u0000\u0000\u00fa\u04e0\u0001\u0000"+ - "\u0000\u0000\u00fc\u04e2\u0001\u0000\u0000\u0000\u00fe\u04e8\u0001\u0000"+ - "\u0000\u0000\u0100\u04ed\u0001\u0000\u0000\u0000\u0102\u04f2\u0001\u0000"+ - "\u0000\u0000\u0104\u04f5\u0001\u0000\u0000\u0000\u0106\u04f8\u0001\u0000"+ - "\u0000\u0000\u0108\u04fb\u0001\u0000\u0000\u0000\u010a\u04fd\u0001\u0000"+ - "\u0000\u0000\u010c\u0500\u0001\u0000\u0000\u0000\u010e\u0502\u0001\u0000"+ - "\u0000\u0000\u0110\u0505\u0001\u0000\u0000\u0000\u0112\u0507\u0001\u0000"+ - "\u0000\u0000\u0114\u0509\u0001\u0000\u0000\u0000\u0116\u050b\u0001\u0000"+ - "\u0000\u0000\u0118\u050d\u0001\u0000\u0000\u0000\u011a\u050f\u0001\u0000"+ - "\u0000\u0000\u011c\u0511\u0001\u0000\u0000\u0000\u011e\u0513\u0001\u0000"+ - "\u0000\u0000\u0120\u0516\u0001\u0000\u0000\u0000\u0122\u052b\u0001\u0000"+ - "\u0000\u0000\u0124\u053e\u0001\u0000\u0000\u0000\u0126\u0540\u0001\u0000"+ - "\u0000\u0000\u0128\u0545\u0001\u0000\u0000\u0000\u012a\u054a\u0001\u0000"+ - "\u0000\u0000\u012c\u054f\u0001\u0000\u0000\u0000\u012e\u0564\u0001\u0000"+ - "\u0000\u0000\u0130\u0566\u0001\u0000\u0000\u0000\u0132\u056e\u0001\u0000"+ - "\u0000\u0000\u0134\u0570\u0001\u0000\u0000\u0000\u0136\u0574\u0001\u0000"+ - "\u0000\u0000\u0138\u0578\u0001\u0000\u0000\u0000\u013a\u057c\u0001\u0000"+ - "\u0000\u0000\u013c\u0581\u0001\u0000\u0000\u0000\u013e\u0585\u0001\u0000"+ - "\u0000\u0000\u0140\u0589\u0001\u0000\u0000\u0000\u0142\u058d\u0001\u0000"+ - "\u0000\u0000\u0144\u0591\u0001\u0000\u0000\u0000\u0146\u0595\u0001\u0000"+ - "\u0000\u0000\u0148\u0599\u0001\u0000\u0000\u0000\u014a\u05a2\u0001\u0000"+ - "\u0000\u0000\u014c\u05aa\u0001\u0000\u0000\u0000\u014e\u05ad\u0001\u0000"+ - "\u0000\u0000\u0150\u05b1\u0001\u0000\u0000\u0000\u0152\u05b5\u0001\u0000"+ - "\u0000\u0000\u0154\u05b9\u0001\u0000\u0000\u0000\u0156\u05bd\u0001\u0000"+ - "\u0000\u0000\u0158\u05c1\u0001\u0000\u0000\u0000\u015a\u05c5\u0001\u0000"+ - "\u0000\u0000\u015c\u05ca\u0001\u0000\u0000\u0000\u015e\u05d0\u0001\u0000"+ - "\u0000\u0000\u0160\u05d5\u0001\u0000\u0000\u0000\u0162\u05d9\u0001\u0000"+ - "\u0000\u0000\u0164\u05dd\u0001\u0000\u0000\u0000\u0166\u05e1\u0001\u0000"+ - "\u0000\u0000\u0168\u05e6\u0001\u0000\u0000\u0000\u016a\u05eb\u0001\u0000"+ - "\u0000\u0000\u016c\u05ef\u0001\u0000\u0000\u0000\u016e\u05f5\u0001\u0000"+ - "\u0000\u0000\u0170\u05fe\u0001\u0000\u0000\u0000\u0172\u0602\u0001\u0000"+ - "\u0000\u0000\u0174\u0606\u0001\u0000\u0000\u0000\u0176\u060a\u0001\u0000"+ - "\u0000\u0000\u0178\u060e\u0001\u0000\u0000\u0000\u017a\u0612\u0001\u0000"+ - "\u0000\u0000\u017c\u0616\u0001\u0000\u0000\u0000\u017e\u061a\u0001\u0000"+ - "\u0000\u0000\u0180\u061e\u0001\u0000\u0000\u0000\u0182\u0623\u0001\u0000"+ - "\u0000\u0000\u0184\u0629\u0001\u0000\u0000\u0000\u0186\u062d\u0001\u0000"+ - "\u0000\u0000\u0188\u0631\u0001\u0000\u0000\u0000\u018a\u0635\u0001\u0000"+ - "\u0000\u0000\u018c\u063a\u0001\u0000\u0000\u0000\u018e\u063e\u0001\u0000"+ - "\u0000\u0000\u0190\u0642\u0001\u0000\u0000\u0000\u0192\u0646\u0001\u0000"+ - "\u0000\u0000\u0194\u064a\u0001\u0000\u0000\u0000\u0196\u064e\u0001\u0000"+ - "\u0000\u0000\u0198\u0654\u0001\u0000\u0000\u0000\u019a\u065b\u0001\u0000"+ - "\u0000\u0000\u019c\u065f\u0001\u0000\u0000\u0000\u019e\u0663\u0001\u0000"+ - "\u0000\u0000\u01a0\u0667\u0001\u0000\u0000\u0000\u01a2\u066b\u0001\u0000"+ - "\u0000\u0000\u01a4\u066f\u0001\u0000\u0000\u0000\u01a6\u0673\u0001\u0000"+ - "\u0000\u0000\u01a8\u0678\u0001\u0000\u0000\u0000\u01aa\u067e\u0001\u0000"+ - "\u0000\u0000\u01ac\u0682\u0001\u0000\u0000\u0000\u01ae\u0686\u0001\u0000"+ - "\u0000\u0000\u01b0\u068a\u0001\u0000\u0000\u0000\u01b2\u068e\u0001\u0000"+ - "\u0000\u0000\u01b4\u0692\u0001\u0000\u0000\u0000\u01b6\u0696\u0001\u0000"+ - "\u0000\u0000\u01b8\u069a\u0001\u0000\u0000\u0000\u01ba\u069e\u0001\u0000"+ - "\u0000\u0000\u01bc\u06a2\u0001\u0000\u0000\u0000\u01be\u06a6\u0001\u0000"+ - "\u0000\u0000\u01c0\u06ab\u0001\u0000\u0000\u0000\u01c2\u06b1\u0001\u0000"+ - "\u0000\u0000\u01c4\u06b5\u0001\u0000\u0000\u0000\u01c6\u06b9\u0001\u0000"+ - "\u0000\u0000\u01c8\u06bd\u0001\u0000\u0000\u0000\u01ca\u06c1\u0001\u0000"+ - "\u0000\u0000\u01cc\u06c5\u0001\u0000\u0000\u0000\u01ce\u06cd\u0001\u0000"+ - "\u0000\u0000\u01d0\u06e2\u0001\u0000\u0000\u0000\u01d2\u06e6\u0001\u0000"+ - "\u0000\u0000\u01d4\u06ea\u0001\u0000\u0000\u0000\u01d6\u06ee\u0001\u0000"+ - "\u0000\u0000\u01d8\u06f2\u0001\u0000\u0000\u0000\u01da\u06f6\u0001\u0000"+ - "\u0000\u0000\u01dc\u06fb\u0001\u0000\u0000\u0000\u01de\u0701\u0001\u0000"+ - "\u0000\u0000\u01e0\u0705\u0001\u0000\u0000\u0000\u01e2\u0709\u0001\u0000"+ - "\u0000\u0000\u01e4\u070d\u0001\u0000\u0000\u0000\u01e6\u0711\u0001\u0000"+ - "\u0000\u0000\u01e8\u0715\u0001\u0000\u0000\u0000\u01ea\u0719\u0001\u0000"+ - "\u0000\u0000\u01ec\u071d\u0001\u0000\u0000\u0000\u01ee\u0720\u0001\u0000"+ - "\u0000\u0000\u01f0\u0724\u0001\u0000\u0000\u0000\u01f2\u0728\u0001\u0000"+ - "\u0000\u0000\u01f4\u072c\u0001\u0000\u0000\u0000\u01f6\u0730\u0001\u0000"+ - "\u0000\u0000\u01f8\u0735\u0001\u0000\u0000\u0000\u01fa\u073a\u0001\u0000"+ - "\u0000\u0000\u01fc\u073e\u0001\u0000\u0000\u0000\u01fe\u0742\u0001\u0000"+ - "\u0000\u0000\u0200\u0201\u0005/\u0000\u0000\u0201\u0202\u0005/\u0000\u0000"+ - "\u0202\u0206\u0001\u0000\u0000\u0000\u0203\u0205\b\u0000\u0000\u0000\u0204"+ - "\u0203\u0001\u0000\u0000\u0000\u0205\u0208\u0001\u0000\u0000\u0000\u0206"+ - "\u0204\u0001\u0000\u0000\u0000\u0206\u0207\u0001\u0000\u0000\u0000\u0207"+ - "\u020a\u0001\u0000\u0000\u0000\u0208\u0206\u0001\u0000\u0000\u0000\u0209"+ - "\u020b\u0005\r\u0000\u0000\u020a\u0209\u0001\u0000\u0000\u0000\u020a\u020b"+ - "\u0001\u0000\u0000\u0000\u020b\u020d\u0001\u0000\u0000\u0000\u020c\u020e"+ - "\u0005\n\u0000\u0000\u020d\u020c\u0001\u0000\u0000\u0000\u020d\u020e\u0001"+ - "\u0000\u0000\u0000\u020e\u020f\u0001\u0000\u0000\u0000\u020f\u0210\u0006"+ - "\u0000\u0000\u0000\u0210\u0011\u0001\u0000\u0000\u0000\u0211\u0212\u0005"+ - "/\u0000\u0000\u0212\u0213\u0005*\u0000\u0000\u0213\u0218\u0001\u0000\u0000"+ - "\u0000\u0214\u0217\u0003\u0012\u0001\u0000\u0215\u0217\t\u0000\u0000\u0000"+ - "\u0216\u0214\u0001\u0000\u0000\u0000\u0216\u0215\u0001\u0000\u0000\u0000"+ - "\u0217\u021a\u0001\u0000\u0000\u0000\u0218\u0219\u0001\u0000\u0000\u0000"+ - "\u0218\u0216\u0001\u0000\u0000\u0000\u0219\u021b\u0001\u0000\u0000\u0000"+ - "\u021a\u0218\u0001\u0000\u0000\u0000\u021b\u021c\u0005*\u0000\u0000\u021c"+ - "\u021d\u0005/\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021e\u021f"+ - "\u0006\u0001\u0000\u0000\u021f\u0013\u0001\u0000\u0000\u0000\u0220\u0222"+ - "\u0007\u0001\u0000\u0000\u0221\u0220\u0001\u0000\u0000\u0000\u0222\u0223"+ - "\u0001\u0000\u0000\u0000\u0223\u0221\u0001\u0000\u0000\u0000\u0223\u0224"+ - "\u0001\u0000\u0000\u0000\u0224\u0225\u0001\u0000\u0000\u0000\u0225\u0226"+ - "\u0006\u0002\u0000\u0000\u0226\u0015\u0001\u0000\u0000\u0000\u0227\u0228"+ - "\u0007\u0002\u0000\u0000\u0228\u0229\u0007\u0003\u0000\u0000\u0229\u022a"+ - "\u0007\u0004\u0000\u0000\u022a\u022b\u0007\u0005\u0000\u0000\u022b\u022c"+ - "\u0007\u0006\u0000\u0000\u022c\u022d\u0007\u0007\u0000\u0000\u022d\u022e"+ - "\u0005_\u0000\u0000\u022e\u022f\u0007\b\u0000\u0000\u022f\u0230\u0007"+ - "\t\u0000\u0000\u0230\u0231\u0007\n\u0000\u0000\u0231\u0232\u0007\u0005"+ - "\u0000\u0000\u0232\u0233\u0007\u000b\u0000\u0000\u0233\u0234\u0001\u0000"+ - "\u0000\u0000\u0234\u0235\u0006\u0003\u0001\u0000\u0235\u0017\u0001\u0000"+ - "\u0000\u0000\u0236\u0237\u0007\u0007\u0000\u0000\u0237\u0238\u0007\u0005"+ - "\u0000\u0000\u0238\u0239\u0007\f\u0000\u0000\u0239\u023a\u0007\n\u0000"+ - "\u0000\u023a\u023b\u0007\u0002\u0000\u0000\u023b\u023c\u0007\u0003\u0000"+ - "\u0000\u023c\u023d\u0001\u0000\u0000\u0000\u023d\u023e\u0006\u0004\u0002"+ - "\u0000\u023e\u0019\u0001\u0000\u0000\u0000\u023f\u0240\u0004\u0005\u0000"+ - "\u0000\u0240\u0241\u0007\u0007\u0000\u0000\u0241\u0242\u0007\r\u0000\u0000"+ - "\u0242\u0243\u0007\b\u0000\u0000\u0243\u0244\u0007\u000e\u0000\u0000\u0244"+ - "\u0245\u0007\u0004\u0000\u0000\u0245\u0246\u0007\n\u0000\u0000\u0246\u0247"+ - "\u0007\u0005\u0000\u0000\u0247\u0248\u0001\u0000\u0000\u0000\u0248\u0249"+ - "\u0006\u0005\u0003\u0000\u0249\u001b\u0001\u0000\u0000\u0000\u024a\u024b"+ - "\u0007\u0002\u0000\u0000\u024b\u024c\u0007\t\u0000\u0000\u024c\u024d\u0007"+ - "\u000f\u0000\u0000\u024d\u024e\u0007\b\u0000\u0000\u024e\u024f\u0007\u000e"+ - "\u0000\u0000\u024f\u0250\u0007\u0007\u0000\u0000\u0250\u0251\u0007\u000b"+ - "\u0000\u0000\u0251\u0252\u0007\n\u0000\u0000\u0252\u0253\u0007\t\u0000"+ - "\u0000\u0253\u0254\u0007\u0005\u0000\u0000\u0254\u0255\u0001\u0000\u0000"+ - "\u0000\u0255\u0256\u0006\u0006\u0004\u0000\u0256\u001d\u0001\u0000\u0000"+ - "\u0000\u0257\u0258\u0007\u0010\u0000\u0000\u0258\u0259\u0007\n\u0000\u0000"+ - "\u0259\u025a\u0007\u0011\u0000\u0000\u025a\u025b\u0007\u0011\u0000\u0000"+ - "\u025b\u025c\u0007\u0007\u0000\u0000\u025c\u025d\u0007\u0002\u0000\u0000"+ - "\u025d\u025e\u0007\u000b\u0000\u0000\u025e\u025f\u0001\u0000\u0000\u0000"+ - "\u025f\u0260\u0006\u0007\u0004\u0000\u0260\u001f\u0001\u0000\u0000\u0000"+ - "\u0261\u0262\u0007\u0007\u0000\u0000\u0262\u0263\u0007\u0012\u0000\u0000"+ - "\u0263\u0264\u0007\u0004\u0000\u0000\u0264\u0265\u0007\u000e\u0000\u0000"+ - "\u0265\u0266\u0001\u0000\u0000\u0000\u0266\u0267\u0006\b\u0004\u0000\u0267"+ - "!\u0001\u0000\u0000\u0000\u0268\u0269\u0007\u0006\u0000\u0000\u0269\u026a"+ - "\u0007\f\u0000\u0000\u026a\u026b\u0007\t\u0000\u0000\u026b\u026c\u0007"+ - "\u0013\u0000\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u026e\u0006"+ - "\t\u0004\u0000\u026e#\u0001\u0000\u0000\u0000\u026f\u0270\u0007\u000e"+ - "\u0000\u0000\u0270\u0271\u0007\n\u0000\u0000\u0271\u0272\u0007\u000f\u0000"+ - "\u0000\u0272\u0273\u0007\n\u0000\u0000\u0273\u0274\u0007\u000b\u0000\u0000"+ - "\u0274\u0275\u0001\u0000\u0000\u0000\u0275\u0276\u0006\n\u0004\u0000\u0276"+ - "%\u0001\u0000\u0000\u0000\u0277\u0278\u0007\f\u0000\u0000\u0278\u0279"+ - "\u0007\u0007\u0000\u0000\u0279\u027a\u0007\f\u0000\u0000\u027a\u027b\u0007"+ - "\u0004\u0000\u0000\u027b\u027c\u0007\u0005\u0000\u0000\u027c\u027d\u0007"+ - "\u0013\u0000\u0000\u027d\u027e\u0001\u0000\u0000\u0000\u027e\u027f\u0006"+ - "\u000b\u0004\u0000\u027f\'\u0001\u0000\u0000\u0000\u0280\u0281\u0007\f"+ - "\u0000\u0000\u0281\u0282\u0007\t\u0000\u0000\u0282\u0283\u0007\u0014\u0000"+ - "\u0000\u0283\u0284\u0001\u0000\u0000\u0000\u0284\u0285\u0006\f\u0004\u0000"+ - "\u0285)\u0001\u0000\u0000\u0000\u0286\u0287\u0007\u0011\u0000\u0000\u0287"+ - "\u0288\u0007\u0004\u0000\u0000\u0288\u0289\u0007\u000f\u0000\u0000\u0289"+ - "\u028a\u0007\b\u0000\u0000\u028a\u028b\u0007\u000e\u0000\u0000\u028b\u028c"+ - "\u0007\u0007\u0000\u0000\u028c\u028d\u0001\u0000\u0000\u0000\u028d\u028e"+ - "\u0006\r\u0004\u0000\u028e+\u0001\u0000\u0000\u0000\u028f\u0290\u0007"+ - "\u0011\u0000\u0000\u0290\u0291\u0007\t\u0000\u0000\u0291\u0292\u0007\f"+ - "\u0000\u0000\u0292\u0293\u0007\u000b\u0000\u0000\u0293\u0294\u0001\u0000"+ - "\u0000\u0000\u0294\u0295\u0006\u000e\u0004\u0000\u0295-\u0001\u0000\u0000"+ - "\u0000\u0296\u0297\u0007\u0011\u0000\u0000\u0297\u0298\u0007\u000b\u0000"+ - "\u0000\u0298\u0299\u0007\u0004\u0000\u0000\u0299\u029a\u0007\u000b\u0000"+ - "\u0000\u029a\u029b\u0007\u0011\u0000\u0000\u029b\u029c\u0001\u0000\u0000"+ - "\u0000\u029c\u029d\u0006\u000f\u0004\u0000\u029d/\u0001\u0000\u0000\u0000"+ - "\u029e\u029f\u0007\u0014\u0000\u0000\u029f\u02a0\u0007\u0003\u0000\u0000"+ - "\u02a0\u02a1\u0007\u0007\u0000\u0000\u02a1\u02a2\u0007\f\u0000\u0000\u02a2"+ - "\u02a3\u0007\u0007\u0000\u0000\u02a3\u02a4\u0001\u0000\u0000\u0000\u02a4"+ - "\u02a5\u0006\u0010\u0004\u0000\u02a51\u0001\u0000\u0000\u0000\u02a6\u02a7"+ - "\u0004\u0011\u0001\u0000\u02a7\u02a8\u0007\n\u0000\u0000\u02a8\u02a9\u0007"+ - "\u0005\u0000\u0000\u02a9\u02aa\u0007\u000e\u0000\u0000\u02aa\u02ab\u0007"+ - "\n\u0000\u0000\u02ab\u02ac\u0007\u0005\u0000\u0000\u02ac\u02ad\u0007\u0007"+ - "\u0000\u0000\u02ad\u02ae\u0007\u0011\u0000\u0000\u02ae\u02af\u0007\u000b"+ - "\u0000\u0000\u02af\u02b0\u0007\u0004\u0000\u0000\u02b0\u02b1\u0007\u000b"+ - "\u0000\u0000\u02b1\u02b2\u0007\u0011\u0000\u0000\u02b2\u02b3\u0001\u0000"+ - "\u0000\u0000\u02b3\u02b4\u0006\u0011\u0004\u0000\u02b43\u0001\u0000\u0000"+ - "\u0000\u02b5\u02b6\u0007\u0015\u0000\u0000\u02b6\u02b7\u0007\f\u0000\u0000"+ - "\u02b7\u02b8\u0007\t\u0000\u0000\u02b8\u02b9\u0007\u000f\u0000\u0000\u02b9"+ - "\u02ba\u0001\u0000\u0000\u0000\u02ba\u02bb\u0006\u0012\u0005\u0000\u02bb"+ - "5\u0001\u0000\u0000\u0000\u02bc\u02bd\u0004\u0013\u0002\u0000\u02bd\u02be"+ - "\u0007\u000b\u0000\u0000\u02be\u02bf\u0007\u0011\u0000\u0000\u02bf\u02c0"+ - "\u0001\u0000\u0000\u0000\u02c0\u02c1\u0006\u0013\u0005\u0000\u02c17\u0001"+ - "\u0000\u0000\u0000\u02c2\u02c3\u0007\u0015\u0000\u0000\u02c3\u02c4\u0007"+ - "\t\u0000\u0000\u02c4\u02c5\u0007\f\u0000\u0000\u02c5\u02c6\u0007\u0013"+ - "\u0000\u0000\u02c6\u02c7\u0001\u0000\u0000\u0000\u02c7\u02c8\u0006\u0014"+ - "\u0006\u0000\u02c89\u0001\u0000\u0000\u0000\u02c9\u02ca\u0004\u0015\u0003"+ - "\u0000\u02ca\u02cb\u0007\u0015\u0000\u0000\u02cb\u02cc\u0007\u0016\u0000"+ - "\u0000\u02cc\u02cd\u0007\u0011\u0000\u0000\u02cd\u02ce\u0007\u0007\u0000"+ - "\u0000\u02ce\u02cf\u0001\u0000\u0000\u0000\u02cf\u02d0\u0006\u0015\u0004"+ - "\u0000\u02d0;\u0001\u0000\u0000\u0000\u02d1\u02d2\u0007\u000e\u0000\u0000"+ - "\u02d2\u02d3\u0007\t\u0000\u0000\u02d3\u02d4\u0007\t\u0000\u0000\u02d4"+ - "\u02d5\u0007\u0013\u0000\u0000\u02d5\u02d6\u0007\u0016\u0000\u0000\u02d6"+ - "\u02d7\u0007\b\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02d9"+ - "\u0006\u0016\u0007\u0000\u02d9=\u0001\u0000\u0000\u0000\u02da\u02db\u0004"+ - "\u0017\u0004\u0000\u02db\u02dc\u0007\u0015\u0000\u0000\u02dc\u02dd\u0007"+ - "\u0016\u0000\u0000\u02dd\u02de\u0007\u000e\u0000\u0000\u02de\u02df\u0007"+ - "\u000e\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000\u02e0\u02e1\u0006"+ - "\u0017\u0007\u0000\u02e1?\u0001\u0000\u0000\u0000\u02e2\u02e3\u0004\u0018"+ - "\u0005\u0000\u02e3\u02e4\u0007\u000e\u0000\u0000\u02e4\u02e5\u0007\u0007"+ - "\u0000\u0000\u02e5\u02e6\u0007\u0015\u0000\u0000\u02e6\u02e7\u0007\u000b"+ - "\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000\u02e8\u02e9\u0006\u0018"+ - "\u0007\u0000\u02e9A\u0001\u0000\u0000\u0000\u02ea\u02eb\u0004\u0019\u0006"+ - "\u0000\u02eb\u02ec\u0007\f\u0000\u0000\u02ec\u02ed\u0007\n\u0000\u0000"+ - "\u02ed\u02ee\u0007\u0006\u0000\u0000\u02ee\u02ef\u0007\u0003\u0000\u0000"+ - "\u02ef\u02f0\u0007\u000b\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000"+ - "\u02f1\u02f2\u0006\u0019\u0007\u0000\u02f2C\u0001\u0000\u0000\u0000\u02f3"+ - "\u02f4\u0004\u001a\u0007\u0000\u02f4\u02f5\u0007\u000e\u0000\u0000\u02f5"+ - "\u02f6\u0007\t\u0000\u0000\u02f6\u02f7\u0007\t\u0000\u0000\u02f7\u02f8"+ - "\u0007\u0013\u0000\u0000\u02f8\u02f9\u0007\u0016\u0000\u0000\u02f9\u02fa"+ - "\u0007\b\u0000\u0000\u02fa\u02fb\u0005_\u0000\u0000\u02fb\u02fc\u0005"+ - "\u8001\uf414\u0000\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000\u02fd\u02fe"+ - "\u0006\u001a\b\u0000\u02feE\u0001\u0000\u0000\u0000\u02ff\u0300\u0007"+ - "\u000f\u0000\u0000\u0300\u0301\u0007\u0012\u0000\u0000\u0301\u0302\u0005"+ - "_\u0000\u0000\u0302\u0303\u0007\u0007\u0000\u0000\u0303\u0304\u0007\r"+ - "\u0000\u0000\u0304\u0305\u0007\b\u0000\u0000\u0305\u0306\u0007\u0004\u0000"+ - "\u0000\u0306\u0307\u0007\u0005\u0000\u0000\u0307\u0308\u0007\u0010\u0000"+ - "\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0309\u030a\u0006\u001b\t\u0000"+ - "\u030aG\u0001\u0000\u0000\u0000\u030b\u030c\u0007\u0010\u0000\u0000\u030c"+ - "\u030d\u0007\f\u0000\u0000\u030d\u030e\u0007\t\u0000\u0000\u030e\u030f"+ - "\u0007\b\u0000\u0000\u030f\u0310\u0001\u0000\u0000\u0000\u0310\u0311\u0006"+ - "\u001c\n\u0000\u0311I\u0001\u0000\u0000\u0000\u0312\u0313\u0007\u0013"+ - "\u0000\u0000\u0313\u0314\u0007\u0007\u0000\u0000\u0314\u0315\u0007\u0007"+ - "\u0000\u0000\u0315\u0316\u0007\b\u0000\u0000\u0316\u0317\u0001\u0000\u0000"+ - "\u0000\u0317\u0318\u0006\u001d\n\u0000\u0318K\u0001\u0000\u0000\u0000"+ - "\u0319\u031a\u0004\u001e\b\u0000\u031a\u031b\u0007\n\u0000\u0000\u031b"+ - "\u031c\u0007\u0005\u0000\u0000\u031c\u031d\u0007\u0011\u0000\u0000\u031d"+ - "\u031e\u0007\n\u0000\u0000\u031e\u031f\u0007\u0011\u0000\u0000\u031f\u0320"+ - "\u0007\u000b\u0000\u0000\u0320\u0321\u0005_\u0000\u0000\u0321\u0322\u0005"+ - "\u8001\uf414\u0000\u0000\u0322\u0323\u0001\u0000\u0000\u0000\u0323\u0324"+ - "\u0006\u001e\n\u0000\u0324M\u0001\u0000\u0000\u0000\u0325\u0326\u0007"+ - "\f\u0000\u0000\u0326\u0327\u0007\u0007\u0000\u0000\u0327\u0328\u0007\u0005"+ - "\u0000\u0000\u0328\u0329\u0007\u0004\u0000\u0000\u0329\u032a\u0007\u000f"+ - "\u0000\u0000\u032a\u032b\u0007\u0007\u0000\u0000\u032b\u032c\u0001\u0000"+ - "\u0000\u0000\u032c\u032d\u0006\u001f\u000b\u0000\u032dO\u0001\u0000\u0000"+ - "\u0000\u032e\u032f\u0007\u0011\u0000\u0000\u032f\u0330\u0007\u0003\u0000"+ - "\u0000\u0330\u0331\u0007\t\u0000\u0000\u0331\u0332\u0007\u0014\u0000\u0000"+ - "\u0332\u0333\u0001\u0000\u0000\u0000\u0333\u0334\u0006 \f\u0000\u0334"+ - "Q\u0001\u0000\u0000\u0000\u0335\u0337\b\u0017\u0000\u0000\u0336\u0335"+ - "\u0001\u0000\u0000\u0000\u0337\u0338\u0001\u0000\u0000\u0000\u0338\u0336"+ - "\u0001\u0000\u0000\u0000\u0338\u0339\u0001\u0000\u0000\u0000\u0339\u033a"+ - "\u0001\u0000\u0000\u0000\u033a\u033b\u0006!\u0004\u0000\u033bS\u0001\u0000"+ - "\u0000\u0000\u033c\u033d\u0003\u00b6S\u0000\u033d\u033e\u0001\u0000\u0000"+ - "\u0000\u033e\u033f\u0006\"\r\u0000\u033f\u0340\u0006\"\u000e\u0000\u0340"+ - "U\u0001\u0000\u0000\u0000\u0341\u0342\u0003\u012c\u008e\u0000\u0342\u0343"+ - "\u0001\u0000\u0000\u0000\u0343\u0344\u0006#\u000f\u0000\u0344\u0345\u0006"+ - "#\u000e\u0000\u0345\u0346\u0006#\u000e\u0000\u0346W\u0001\u0000\u0000"+ - "\u0000\u0347\u0348\u0003\u00f6s\u0000\u0348\u0349\u0001\u0000\u0000\u0000"+ - "\u0349\u034a\u0006$\u0010\u0000\u034aY\u0001\u0000\u0000\u0000\u034b\u034c"+ - "\u0003\u01ec\u00ee\u0000\u034c\u034d\u0001\u0000\u0000\u0000\u034d\u034e"+ - "\u0006%\u0011\u0000\u034e[\u0001\u0000\u0000\u0000\u034f\u0350\u0003\u00e2"+ - "i\u0000\u0350\u0351\u0001\u0000\u0000\u0000\u0351\u0352\u0006&\u0012\u0000"+ - "\u0352]\u0001\u0000\u0000\u0000\u0353\u0354\u0003\u00deg\u0000\u0354\u0355"+ - "\u0001\u0000\u0000\u0000\u0355\u0356\u0006\'\u0013\u0000\u0356_\u0001"+ - "\u0000\u0000\u0000\u0357\u0358\u0003\u0132\u0091\u0000\u0358\u0359\u0001"+ - "\u0000\u0000\u0000\u0359\u035a\u0006(\u0014\u0000\u035aa\u0001\u0000\u0000"+ - "\u0000\u035b\u035c\u0003\u012e\u008f\u0000\u035c\u035d\u0001\u0000\u0000"+ - "\u0000\u035d\u035e\u0006)\u0015\u0000\u035ec\u0001\u0000\u0000\u0000\u035f"+ - "\u0360\u0003\u0010\u0000\u0000\u0360\u0361\u0001\u0000\u0000\u0000\u0361"+ - "\u0362\u0006*\u0000\u0000\u0362e\u0001\u0000\u0000\u0000\u0363\u0364\u0003"+ - "\u0012\u0001\u0000\u0364\u0365\u0001\u0000\u0000\u0000\u0365\u0366\u0006"+ - "+\u0000\u0000\u0366g\u0001\u0000\u0000\u0000\u0367\u0368\u0003\u0014\u0002"+ - "\u0000\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u036a\u0006,\u0000\u0000"+ - "\u036ai\u0001\u0000\u0000\u0000\u036b\u036c\u0003\u00b6S\u0000\u036c\u036d"+ - "\u0001\u0000\u0000\u0000\u036d\u036e\u0006-\r\u0000\u036e\u036f\u0006"+ - "-\u000e\u0000\u036fk\u0001\u0000\u0000\u0000\u0370\u0371\u0003\u012c\u008e"+ - "\u0000\u0371\u0372\u0001\u0000\u0000\u0000\u0372\u0373\u0006.\u000f\u0000"+ - "\u0373\u0374\u0006.\u000e\u0000\u0374\u0375\u0006.\u000e\u0000\u0375m"+ - "\u0001\u0000\u0000\u0000\u0376\u0377\u0003\u0126\u008b\u0000\u0377\u0378"+ - "\u0001\u0000\u0000\u0000\u0378\u0379\u0006/\u0016\u0000\u0379\u037a\u0006"+ - "/\u0017\u0000\u037ao\u0001\u0000\u0000\u0000\u037b\u037c\u0003\u00f6s"+ - "\u0000\u037c\u037d\u0001\u0000\u0000\u0000\u037d\u037e\u00060\u0010\u0000"+ - "\u037e\u037f\u00060\u0018\u0000\u037fq\u0001\u0000\u0000\u0000\u0380\u0381"+ - "\u0003\u0100x\u0000\u0381\u0382\u0001\u0000\u0000\u0000\u0382\u0383\u0006"+ - "1\u0019\u0000\u0383\u0384\u00061\u0018\u0000\u0384s\u0001\u0000\u0000"+ - "\u0000\u0385\u0386\b\u0018\u0000\u0000\u0386u\u0001\u0000\u0000\u0000"+ - "\u0387\u0389\u0003t2\u0000\u0388\u0387\u0001\u0000\u0000\u0000\u0389\u038a"+ - "\u0001\u0000\u0000\u0000\u038a\u0388\u0001\u0000\u0000\u0000\u038a\u038b"+ - "\u0001\u0000\u0000\u0000\u038b\u038c\u0001\u0000\u0000\u0000\u038c\u038d"+ - "\u0003\u00dcf\u0000\u038d\u038f\u0001\u0000\u0000\u0000\u038e\u0388\u0001"+ - "\u0000\u0000\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f\u0391\u0001"+ - "\u0000\u0000\u0000\u0390\u0392\u0003t2\u0000\u0391\u0390\u0001\u0000\u0000"+ - "\u0000\u0392\u0393\u0001\u0000\u0000\u0000\u0393\u0391\u0001\u0000\u0000"+ - "\u0000\u0393\u0394\u0001\u0000\u0000\u0000\u0394w\u0001\u0000\u0000\u0000"+ - "\u0395\u0396\u0003v3\u0000\u0396\u0397\u0001\u0000\u0000\u0000\u0397\u0398"+ - "\u00064\u001a\u0000\u0398y\u0001\u0000\u0000\u0000\u0399\u039a\u0003\u00cc"+ - "^\u0000\u039a\u039b\u0001\u0000\u0000\u0000\u039b\u039c\u00065\u001b\u0000"+ - "\u039c{\u0001\u0000\u0000\u0000\u039d\u039e\u0003\u0010\u0000\u0000\u039e"+ - "\u039f\u0001\u0000\u0000\u0000\u039f\u03a0\u00066\u0000\u0000\u03a0}\u0001"+ - "\u0000\u0000\u0000\u03a1\u03a2\u0003\u0012\u0001\u0000\u03a2\u03a3\u0001"+ - "\u0000\u0000\u0000\u03a3\u03a4\u00067\u0000\u0000\u03a4\u007f\u0001\u0000"+ - "\u0000\u0000\u03a5\u03a6\u0003\u0014\u0002\u0000\u03a6\u03a7\u0001\u0000"+ - "\u0000\u0000\u03a7\u03a8\u00068\u0000\u0000\u03a8\u0081\u0001\u0000\u0000"+ - "\u0000\u03a9\u03aa\u0003\u00b6S\u0000\u03aa\u03ab\u0001\u0000\u0000\u0000"+ - "\u03ab\u03ac\u00069\r\u0000\u03ac\u03ad\u00069\u000e\u0000\u03ad\u03ae"+ - "\u00069\u000e\u0000\u03ae\u0083\u0001\u0000\u0000\u0000\u03af\u03b0\u0003"+ - "\u012c\u008e\u0000\u03b0\u03b1\u0001\u0000\u0000\u0000\u03b1\u03b2\u0006"+ - ":\u000f\u0000\u03b2\u03b3\u0006:\u000e\u0000\u03b3\u03b4\u0006:\u000e"+ - "\u0000\u03b4\u03b5\u0006:\u000e\u0000\u03b5\u0085\u0001\u0000\u0000\u0000"+ - "\u03b6\u03b7\u0003\u00d6c\u0000\u03b7\u03b8\u0001\u0000\u0000\u0000\u03b8"+ - "\u03b9\u0006;\u001c\u0000\u03b9\u0087\u0001\u0000\u0000\u0000\u03ba\u03bb"+ - "\u0003\u00deg\u0000\u03bb\u03bc\u0001\u0000\u0000\u0000\u03bc\u03bd\u0006"+ - "<\u0013\u0000\u03bd\u0089\u0001\u0000\u0000\u0000\u03be\u03bf\u0003\u00e2"+ - "i\u0000\u03bf\u03c0\u0001\u0000\u0000\u0000\u03c0\u03c1\u0006=\u0012\u0000"+ - "\u03c1\u008b\u0001\u0000\u0000\u0000\u03c2\u03c3\u0003\u0100x\u0000\u03c3"+ - "\u03c4\u0001\u0000\u0000\u0000\u03c4\u03c5\u0006>\u0019\u0000\u03c5\u008d"+ - "\u0001\u0000\u0000\u0000\u03c6\u03c7\u0003\u01d2\u00e1\u0000\u03c7\u03c8"+ - "\u0001\u0000\u0000\u0000\u03c8\u03c9\u0006?\u001d\u0000\u03c9\u008f\u0001"+ - "\u0000\u0000\u0000\u03ca\u03cb\u0003\u0132\u0091\u0000\u03cb\u03cc\u0001"+ - "\u0000\u0000\u0000\u03cc\u03cd\u0006@\u0014\u0000\u03cd\u0091\u0001\u0000"+ - "\u0000\u0000\u03ce\u03cf\u0003\u00fau\u0000\u03cf\u03d0\u0001\u0000\u0000"+ - "\u0000\u03d0\u03d1\u0006A\u001e\u0000\u03d1\u0093\u0001\u0000\u0000\u0000"+ - "\u03d2\u03d3\u0003\u0122\u0089\u0000\u03d3\u03d4\u0001\u0000\u0000\u0000"+ - "\u03d4\u03d5\u0006B\u001f\u0000\u03d5\u0095\u0001\u0000\u0000\u0000\u03d6"+ - "\u03d7\u0003\u011e\u0087\u0000\u03d7\u03d8\u0001\u0000\u0000\u0000\u03d8"+ - "\u03d9\u0006C \u0000\u03d9\u0097\u0001\u0000\u0000\u0000\u03da\u03db\u0003"+ - "\u0124\u008a\u0000\u03db\u03dc\u0001\u0000\u0000\u0000\u03dc\u03dd\u0006"+ - "D!\u0000\u03dd\u0099\u0001\u0000\u0000\u0000\u03de\u03df\u0003\u0010\u0000"+ - "\u0000\u03df\u03e0\u0001\u0000\u0000\u0000\u03e0\u03e1\u0006E\u0000\u0000"+ - "\u03e1\u009b\u0001\u0000\u0000\u0000\u03e2\u03e3\u0003\u0012\u0001\u0000"+ - "\u03e3\u03e4\u0001\u0000\u0000\u0000\u03e4\u03e5\u0006F\u0000\u0000\u03e5"+ - "\u009d\u0001\u0000\u0000\u0000\u03e6\u03e7\u0003\u0014\u0002\u0000\u03e7"+ - "\u03e8\u0001\u0000\u0000\u0000\u03e8\u03e9\u0006G\u0000\u0000\u03e9\u009f"+ - "\u0001\u0000\u0000\u0000\u03ea\u03eb\u0003\u0128\u008c\u0000\u03eb\u03ec"+ - "\u0001\u0000\u0000\u0000\u03ec\u03ed\u0006H\"\u0000\u03ed\u03ee\u0006"+ - "H\u000e\u0000\u03ee\u00a1\u0001\u0000\u0000\u0000\u03ef\u03f0\u0003\u00dc"+ - "f\u0000\u03f0\u03f1\u0001\u0000\u0000\u0000\u03f1\u03f2\u0006I#\u0000"+ - "\u03f2\u00a3\u0001\u0000\u0000\u0000\u03f3\u03f9\u0003\u00c2Y\u0000\u03f4"+ - "\u03f9\u0003\u00b8T\u0000\u03f5\u03f9\u0003\u00e2i\u0000\u03f6\u03f9\u0003"+ - "\u00baU\u0000\u03f7\u03f9\u0003\u00c8\\\u0000\u03f8\u03f3\u0001\u0000"+ - "\u0000\u0000\u03f8\u03f4\u0001\u0000\u0000\u0000\u03f8\u03f5\u0001\u0000"+ - "\u0000\u0000\u03f8\u03f6\u0001\u0000\u0000\u0000\u03f8\u03f7\u0001\u0000"+ - "\u0000\u0000\u03f9\u03fa\u0001\u0000\u0000\u0000\u03fa\u03f8\u0001\u0000"+ - "\u0000\u0000\u03fa\u03fb\u0001\u0000\u0000\u0000\u03fb\u00a5\u0001\u0000"+ - "\u0000\u0000\u03fc\u03fd\u0003\u0010\u0000\u0000\u03fd\u03fe\u0001\u0000"+ - "\u0000\u0000\u03fe\u03ff\u0006K\u0000\u0000\u03ff\u00a7\u0001\u0000\u0000"+ - "\u0000\u0400\u0401\u0003\u0012\u0001\u0000\u0401\u0402\u0001\u0000\u0000"+ - "\u0000\u0402\u0403\u0006L\u0000\u0000\u0403\u00a9\u0001\u0000\u0000\u0000"+ - "\u0404\u0405\u0003\u0014\u0002\u0000\u0405\u0406\u0001\u0000\u0000\u0000"+ - "\u0406\u0407\u0006M\u0000\u0000\u0407\u00ab\u0001\u0000\u0000\u0000\u0408"+ - "\u0409\u0003\u012a\u008d\u0000\u0409\u040a\u0001\u0000\u0000\u0000\u040a"+ - "\u040b\u0006N$\u0000\u040b\u040c\u0006N%\u0000\u040c\u00ad\u0001\u0000"+ - "\u0000\u0000\u040d\u040e\u0003\u00b6S\u0000\u040e\u040f\u0001\u0000\u0000"+ - "\u0000\u040f\u0410\u0006O\r\u0000\u0410\u0411\u0006O\u000e\u0000\u0411"+ - "\u00af\u0001\u0000\u0000\u0000\u0412\u0413\u0003\u0014\u0002\u0000\u0413"+ - "\u0414\u0001\u0000\u0000\u0000\u0414\u0415\u0006P\u0000\u0000\u0415\u00b1"+ - "\u0001\u0000\u0000\u0000\u0416\u0417\u0003\u0010\u0000\u0000\u0417\u0418"+ - "\u0001\u0000\u0000\u0000\u0418\u0419\u0006Q\u0000\u0000\u0419\u00b3\u0001"+ - "\u0000\u0000\u0000\u041a\u041b\u0003\u0012\u0001\u0000\u041b\u041c\u0001"+ - "\u0000\u0000\u0000\u041c\u041d\u0006R\u0000\u0000\u041d\u00b5\u0001\u0000"+ - "\u0000\u0000\u041e\u041f\u0005|\u0000\u0000\u041f\u0420\u0001\u0000\u0000"+ - "\u0000\u0420\u0421\u0006S\u000e\u0000\u0421\u00b7\u0001\u0000\u0000\u0000"+ - "\u0422\u0423\u0007\u0019\u0000\u0000\u0423\u00b9\u0001\u0000\u0000\u0000"+ - "\u0424\u0425\u0007\u001a\u0000\u0000\u0425\u00bb\u0001\u0000\u0000\u0000"+ - "\u0426\u0427\u0005\\\u0000\u0000\u0427\u0428\u0007\u001b\u0000\u0000\u0428"+ - "\u00bd\u0001\u0000\u0000\u0000\u0429\u042a\b\u001c\u0000\u0000\u042a\u00bf"+ - "\u0001\u0000\u0000\u0000\u042b\u042d\u0007\u0007\u0000\u0000\u042c\u042e"+ - "\u0007\u001d\u0000\u0000\u042d\u042c\u0001\u0000\u0000\u0000\u042d\u042e"+ - "\u0001\u0000\u0000\u0000\u042e\u0430\u0001\u0000\u0000\u0000\u042f\u0431"+ - "\u0003\u00b8T\u0000\u0430\u042f\u0001\u0000\u0000\u0000\u0431\u0432\u0001"+ - "\u0000\u0000\u0000\u0432\u0430\u0001\u0000\u0000\u0000\u0432\u0433\u0001"+ - "\u0000\u0000\u0000\u0433\u00c1\u0001\u0000\u0000\u0000\u0434\u0435\u0005"+ - "@\u0000\u0000\u0435\u00c3\u0001\u0000\u0000\u0000\u0436\u0437\u0005`\u0000"+ - "\u0000\u0437\u00c5\u0001\u0000\u0000\u0000\u0438\u043c\b\u001e\u0000\u0000"+ - "\u0439\u043a\u0005`\u0000\u0000\u043a\u043c\u0005`\u0000\u0000\u043b\u0438"+ - "\u0001\u0000\u0000\u0000\u043b\u0439\u0001\u0000\u0000\u0000\u043c\u00c7"+ - "\u0001\u0000\u0000\u0000\u043d\u043e\u0005_\u0000\u0000\u043e\u00c9\u0001"+ - "\u0000\u0000\u0000\u043f\u0443\u0003\u00baU\u0000\u0440\u0443\u0003\u00b8"+ - "T\u0000\u0441\u0443\u0003\u00c8\\\u0000\u0442\u043f\u0001\u0000\u0000"+ - "\u0000\u0442\u0440\u0001\u0000\u0000\u0000\u0442\u0441\u0001\u0000\u0000"+ - "\u0000\u0443\u00cb\u0001\u0000\u0000\u0000\u0444\u0449\u0005\"\u0000\u0000"+ - "\u0445\u0448\u0003\u00bcV\u0000\u0446\u0448\u0003\u00beW\u0000\u0447\u0445"+ - "\u0001\u0000\u0000\u0000\u0447\u0446\u0001\u0000\u0000\u0000\u0448\u044b"+ - "\u0001\u0000\u0000\u0000\u0449\u0447\u0001\u0000\u0000\u0000\u0449\u044a"+ - "\u0001\u0000\u0000\u0000\u044a\u044c\u0001\u0000\u0000\u0000\u044b\u0449"+ - "\u0001\u0000\u0000\u0000\u044c\u0462\u0005\"\u0000\u0000\u044d\u044e\u0005"+ - "\"\u0000\u0000\u044e\u044f\u0005\"\u0000\u0000\u044f\u0450\u0005\"\u0000"+ - "\u0000\u0450\u0454\u0001\u0000\u0000\u0000\u0451\u0453\b\u0000\u0000\u0000"+ - "\u0452\u0451\u0001\u0000\u0000\u0000\u0453\u0456\u0001\u0000\u0000\u0000"+ - "\u0454\u0455\u0001\u0000\u0000\u0000\u0454\u0452\u0001\u0000\u0000\u0000"+ - "\u0455\u0457\u0001\u0000\u0000\u0000\u0456\u0454\u0001\u0000\u0000\u0000"+ - "\u0457\u0458\u0005\"\u0000\u0000\u0458\u0459\u0005\"\u0000\u0000\u0459"+ - "\u045a\u0005\"\u0000\u0000\u045a\u045c\u0001\u0000\u0000\u0000\u045b\u045d"+ - "\u0005\"\u0000\u0000\u045c\u045b\u0001\u0000\u0000\u0000\u045c\u045d\u0001"+ - "\u0000\u0000\u0000\u045d\u045f\u0001\u0000\u0000\u0000\u045e\u0460\u0005"+ - "\"\u0000\u0000\u045f\u045e\u0001\u0000\u0000\u0000\u045f\u0460\u0001\u0000"+ - "\u0000\u0000\u0460\u0462\u0001\u0000\u0000\u0000\u0461\u0444\u0001\u0000"+ - "\u0000\u0000\u0461\u044d\u0001\u0000\u0000\u0000\u0462\u00cd\u0001\u0000"+ - "\u0000\u0000\u0463\u0465\u0003\u00b8T\u0000\u0464\u0463\u0001\u0000\u0000"+ - "\u0000\u0465\u0466\u0001\u0000\u0000\u0000\u0466\u0464\u0001\u0000\u0000"+ - "\u0000\u0466\u0467\u0001\u0000\u0000\u0000\u0467\u00cf\u0001\u0000\u0000"+ - "\u0000\u0468\u046a\u0003\u00b8T\u0000\u0469\u0468\u0001\u0000\u0000\u0000"+ - "\u046a\u046b\u0001\u0000\u0000\u0000\u046b\u0469\u0001\u0000\u0000\u0000"+ - "\u046b\u046c\u0001\u0000\u0000\u0000\u046c\u046d\u0001\u0000\u0000\u0000"+ - "\u046d\u0471\u0003\u00e2i\u0000\u046e\u0470\u0003\u00b8T\u0000\u046f\u046e"+ - "\u0001\u0000\u0000\u0000\u0470\u0473\u0001\u0000\u0000\u0000\u0471\u046f"+ - "\u0001\u0000\u0000\u0000\u0471\u0472\u0001\u0000\u0000\u0000\u0472\u0493"+ - "\u0001\u0000\u0000\u0000\u0473\u0471\u0001\u0000\u0000\u0000\u0474\u0476"+ - "\u0003\u00e2i\u0000\u0475\u0477\u0003\u00b8T\u0000\u0476\u0475\u0001\u0000"+ - "\u0000\u0000\u0477\u0478\u0001\u0000\u0000\u0000\u0478\u0476\u0001\u0000"+ - "\u0000\u0000\u0478\u0479\u0001\u0000\u0000\u0000\u0479\u0493\u0001\u0000"+ - "\u0000\u0000\u047a\u047c\u0003\u00b8T\u0000\u047b\u047a\u0001\u0000\u0000"+ - "\u0000\u047c\u047d\u0001\u0000\u0000\u0000\u047d\u047b\u0001\u0000\u0000"+ - "\u0000\u047d\u047e\u0001\u0000\u0000\u0000\u047e\u0486\u0001\u0000\u0000"+ - "\u0000\u047f\u0483\u0003\u00e2i\u0000\u0480\u0482\u0003\u00b8T\u0000\u0481"+ - "\u0480\u0001\u0000\u0000\u0000\u0482\u0485\u0001\u0000\u0000\u0000\u0483"+ - "\u0481\u0001\u0000\u0000\u0000\u0483\u0484\u0001\u0000\u0000\u0000\u0484"+ - "\u0487\u0001\u0000\u0000\u0000\u0485\u0483\u0001\u0000\u0000\u0000\u0486"+ - "\u047f\u0001\u0000\u0000\u0000\u0486\u0487\u0001\u0000\u0000\u0000\u0487"+ - "\u0488\u0001\u0000\u0000\u0000\u0488\u0489\u0003\u00c0X\u0000\u0489\u0493"+ - "\u0001\u0000\u0000\u0000\u048a\u048c\u0003\u00e2i\u0000\u048b\u048d\u0003"+ - "\u00b8T\u0000\u048c\u048b\u0001\u0000\u0000\u0000\u048d\u048e\u0001\u0000"+ - "\u0000\u0000\u048e\u048c\u0001\u0000\u0000\u0000\u048e\u048f\u0001\u0000"+ - "\u0000\u0000\u048f\u0490\u0001\u0000\u0000\u0000\u0490\u0491\u0003\u00c0"+ - "X\u0000\u0491\u0493\u0001\u0000\u0000\u0000\u0492\u0469\u0001\u0000\u0000"+ - "\u0000\u0492\u0474\u0001\u0000\u0000\u0000\u0492\u047b\u0001\u0000\u0000"+ - "\u0000\u0492\u048a\u0001\u0000\u0000\u0000\u0493\u00d1\u0001\u0000\u0000"+ - "\u0000\u0494\u0495\u0007\u0004\u0000\u0000\u0495\u0496\u0007\u0005\u0000"+ - "\u0000\u0496\u0497\u0007\u0010\u0000\u0000\u0497\u00d3\u0001\u0000\u0000"+ - "\u0000\u0498\u0499\u0007\u0004\u0000\u0000\u0499\u049a\u0007\u0011\u0000"+ - "\u0000\u049a\u049b\u0007\u0002\u0000\u0000\u049b\u00d5\u0001\u0000\u0000"+ - "\u0000\u049c\u049d\u0005=\u0000\u0000\u049d\u00d7\u0001\u0000\u0000\u0000"+ - "\u049e\u049f\u0007\u001f\u0000\u0000\u049f\u04a0\u0007 \u0000\u0000\u04a0"+ - "\u00d9\u0001\u0000\u0000\u0000\u04a1\u04a2\u0005:\u0000\u0000\u04a2\u04a3"+ - "\u0005:\u0000\u0000\u04a3\u00db\u0001\u0000\u0000\u0000\u04a4\u04a5\u0005"+ - ":\u0000\u0000\u04a5\u00dd\u0001\u0000\u0000\u0000\u04a6\u04a7\u0005,\u0000"+ - "\u0000\u04a7\u00df\u0001\u0000\u0000\u0000\u04a8\u04a9\u0007\u0010\u0000"+ - "\u0000\u04a9\u04aa\u0007\u0007\u0000\u0000\u04aa\u04ab\u0007\u0011\u0000"+ - "\u0000\u04ab\u04ac\u0007\u0002\u0000\u0000\u04ac\u00e1\u0001\u0000\u0000"+ - "\u0000\u04ad\u04ae\u0005.\u0000\u0000\u04ae\u00e3\u0001\u0000\u0000\u0000"+ - "\u04af\u04b0\u0007\u0015\u0000\u0000\u04b0\u04b1\u0007\u0004\u0000\u0000"+ - "\u04b1\u04b2\u0007\u000e\u0000\u0000\u04b2\u04b3\u0007\u0011\u0000\u0000"+ - "\u04b3\u04b4\u0007\u0007\u0000\u0000\u04b4\u00e5\u0001\u0000\u0000\u0000"+ - "\u04b5\u04b6\u0007\u0015\u0000\u0000\u04b6\u04b7\u0007\n\u0000\u0000\u04b7"+ - "\u04b8\u0007\f\u0000\u0000\u04b8\u04b9\u0007\u0011\u0000\u0000\u04b9\u04ba"+ - "\u0007\u000b\u0000\u0000\u04ba\u00e7\u0001\u0000\u0000\u0000\u04bb\u04bc"+ - "\u0007\n\u0000\u0000\u04bc\u04bd\u0007\u0005\u0000\u0000\u04bd\u00e9\u0001"+ - "\u0000\u0000\u0000\u04be\u04bf\u0007\n\u0000\u0000\u04bf\u04c0\u0007\u0011"+ - "\u0000\u0000\u04c0\u00eb\u0001\u0000\u0000\u0000\u04c1\u04c2\u0007\u000e"+ - "\u0000\u0000\u04c2\u04c3\u0007\u0004\u0000\u0000\u04c3\u04c4\u0007\u0011"+ - "\u0000\u0000\u04c4\u04c5\u0007\u000b\u0000\u0000\u04c5\u00ed\u0001\u0000"+ - "\u0000\u0000\u04c6\u04c7\u0007\u000e\u0000\u0000\u04c7\u04c8\u0007\n\u0000"+ - "\u0000\u04c8\u04c9\u0007\u0013\u0000\u0000\u04c9\u04ca\u0007\u0007\u0000"+ - "\u0000\u04ca\u00ef\u0001\u0000\u0000\u0000\u04cb\u04cc\u0007\u0005\u0000"+ - "\u0000\u04cc\u04cd\u0007\t\u0000\u0000\u04cd\u04ce\u0007\u000b\u0000\u0000"+ - "\u04ce\u00f1\u0001\u0000\u0000\u0000\u04cf\u04d0\u0007\u0005\u0000\u0000"+ - "\u04d0\u04d1\u0007\u0016\u0000\u0000\u04d1\u04d2\u0007\u000e\u0000\u0000"+ - "\u04d2\u04d3\u0007\u000e\u0000\u0000\u04d3\u00f3\u0001\u0000\u0000\u0000"+ - "\u04d4\u04d5\u0007\u0005\u0000\u0000\u04d5\u04d6\u0007\u0016\u0000\u0000"+ - "\u04d6\u04d7\u0007\u000e\u0000\u0000\u04d7\u04d8\u0007\u000e\u0000\u0000"+ - "\u04d8\u04d9\u0007\u0011\u0000\u0000\u04d9\u00f5\u0001\u0000\u0000\u0000"+ - "\u04da\u04db\u0007\t\u0000\u0000\u04db\u04dc\u0007\u0005\u0000\u0000\u04dc"+ - "\u00f7\u0001\u0000\u0000\u0000\u04dd\u04de\u0007\t\u0000\u0000\u04de\u04df"+ - "\u0007\f\u0000\u0000\u04df\u00f9\u0001\u0000\u0000\u0000\u04e0\u04e1\u0005"+ - "?\u0000\u0000\u04e1\u00fb\u0001\u0000\u0000\u0000\u04e2\u04e3\u0007\f"+ - "\u0000\u0000\u04e3\u04e4\u0007\u000e\u0000\u0000\u04e4\u04e5\u0007\n\u0000"+ - "\u0000\u04e5\u04e6\u0007\u0013\u0000\u0000\u04e6\u04e7\u0007\u0007\u0000"+ - "\u0000\u04e7\u00fd\u0001\u0000\u0000\u0000\u04e8\u04e9\u0007\u000b\u0000"+ - "\u0000\u04e9\u04ea\u0007\f\u0000\u0000\u04ea\u04eb\u0007\u0016\u0000\u0000"+ - "\u04eb\u04ec\u0007\u0007\u0000\u0000\u04ec\u00ff\u0001\u0000\u0000\u0000"+ - "\u04ed\u04ee\u0007\u0014\u0000\u0000\u04ee\u04ef\u0007\n\u0000\u0000\u04ef"+ - "\u04f0\u0007\u000b\u0000\u0000\u04f0\u04f1\u0007\u0003\u0000\u0000\u04f1"+ - "\u0101\u0001\u0000\u0000\u0000\u04f2\u04f3\u0005=\u0000\u0000\u04f3\u04f4"+ - "\u0005=\u0000\u0000\u04f4\u0103\u0001\u0000\u0000\u0000\u04f5\u04f6\u0005"+ - "=\u0000\u0000\u04f6\u04f7\u0005~\u0000\u0000\u04f7\u0105\u0001\u0000\u0000"+ - "\u0000\u04f8\u04f9\u0005!\u0000\u0000\u04f9\u04fa\u0005=\u0000\u0000\u04fa"+ - "\u0107\u0001\u0000\u0000\u0000\u04fb\u04fc\u0005<\u0000\u0000\u04fc\u0109"+ - "\u0001\u0000\u0000\u0000\u04fd\u04fe\u0005<\u0000\u0000\u04fe\u04ff\u0005"+ - "=\u0000\u0000\u04ff\u010b\u0001\u0000\u0000\u0000\u0500\u0501\u0005>\u0000"+ - "\u0000\u0501\u010d\u0001\u0000\u0000\u0000\u0502\u0503\u0005>\u0000\u0000"+ - "\u0503\u0504\u0005=\u0000\u0000\u0504\u010f\u0001\u0000\u0000\u0000\u0505"+ - "\u0506\u0005+\u0000\u0000\u0506\u0111\u0001\u0000\u0000\u0000\u0507\u0508"+ - "\u0005-\u0000\u0000\u0508\u0113\u0001\u0000\u0000\u0000\u0509\u050a\u0005"+ - "*\u0000\u0000\u050a\u0115\u0001\u0000\u0000\u0000\u050b\u050c\u0005/\u0000"+ - "\u0000\u050c\u0117\u0001\u0000\u0000\u0000\u050d\u050e\u0005%\u0000\u0000"+ - "\u050e\u0119\u0001\u0000\u0000\u0000\u050f\u0510\u0005{\u0000\u0000\u0510"+ - "\u011b\u0001\u0000\u0000\u0000\u0511\u0512\u0005}\u0000\u0000\u0512\u011d"+ - "\u0001\u0000\u0000\u0000\u0513\u0514\u0005?\u0000\u0000\u0514\u0515\u0005"+ - "?\u0000\u0000\u0515\u011f\u0001\u0000\u0000\u0000\u0516\u0517\u00030\u0010"+ - "\u0000\u0517\u0518\u0001\u0000\u0000\u0000\u0518\u0519\u0006\u0088&\u0000"+ - "\u0519\u0121\u0001\u0000\u0000\u0000\u051a\u051d\u0003\u00fau\u0000\u051b"+ - "\u051e\u0003\u00baU\u0000\u051c\u051e\u0003\u00c8\\\u0000\u051d\u051b"+ - "\u0001\u0000\u0000\u0000\u051d\u051c\u0001\u0000\u0000\u0000\u051e\u0522"+ - "\u0001\u0000\u0000\u0000\u051f\u0521\u0003\u00ca]\u0000\u0520\u051f\u0001"+ - "\u0000\u0000\u0000\u0521\u0524\u0001\u0000\u0000\u0000\u0522\u0520\u0001"+ - "\u0000\u0000\u0000\u0522\u0523\u0001\u0000\u0000\u0000\u0523\u052c\u0001"+ - "\u0000\u0000\u0000\u0524\u0522\u0001\u0000\u0000\u0000\u0525\u0527\u0003"+ - "\u00fau\u0000\u0526\u0528\u0003\u00b8T\u0000\u0527\u0526\u0001\u0000\u0000"+ - "\u0000\u0528\u0529\u0001\u0000\u0000\u0000\u0529\u0527\u0001\u0000\u0000"+ - "\u0000\u0529\u052a\u0001\u0000\u0000\u0000\u052a\u052c\u0001\u0000\u0000"+ - "\u0000\u052b\u051a\u0001\u0000\u0000\u0000\u052b\u0525\u0001\u0000\u0000"+ - "\u0000\u052c\u0123\u0001\u0000\u0000\u0000\u052d\u0530\u0003\u011e\u0087"+ - "\u0000\u052e\u0531\u0003\u00baU\u0000\u052f\u0531\u0003\u00c8\\\u0000"+ - "\u0530\u052e\u0001\u0000\u0000\u0000\u0530\u052f\u0001\u0000\u0000\u0000"+ - "\u0531\u0535\u0001\u0000\u0000\u0000\u0532\u0534\u0003\u00ca]\u0000\u0533"+ - "\u0532\u0001\u0000\u0000\u0000\u0534\u0537\u0001\u0000\u0000\u0000\u0535"+ - "\u0533\u0001\u0000\u0000\u0000\u0535\u0536\u0001\u0000\u0000\u0000\u0536"+ - "\u053f\u0001\u0000\u0000\u0000\u0537\u0535\u0001\u0000\u0000\u0000\u0538"+ - "\u053a\u0003\u011e\u0087\u0000\u0539\u053b\u0003\u00b8T\u0000\u053a\u0539"+ - "\u0001\u0000\u0000\u0000\u053b\u053c\u0001\u0000\u0000\u0000\u053c\u053a"+ - "\u0001\u0000\u0000\u0000\u053c\u053d\u0001\u0000\u0000\u0000\u053d\u053f"+ - "\u0001\u0000\u0000\u0000\u053e\u052d\u0001\u0000\u0000\u0000\u053e\u0538"+ - "\u0001\u0000\u0000\u0000\u053f\u0125\u0001\u0000\u0000\u0000\u0540\u0541"+ - "\u0005[\u0000\u0000\u0541\u0542\u0001\u0000\u0000\u0000\u0542\u0543\u0006"+ - "\u008b\u0004\u0000\u0543\u0544\u0006\u008b\u0004\u0000\u0544\u0127\u0001"+ - "\u0000\u0000\u0000\u0545\u0546\u0005]\u0000\u0000\u0546\u0547\u0001\u0000"+ - "\u0000\u0000\u0547\u0548\u0006\u008c\u000e\u0000\u0548\u0549\u0006\u008c"+ - "\u000e\u0000\u0549\u0129\u0001\u0000\u0000\u0000\u054a\u054b\u0005(\u0000"+ - "\u0000\u054b\u054c\u0001\u0000\u0000\u0000\u054c\u054d\u0006\u008d\u0004"+ - "\u0000\u054d\u054e\u0006\u008d\u0004\u0000\u054e\u012b\u0001\u0000\u0000"+ - "\u0000\u054f\u0550\u0005)\u0000\u0000\u0550\u0551\u0001\u0000\u0000\u0000"+ - "\u0551\u0552\u0006\u008e\u000e\u0000\u0552\u0553\u0006\u008e\u000e\u0000"+ - "\u0553\u012d\u0001\u0000\u0000\u0000\u0554\u0558\u0003\u00baU\u0000\u0555"+ - "\u0557\u0003\u00ca]\u0000\u0556\u0555\u0001\u0000\u0000\u0000\u0557\u055a"+ - "\u0001\u0000\u0000\u0000\u0558\u0556\u0001\u0000\u0000\u0000\u0558\u0559"+ - "\u0001\u0000\u0000\u0000\u0559\u0565\u0001\u0000\u0000\u0000\u055a\u0558"+ - "\u0001\u0000\u0000\u0000\u055b\u055e\u0003\u00c8\\\u0000\u055c\u055e\u0003"+ - "\u00c2Y\u0000\u055d\u055b\u0001\u0000\u0000\u0000\u055d\u055c\u0001\u0000"+ - "\u0000\u0000\u055e\u0560\u0001\u0000\u0000\u0000\u055f\u0561\u0003\u00ca"+ - "]\u0000\u0560\u055f\u0001\u0000\u0000\u0000\u0561\u0562\u0001\u0000\u0000"+ - "\u0000\u0562\u0560\u0001\u0000\u0000\u0000\u0562\u0563\u0001\u0000\u0000"+ - "\u0000\u0563\u0565\u0001\u0000\u0000\u0000\u0564\u0554\u0001\u0000\u0000"+ - "\u0000\u0564\u055d\u0001\u0000\u0000\u0000\u0565\u012f\u0001\u0000\u0000"+ - "\u0000\u0566\u0568\u0003\u00c4Z\u0000\u0567\u0569\u0003\u00c6[\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\u0003\u00c4Z\u0000\u056d\u0131"+ - "\u0001\u0000\u0000\u0000\u056e\u056f\u0003\u0130\u0090\u0000\u056f\u0133"+ - "\u0001\u0000\u0000\u0000\u0570\u0571\u0003\u0010\u0000\u0000\u0571\u0572"+ - "\u0001\u0000\u0000\u0000\u0572\u0573\u0006\u0092\u0000\u0000\u0573\u0135"+ - "\u0001\u0000\u0000\u0000\u0574\u0575\u0003\u0012\u0001\u0000\u0575\u0576"+ - "\u0001\u0000\u0000\u0000\u0576\u0577\u0006\u0093\u0000\u0000\u0577\u0137"+ - "\u0001\u0000\u0000\u0000\u0578\u0579\u0003\u0014\u0002\u0000\u0579\u057a"+ - "\u0001\u0000\u0000\u0000\u057a\u057b\u0006\u0094\u0000\u0000\u057b\u0139"+ - "\u0001\u0000\u0000\u0000\u057c\u057d\u0003\u00b6S\u0000\u057d\u057e\u0001"+ - "\u0000\u0000\u0000\u057e\u057f\u0006\u0095\r\u0000\u057f\u0580\u0006\u0095"+ - "\u000e\u0000\u0580\u013b\u0001\u0000\u0000\u0000\u0581\u0582\u0003\u0126"+ - "\u008b\u0000\u0582\u0583\u0001\u0000\u0000\u0000\u0583\u0584\u0006\u0096"+ - "\u0016\u0000\u0584\u013d\u0001\u0000\u0000\u0000\u0585\u0586\u0003\u0128"+ - "\u008c\u0000\u0586\u0587\u0001\u0000\u0000\u0000\u0587\u0588\u0006\u0097"+ - "\"\u0000\u0588\u013f\u0001\u0000\u0000\u0000\u0589\u058a\u0003\u00dcf"+ - "\u0000\u058a\u058b\u0001\u0000\u0000\u0000\u058b\u058c\u0006\u0098#\u0000"+ - "\u058c\u0141\u0001\u0000\u0000\u0000\u058d\u058e\u0003\u00dae\u0000\u058e"+ - "\u058f\u0001\u0000\u0000\u0000\u058f\u0590\u0006\u0099\'\u0000\u0590\u0143"+ - "\u0001\u0000\u0000\u0000\u0591\u0592\u0003\u00deg\u0000\u0592\u0593\u0001"+ - "\u0000\u0000\u0000\u0593\u0594\u0006\u009a\u0013\u0000\u0594\u0145\u0001"+ - "\u0000\u0000\u0000\u0595\u0596\u0003\u00d6c\u0000\u0596\u0597\u0001\u0000"+ - "\u0000\u0000\u0597\u0598\u0006\u009b\u001c\u0000\u0598\u0147\u0001\u0000"+ - "\u0000\u0000\u0599\u059a\u0007\u000f\u0000\u0000\u059a\u059b\u0007\u0007"+ - "\u0000\u0000\u059b\u059c\u0007\u000b\u0000\u0000\u059c\u059d\u0007\u0004"+ - "\u0000\u0000\u059d\u059e\u0007\u0010\u0000\u0000\u059e\u059f\u0007\u0004"+ - "\u0000\u0000\u059f\u05a0\u0007\u000b\u0000\u0000\u05a0\u05a1\u0007\u0004"+ - "\u0000\u0000\u05a1\u0149\u0001\u0000\u0000\u0000\u05a2\u05a3\u0003\u012c"+ - "\u008e\u0000\u05a3\u05a4\u0001\u0000\u0000\u0000\u05a4\u05a5\u0006\u009d"+ - "\u000f\u0000\u05a5\u05a6\u0006\u009d\u000e\u0000\u05a6\u014b\u0001\u0000"+ - "\u0000\u0000\u05a7\u05ab\b!\u0000\u0000\u05a8\u05a9\u0005/\u0000\u0000"+ - "\u05a9\u05ab\b\"\u0000\u0000\u05aa\u05a7\u0001\u0000\u0000\u0000\u05aa"+ - "\u05a8\u0001\u0000\u0000\u0000\u05ab\u014d\u0001\u0000\u0000\u0000\u05ac"+ - "\u05ae\u0003\u014c\u009e\u0000\u05ad\u05ac\u0001\u0000\u0000\u0000\u05ae"+ - "\u05af\u0001\u0000\u0000\u0000\u05af\u05ad\u0001\u0000\u0000\u0000\u05af"+ - "\u05b0\u0001\u0000\u0000\u0000\u05b0\u014f\u0001\u0000\u0000\u0000\u05b1"+ - "\u05b2\u0003\u014e\u009f\u0000\u05b2\u05b3\u0001\u0000\u0000\u0000\u05b3"+ - "\u05b4\u0006\u00a0(\u0000\u05b4\u0151\u0001\u0000\u0000\u0000\u05b5\u05b6"+ - "\u0003\u00cc^\u0000\u05b6\u05b7\u0001\u0000\u0000\u0000\u05b7\u05b8\u0006"+ - "\u00a1\u001b\u0000\u05b8\u0153\u0001\u0000\u0000\u0000\u05b9\u05ba\u0003"+ - "\u0010\u0000\u0000\u05ba\u05bb\u0001\u0000\u0000\u0000\u05bb\u05bc\u0006"+ - "\u00a2\u0000\u0000\u05bc\u0155\u0001\u0000\u0000\u0000\u05bd\u05be\u0003"+ - "\u0012\u0001\u0000\u05be\u05bf\u0001\u0000\u0000\u0000\u05bf\u05c0\u0006"+ - "\u00a3\u0000\u0000\u05c0\u0157\u0001\u0000\u0000\u0000\u05c1\u05c2\u0003"+ - "\u0014\u0002\u0000\u05c2\u05c3\u0001\u0000\u0000\u0000\u05c3\u05c4\u0006"+ - "\u00a4\u0000\u0000\u05c4\u0159\u0001\u0000\u0000\u0000\u05c5\u05c6\u0003"+ - "\u012a\u008d\u0000\u05c6\u05c7\u0001\u0000\u0000\u0000\u05c7\u05c8\u0006"+ - "\u00a5$\u0000\u05c8\u05c9\u0006\u00a5%\u0000\u05c9\u015b\u0001\u0000\u0000"+ - "\u0000\u05ca\u05cb\u0003\u012c\u008e\u0000\u05cb\u05cc\u0001\u0000\u0000"+ - "\u0000\u05cc\u05cd\u0006\u00a6\u000f\u0000\u05cd\u05ce\u0006\u00a6\u000e"+ - "\u0000\u05ce\u05cf\u0006\u00a6\u000e\u0000\u05cf\u015d\u0001\u0000\u0000"+ - "\u0000\u05d0\u05d1\u0003\u00b6S\u0000\u05d1\u05d2\u0001\u0000\u0000\u0000"+ - "\u05d2\u05d3\u0006\u00a7\r\u0000\u05d3\u05d4\u0006\u00a7\u000e\u0000\u05d4"+ - "\u015f\u0001\u0000\u0000\u0000\u05d5\u05d6\u0003\u0014\u0002\u0000\u05d6"+ - "\u05d7\u0001\u0000\u0000\u0000\u05d7\u05d8\u0006\u00a8\u0000\u0000\u05d8"+ - "\u0161\u0001\u0000\u0000\u0000\u05d9\u05da\u0003\u0010\u0000\u0000\u05da"+ - "\u05db\u0001\u0000\u0000\u0000\u05db\u05dc\u0006\u00a9\u0000\u0000\u05dc"+ - "\u0163\u0001\u0000\u0000\u0000\u05dd\u05de\u0003\u0012\u0001\u0000\u05de"+ - "\u05df\u0001\u0000\u0000\u0000\u05df\u05e0\u0006\u00aa\u0000\u0000\u05e0"+ - "\u0165\u0001\u0000\u0000\u0000\u05e1\u05e2\u0003\u00b6S\u0000\u05e2\u05e3"+ - "\u0001\u0000\u0000\u0000\u05e3\u05e4\u0006\u00ab\r\u0000\u05e4\u05e5\u0006"+ - "\u00ab\u000e\u0000\u05e5\u0167\u0001\u0000\u0000\u0000\u05e6\u05e7\u0007"+ - "#\u0000\u0000\u05e7\u05e8\u0007\t\u0000\u0000\u05e8\u05e9\u0007\n\u0000"+ - "\u0000\u05e9\u05ea\u0007\u0005\u0000\u0000\u05ea\u0169\u0001\u0000\u0000"+ - "\u0000\u05eb\u05ec\u0003\u01ec\u00ee\u0000\u05ec\u05ed\u0001\u0000\u0000"+ - "\u0000\u05ed\u05ee\u0006\u00ad\u0011\u0000\u05ee\u016b\u0001\u0000\u0000"+ - "\u0000\u05ef\u05f0\u0003\u00f6s\u0000\u05f0\u05f1\u0001\u0000\u0000\u0000"+ - "\u05f1\u05f2\u0006\u00ae\u0010\u0000\u05f2\u05f3\u0006\u00ae\u000e\u0000"+ - "\u05f3\u05f4\u0006\u00ae\u0004\u0000\u05f4\u016d\u0001\u0000\u0000\u0000"+ - "\u05f5\u05f6\u0007\u0016\u0000\u0000\u05f6\u05f7\u0007\u0011\u0000\u0000"+ - "\u05f7\u05f8\u0007\n\u0000\u0000\u05f8\u05f9\u0007\u0005\u0000\u0000\u05f9"+ - "\u05fa\u0007\u0006\u0000\u0000\u05fa\u05fb\u0001\u0000\u0000\u0000\u05fb"+ - "\u05fc\u0006\u00af\u000e\u0000\u05fc\u05fd\u0006\u00af\u0004\u0000\u05fd"+ - "\u016f\u0001\u0000\u0000\u0000\u05fe\u05ff\u0003\u014e\u009f\u0000\u05ff"+ - "\u0600\u0001\u0000\u0000\u0000\u0600\u0601\u0006\u00b0(\u0000\u0601\u0171"+ - "\u0001\u0000\u0000\u0000\u0602\u0603\u0003\u00cc^\u0000\u0603\u0604\u0001"+ - "\u0000\u0000\u0000\u0604\u0605\u0006\u00b1\u001b\u0000\u0605\u0173\u0001"+ - "\u0000\u0000\u0000\u0606\u0607\u0003\u00dcf\u0000\u0607\u0608\u0001\u0000"+ - "\u0000\u0000\u0608\u0609\u0006\u00b2#\u0000\u0609\u0175\u0001\u0000\u0000"+ - "\u0000\u060a\u060b\u0003\u012e\u008f\u0000\u060b\u060c\u0001\u0000\u0000"+ - "\u0000\u060c\u060d\u0006\u00b3\u0015\u0000\u060d\u0177\u0001\u0000\u0000"+ - "\u0000\u060e\u060f\u0003\u0132\u0091\u0000\u060f\u0610\u0001\u0000\u0000"+ - "\u0000\u0610\u0611\u0006\u00b4\u0014\u0000\u0611\u0179\u0001\u0000\u0000"+ - "\u0000\u0612\u0613\u0003\u0010\u0000\u0000\u0613\u0614\u0001\u0000\u0000"+ - "\u0000\u0614\u0615\u0006\u00b5\u0000\u0000\u0615\u017b\u0001\u0000\u0000"+ - "\u0000\u0616\u0617\u0003\u0012\u0001\u0000\u0617\u0618\u0001\u0000\u0000"+ - "\u0000\u0618\u0619\u0006\u00b6\u0000\u0000\u0619\u017d\u0001\u0000\u0000"+ - "\u0000\u061a\u061b\u0003\u0014\u0002\u0000\u061b\u061c\u0001\u0000\u0000"+ - "\u0000\u061c\u061d\u0006\u00b7\u0000\u0000\u061d\u017f\u0001\u0000\u0000"+ - "\u0000\u061e\u061f\u0003\u00b6S\u0000\u061f\u0620\u0001\u0000\u0000\u0000"+ - "\u0620\u0621\u0006\u00b8\r\u0000\u0621\u0622\u0006\u00b8\u000e\u0000\u0622"+ - "\u0181\u0001\u0000\u0000\u0000\u0623\u0624\u0003\u012c\u008e\u0000\u0624"+ - "\u0625\u0001\u0000\u0000\u0000\u0625\u0626\u0006\u00b9\u000f\u0000\u0626"+ - "\u0627\u0006\u00b9\u000e\u0000\u0627\u0628\u0006\u00b9\u000e\u0000\u0628"+ - "\u0183\u0001\u0000\u0000\u0000\u0629\u062a\u0003\u00dcf\u0000\u062a\u062b"+ - "\u0001\u0000\u0000\u0000\u062b\u062c\u0006\u00ba#\u0000\u062c\u0185\u0001"+ - "\u0000\u0000\u0000\u062d\u062e\u0003\u00deg\u0000\u062e\u062f\u0001\u0000"+ - "\u0000\u0000\u062f\u0630\u0006\u00bb\u0013\u0000\u0630\u0187\u0001\u0000"+ - "\u0000\u0000\u0631\u0632\u0003\u00e2i\u0000\u0632\u0633\u0001\u0000\u0000"+ - "\u0000\u0633\u0634\u0006\u00bc\u0012\u0000\u0634\u0189\u0001\u0000\u0000"+ - "\u0000\u0635\u0636\u0003\u00f6s\u0000\u0636\u0637\u0001\u0000\u0000\u0000"+ - "\u0637\u0638\u0006\u00bd\u0010\u0000\u0638\u0639\u0006\u00bd)\u0000\u0639"+ - "\u018b\u0001\u0000\u0000\u0000\u063a\u063b\u0003\u014e\u009f\u0000\u063b"+ - "\u063c\u0001\u0000\u0000\u0000\u063c\u063d\u0006\u00be(\u0000\u063d\u018d"+ - "\u0001\u0000\u0000\u0000\u063e\u063f\u0003\u00cc^\u0000\u063f\u0640\u0001"+ - "\u0000\u0000\u0000\u0640\u0641\u0006\u00bf\u001b\u0000\u0641\u018f\u0001"+ - "\u0000\u0000\u0000\u0642\u0643\u0003\u0010\u0000\u0000\u0643\u0644\u0001"+ - "\u0000\u0000\u0000\u0644\u0645\u0006\u00c0\u0000\u0000\u0645\u0191\u0001"+ - "\u0000\u0000\u0000\u0646\u0647\u0003\u0012\u0001\u0000\u0647\u0648\u0001"+ - "\u0000\u0000\u0000\u0648\u0649\u0006\u00c1\u0000\u0000\u0649\u0193\u0001"+ - "\u0000\u0000\u0000\u064a\u064b\u0003\u0014\u0002\u0000\u064b\u064c\u0001"+ - "\u0000\u0000\u0000\u064c\u064d\u0006\u00c2\u0000\u0000\u064d\u0195\u0001"+ - "\u0000\u0000\u0000\u064e\u064f\u0003\u00b6S\u0000\u064f\u0650\u0001\u0000"+ - "\u0000\u0000\u0650\u0651\u0006\u00c3\r\u0000\u0651\u0652\u0006\u00c3\u000e"+ - "\u0000\u0652\u0653\u0006\u00c3\u000e\u0000\u0653\u0197\u0001\u0000\u0000"+ - "\u0000\u0654\u0655\u0003\u012c\u008e\u0000\u0655\u0656\u0001\u0000\u0000"+ - "\u0000\u0656\u0657\u0006\u00c4\u000f\u0000\u0657\u0658\u0006\u00c4\u000e"+ - "\u0000\u0658\u0659\u0006\u00c4\u000e\u0000\u0659\u065a\u0006\u00c4\u000e"+ - "\u0000\u065a\u0199\u0001\u0000\u0000\u0000\u065b\u065c\u0003\u00deg\u0000"+ - "\u065c\u065d\u0001\u0000\u0000\u0000\u065d\u065e\u0006\u00c5\u0013\u0000"+ - "\u065e\u019b\u0001\u0000\u0000\u0000\u065f\u0660\u0003\u00e2i\u0000\u0660"+ - "\u0661\u0001\u0000\u0000\u0000\u0661\u0662\u0006\u00c6\u0012\u0000\u0662"+ - "\u019d\u0001\u0000\u0000\u0000\u0663\u0664\u0003\u01d2\u00e1\u0000\u0664"+ - "\u0665\u0001\u0000\u0000\u0000\u0665\u0666\u0006\u00c7\u001d\u0000\u0666"+ - "\u019f\u0001\u0000\u0000\u0000\u0667\u0668\u0003\u0010\u0000\u0000\u0668"+ - "\u0669\u0001\u0000\u0000\u0000\u0669\u066a\u0006\u00c8\u0000\u0000\u066a"+ - "\u01a1\u0001\u0000\u0000\u0000\u066b\u066c\u0003\u0012\u0001\u0000\u066c"+ - "\u066d\u0001\u0000\u0000\u0000\u066d\u066e\u0006\u00c9\u0000\u0000\u066e"+ - "\u01a3\u0001\u0000\u0000\u0000\u066f\u0670\u0003\u0014\u0002\u0000\u0670"+ - "\u0671\u0001\u0000\u0000\u0000\u0671\u0672\u0006\u00ca\u0000\u0000\u0672"+ - "\u01a5\u0001\u0000\u0000\u0000\u0673\u0674\u0003\u00b6S\u0000\u0674\u0675"+ - "\u0001\u0000\u0000\u0000\u0675\u0676\u0006\u00cb\r\u0000\u0676\u0677\u0006"+ - "\u00cb\u000e\u0000\u0677\u01a7\u0001\u0000\u0000\u0000\u0678\u0679\u0003"+ - "\u012c\u008e\u0000\u0679\u067a\u0001\u0000\u0000\u0000\u067a\u067b\u0006"+ - "\u00cc\u000f\u0000\u067b\u067c\u0006\u00cc\u000e\u0000\u067c\u067d\u0006"+ - "\u00cc\u000e\u0000\u067d\u01a9\u0001\u0000\u0000\u0000\u067e\u067f\u0003"+ - "\u00e2i\u0000\u067f\u0680\u0001\u0000\u0000\u0000\u0680\u0681\u0006\u00cd"+ - "\u0012\u0000\u0681\u01ab\u0001\u0000\u0000\u0000\u0682\u0683\u0003\u00fa"+ - "u\u0000\u0683\u0684\u0001\u0000\u0000\u0000\u0684\u0685\u0006\u00ce\u001e"+ - "\u0000\u0685\u01ad\u0001\u0000\u0000\u0000\u0686\u0687\u0003\u0122\u0089"+ - "\u0000\u0687\u0688\u0001\u0000\u0000\u0000\u0688\u0689\u0006\u00cf\u001f"+ - "\u0000\u0689\u01af\u0001\u0000\u0000\u0000\u068a\u068b\u0003\u011e\u0087"+ - "\u0000\u068b\u068c\u0001\u0000\u0000\u0000\u068c\u068d\u0006\u00d0 \u0000"+ - "\u068d\u01b1\u0001\u0000\u0000\u0000\u068e\u068f\u0003\u0124\u008a\u0000"+ - "\u068f\u0690\u0001\u0000\u0000\u0000\u0690\u0691\u0006\u00d1!\u0000\u0691"+ - "\u01b3\u0001\u0000\u0000\u0000\u0692\u0693\u0003\u0132\u0091\u0000\u0693"+ - "\u0694\u0001\u0000\u0000\u0000\u0694\u0695\u0006\u00d2\u0014\u0000\u0695"+ - "\u01b5\u0001\u0000\u0000\u0000\u0696\u0697\u0003\u012e\u008f\u0000\u0697"+ - "\u0698\u0001\u0000\u0000\u0000\u0698\u0699\u0006\u00d3\u0015\u0000\u0699"+ - "\u01b7\u0001\u0000\u0000\u0000\u069a\u069b\u0003\u0010\u0000\u0000\u069b"+ - "\u069c\u0001\u0000\u0000\u0000\u069c\u069d\u0006\u00d4\u0000\u0000\u069d"+ - "\u01b9\u0001\u0000\u0000\u0000\u069e\u069f\u0003\u0012\u0001\u0000\u069f"+ - "\u06a0\u0001\u0000\u0000\u0000\u06a0\u06a1\u0006\u00d5\u0000\u0000\u06a1"+ - "\u01bb\u0001\u0000\u0000\u0000\u06a2\u06a3\u0003\u0014\u0002\u0000\u06a3"+ - "\u06a4\u0001\u0000\u0000\u0000\u06a4\u06a5\u0006\u00d6\u0000\u0000\u06a5"+ - "\u01bd\u0001\u0000\u0000\u0000\u06a6\u06a7\u0003\u00b6S\u0000\u06a7\u06a8"+ - "\u0001\u0000\u0000\u0000\u06a8\u06a9\u0006\u00d7\r\u0000\u06a9\u06aa\u0006"+ - "\u00d7\u000e\u0000\u06aa\u01bf\u0001\u0000\u0000\u0000\u06ab\u06ac\u0003"+ - "\u012c\u008e\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000\u06ad\u06ae\u0006"+ - "\u00d8\u000f\u0000\u06ae\u06af\u0006\u00d8\u000e\u0000\u06af\u06b0\u0006"+ - "\u00d8\u000e\u0000\u06b0\u01c1\u0001\u0000\u0000\u0000\u06b1\u06b2\u0003"+ - "\u00e2i\u0000\u06b2\u06b3\u0001\u0000\u0000\u0000\u06b3\u06b4\u0006\u00d9"+ - "\u0012\u0000\u06b4\u01c3\u0001\u0000\u0000\u0000\u06b5\u06b6\u0003\u00de"+ - "g\u0000\u06b6\u06b7\u0001\u0000\u0000\u0000\u06b7\u06b8\u0006\u00da\u0013"+ - "\u0000\u06b8\u01c5\u0001\u0000\u0000\u0000\u06b9\u06ba\u0003\u00fau\u0000"+ - "\u06ba\u06bb\u0001\u0000\u0000\u0000\u06bb\u06bc\u0006\u00db\u001e\u0000"+ - "\u06bc\u01c7\u0001\u0000\u0000\u0000\u06bd\u06be\u0003\u0122\u0089\u0000"+ - "\u06be\u06bf\u0001\u0000\u0000\u0000\u06bf\u06c0\u0006\u00dc\u001f\u0000"+ - "\u06c0\u01c9\u0001\u0000\u0000\u0000\u06c1\u06c2\u0003\u011e\u0087\u0000"+ - "\u06c2\u06c3\u0001\u0000\u0000\u0000\u06c3\u06c4\u0006\u00dd \u0000\u06c4"+ - "\u01cb\u0001\u0000\u0000\u0000\u06c5\u06c6\u0003\u0124\u008a\u0000\u06c6"+ - "\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8\u0006\u00de!\u0000\u06c8\u01cd"+ - "\u0001\u0000\u0000\u0000\u06c9\u06ce\u0003\u00baU\u0000\u06ca\u06ce\u0003"+ - "\u00b8T\u0000\u06cb\u06ce\u0003\u00c8\\\u0000\u06cc\u06ce\u0003\u0114"+ - "\u0082\u0000\u06cd\u06c9\u0001\u0000\u0000\u0000\u06cd\u06ca\u0001\u0000"+ - "\u0000\u0000\u06cd\u06cb\u0001\u0000\u0000\u0000\u06cd\u06cc\u0001\u0000"+ - "\u0000\u0000\u06ce\u01cf\u0001\u0000\u0000\u0000\u06cf\u06d2\u0003\u00ba"+ - "U\u0000\u06d0\u06d2\u0003\u0114\u0082\u0000\u06d1\u06cf\u0001\u0000\u0000"+ - "\u0000\u06d1\u06d0\u0001\u0000\u0000\u0000\u06d2\u06d6\u0001\u0000\u0000"+ - "\u0000\u06d3\u06d5\u0003\u01ce\u00df\u0000\u06d4\u06d3\u0001\u0000\u0000"+ - "\u0000\u06d5\u06d8\u0001\u0000\u0000\u0000\u06d6\u06d4\u0001\u0000\u0000"+ - "\u0000\u06d6\u06d7\u0001\u0000\u0000\u0000\u06d7\u06e3\u0001\u0000\u0000"+ - "\u0000\u06d8\u06d6\u0001\u0000\u0000\u0000\u06d9\u06dc\u0003\u00c8\\\u0000"+ - "\u06da\u06dc\u0003\u00c2Y\u0000\u06db\u06d9\u0001\u0000\u0000\u0000\u06db"+ - "\u06da\u0001\u0000\u0000\u0000\u06dc\u06de\u0001\u0000\u0000\u0000\u06dd"+ - "\u06df\u0003\u01ce\u00df\u0000\u06de\u06dd\u0001\u0000\u0000\u0000\u06df"+ - "\u06e0\u0001\u0000\u0000\u0000\u06e0\u06de\u0001\u0000\u0000\u0000\u06e0"+ - "\u06e1\u0001\u0000\u0000\u0000\u06e1\u06e3\u0001\u0000\u0000\u0000\u06e2"+ - "\u06d1\u0001\u0000\u0000\u0000\u06e2\u06db\u0001\u0000\u0000\u0000\u06e3"+ - "\u01d1\u0001\u0000\u0000\u0000\u06e4\u06e7\u0003\u01d0\u00e0\u0000\u06e5"+ - "\u06e7\u0003\u0130\u0090\u0000\u06e6\u06e4\u0001\u0000\u0000\u0000\u06e6"+ - "\u06e5\u0001\u0000\u0000\u0000\u06e7\u06e8\u0001\u0000\u0000\u0000\u06e8"+ - "\u06e6\u0001\u0000\u0000\u0000\u06e8\u06e9\u0001\u0000\u0000\u0000\u06e9"+ - "\u01d3\u0001\u0000\u0000\u0000\u06ea\u06eb\u0003\u0010\u0000\u0000\u06eb"+ - "\u06ec\u0001\u0000\u0000\u0000\u06ec\u06ed\u0006\u00e2\u0000\u0000\u06ed"+ - "\u01d5\u0001\u0000\u0000\u0000\u06ee\u06ef\u0003\u0012\u0001\u0000\u06ef"+ - "\u06f0\u0001\u0000\u0000\u0000\u06f0\u06f1\u0006\u00e3\u0000\u0000\u06f1"+ - "\u01d7\u0001\u0000\u0000\u0000\u06f2\u06f3\u0003\u0014\u0002\u0000\u06f3"+ - "\u06f4\u0001\u0000\u0000\u0000\u06f4\u06f5\u0006\u00e4\u0000\u0000\u06f5"+ - "\u01d9\u0001\u0000\u0000\u0000\u06f6\u06f7\u0003\u00b6S\u0000\u06f7\u06f8"+ - "\u0001\u0000\u0000\u0000\u06f8\u06f9\u0006\u00e5\r\u0000\u06f9\u06fa\u0006"+ - "\u00e5\u000e\u0000\u06fa\u01db\u0001\u0000\u0000\u0000\u06fb\u06fc\u0003"+ - "\u012c\u008e\u0000\u06fc\u06fd\u0001\u0000\u0000\u0000\u06fd\u06fe\u0006"+ - "\u00e6\u000f\u0000\u06fe\u06ff\u0006\u00e6\u000e\u0000\u06ff\u0700\u0006"+ - "\u00e6\u000e\u0000\u0700\u01dd\u0001\u0000\u0000\u0000\u0701\u0702\u0003"+ - "\u00d6c\u0000\u0702\u0703\u0001\u0000\u0000\u0000\u0703\u0704\u0006\u00e7"+ - "\u001c\u0000\u0704\u01df\u0001\u0000\u0000\u0000\u0705\u0706\u0003\u00de"+ - "g\u0000\u0706\u0707\u0001\u0000\u0000\u0000\u0707\u0708\u0006\u00e8\u0013"+ - "\u0000\u0708\u01e1\u0001\u0000\u0000\u0000\u0709\u070a\u0003\u00e2i\u0000"+ - "\u070a\u070b\u0001\u0000\u0000\u0000\u070b\u070c\u0006\u00e9\u0012\u0000"+ - "\u070c\u01e3\u0001\u0000\u0000\u0000\u070d\u070e\u0003\u00fau\u0000\u070e"+ - "\u070f\u0001\u0000\u0000\u0000\u070f\u0710\u0006\u00ea\u001e\u0000\u0710"+ - "\u01e5\u0001\u0000\u0000\u0000\u0711\u0712\u0003\u0122\u0089\u0000\u0712"+ - "\u0713\u0001\u0000\u0000\u0000\u0713\u0714\u0006\u00eb\u001f\u0000\u0714"+ - "\u01e7\u0001\u0000\u0000\u0000\u0715\u0716\u0003\u011e\u0087\u0000\u0716"+ - "\u0717\u0001\u0000\u0000\u0000\u0717\u0718\u0006\u00ec \u0000\u0718\u01e9"+ - "\u0001\u0000\u0000\u0000\u0719\u071a\u0003\u0124\u008a\u0000\u071a\u071b"+ - "\u0001\u0000\u0000\u0000\u071b\u071c\u0006\u00ed!\u0000\u071c\u01eb\u0001"+ - "\u0000\u0000\u0000\u071d\u071e\u0007\u0004\u0000\u0000\u071e\u071f\u0007"+ - "\u0011\u0000\u0000\u071f\u01ed\u0001\u0000\u0000\u0000\u0720\u0721\u0003"+ - "\u01d2\u00e1\u0000\u0721\u0722\u0001\u0000\u0000\u0000\u0722\u0723\u0006"+ - "\u00ef\u001d\u0000\u0723\u01ef\u0001\u0000\u0000\u0000\u0724\u0725\u0003"+ - "\u0010\u0000\u0000\u0725\u0726\u0001\u0000\u0000\u0000\u0726\u0727\u0006"+ - "\u00f0\u0000\u0000\u0727\u01f1\u0001\u0000\u0000\u0000\u0728\u0729\u0003"+ - "\u0012\u0001\u0000\u0729\u072a\u0001\u0000\u0000\u0000\u072a\u072b\u0006"+ - "\u00f1\u0000\u0000\u072b\u01f3\u0001\u0000\u0000\u0000\u072c\u072d\u0003"+ - "\u0014\u0002\u0000\u072d\u072e\u0001\u0000\u0000\u0000\u072e\u072f\u0006"+ - "\u00f2\u0000\u0000\u072f\u01f5\u0001\u0000\u0000\u0000\u0730\u0731\u0003"+ - "\u00b6S\u0000\u0731\u0732\u0001\u0000\u0000\u0000\u0732\u0733\u0006\u00f3"+ - "\r\u0000\u0733\u0734\u0006\u00f3\u000e\u0000\u0734\u01f7\u0001\u0000\u0000"+ - "\u0000\u0735\u0736\u0007\n\u0000\u0000\u0736\u0737\u0007\u0005\u0000\u0000"+ - "\u0737\u0738\u0007\u0015\u0000\u0000\u0738\u0739\u0007\t\u0000\u0000\u0739"+ - "\u01f9\u0001\u0000\u0000\u0000\u073a\u073b\u0003\u0010\u0000\u0000\u073b"+ - "\u073c\u0001\u0000\u0000\u0000\u073c\u073d\u0006\u00f5\u0000\u0000\u073d"+ - "\u01fb\u0001\u0000\u0000\u0000\u073e\u073f\u0003\u0012\u0001\u0000\u073f"+ - "\u0740\u0001\u0000\u0000\u0000\u0740\u0741\u0006\u00f6\u0000\u0000\u0741"+ - "\u01fd\u0001\u0000\u0000\u0000\u0742\u0743\u0003\u0014\u0002\u0000\u0743"+ - "\u0744\u0001\u0000\u0000\u0000\u0744\u0745\u0006\u00f7\u0000\u0000\u0745"+ - "\u01ff\u0001\u0000\u0000\u0000F\u0000\u0001\u0002\u0003\u0004\u0005\u0006"+ - "\u0007\b\t\n\u000b\f\r\u000e\u000f\u0206\u020a\u020d\u0216\u0218\u0223"+ - "\u0338\u038a\u038e\u0393\u03f8\u03fa\u042d\u0432\u043b\u0442\u0447\u0449"+ - "\u0454\u045c\u045f\u0461\u0466\u046b\u0471\u0478\u047d\u0483\u0486\u048e"+ - "\u0492\u051d\u0522\u0529\u052b\u0530\u0535\u053c\u053e\u0558\u055d\u0562"+ - "\u0564\u056a\u05aa\u05af\u06cd\u06d1\u06d6\u06db\u06e0\u06e2\u06e6\u06e8"+ - "*\u0000\u0001\u0000\u0005\u0001\u0000\u0005\u0002\u0000\u0005\u0005\u0000"+ - "\u0005\u0006\u0000\u0005\u0007\u0000\u0005\b\u0000\u0005\t\u0000\u0005"+ - "\n\u0000\u0005\f\u0000\u0005\r\u0000\u0005\u000e\u0000\u0005\u000f\u0000"+ - "\u00074\u0000\u0004\u0000\u0000\u0007d\u0000\u0007J\u0000\u0007\u0084"+ + "\u0001\u00cc\u0001\u00cc\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00cd"+ + "\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\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\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\u00d9"+ + "\u0001\u00da\u0001\u00da\u0001\u00da\u0001\u00da\u0001\u00da\u0001\u00da"+ + "\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\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\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\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\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6"+ + "\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7"+ + "\u0001\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e9"+ + "\u0001\u00e9\u0001\u00e9\u0001\u00e9\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\u0003\u00ed\u072f\b\u00ed\u0001\u00ee\u0001\u00ee\u0003\u00ee"+ + "\u0733\b\u00ee\u0001\u00ee\u0005\u00ee\u0736\b\u00ee\n\u00ee\f\u00ee\u0739"+ + "\t\u00ee\u0001\u00ee\u0001\u00ee\u0003\u00ee\u073d\b\u00ee\u0001\u00ee"+ + "\u0004\u00ee\u0740\b\u00ee\u000b\u00ee\f\u00ee\u0741\u0003\u00ee\u0744"+ + "\b\u00ee\u0001\u00ef\u0001\u00ef\u0004\u00ef\u0748\b\u00ef\u000b\u00ef"+ + "\f\u00ef\u0749\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\u00f3"+ + "\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4"+ + "\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f6\u0001\u00f6"+ + "\u0001\u00f6\u0001\u00f6\u0001\u00f7\u0001\u00f7\u0001\u00f7\u0001\u00f7"+ + "\u0001\u00f8\u0001\u00f8\u0001\u00f8\u0001\u00f8\u0001\u00f9\u0001\u00f9"+ + "\u0001\u00f9\u0001\u00f9\u0001\u00fa\u0001\u00fa\u0001\u00fa\u0001\u00fa"+ + "\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fb\u0001\u00fc\u0001\u00fc"+ + "\u0001\u00fc\u0001\u00fd\u0001\u00fd\u0001\u00fd\u0001\u00fd\u0001\u00fe"+ + "\u0001\u00fe\u0001\u00fe\u0001\u00fe\u0001\u00ff\u0001\u00ff\u0001\u00ff"+ + "\u0001\u00ff\u0001\u0100\u0001\u0100\u0001\u0100\u0001\u0100\u0001\u0101"+ + "\u0001\u0101\u0001\u0101\u0001\u0101\u0001\u0101\u0001\u0102\u0001\u0102"+ + "\u0001\u0102\u0001\u0102\u0001\u0102\u0001\u0103\u0001\u0103\u0001\u0103"+ + "\u0001\u0103\u0001\u0104\u0001\u0104\u0001\u0104\u0001\u0104\u0001\u0105"+ + "\u0001\u0105\u0001\u0105\u0001\u0105\u0002\u0235\u0471\u0000\u0106\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\u0012"+ + "5\u00137\u00149\u0015;\u0016=\u0017?\u0018A\u0019C\u001aE\u001bG\u001c"+ + "I\u001dK\u001eM\u001fO Q!S\"U\u0000W\u0000Y\u0000[\u0000]\u0000_\u0000"+ + "a\u0000c\u0000e#g$i%k\u0000m\u0000o\u0000q\u0000s\u0000u\u0000w&y\u0000"+ + "{\u0000}\'\u007f(\u0081)\u0083\u0000\u0085\u0000\u0087\u0000\u0089\u0000"+ + "\u008b\u0000\u008d\u0000\u008f\u0000\u0091\u0000\u0093\u0000\u0095\u0000"+ + "\u0097\u0000\u0099\u0000\u009b*\u009d+\u009f,\u00a1\u0000\u00a3\u0000"+ + "\u00a5-\u00a7.\u00a9/\u00ab0\u00ad\u0000\u00af\u0000\u00b11\u00b32\u00b5"+ + "3\u00b74\u00b9\u0000\u00bb\u0000\u00bd\u0000\u00bf\u0000\u00c1\u0000\u00c3"+ + "\u0000\u00c5\u0000\u00c7\u0000\u00c9\u0000\u00cb\u0000\u00cd5\u00cf6\u00d1"+ + "7\u00d38\u00d59\u00d7:\u00d9;\u00db<\u00dd=\u00df>\u00e1?\u00e3@\u00e5"+ + "A\u00e7B\u00e9C\u00ebD\u00edE\u00efF\u00f1G\u00f3H\u00f5I\u00f7J\u00f9"+ + "K\u00fbL\u00fdM\u00ffN\u0101O\u0103P\u0105Q\u0107R\u0109S\u010bT\u010d"+ + "U\u010fV\u0111W\u0113X\u0115Y\u0117Z\u0119[\u011b\\\u011d]\u011f^\u0121"+ + "\u0000\u0123_\u0125`\u0127a\u0129b\u012bc\u012dd\u012fe\u0131\u0000\u0133"+ + "f\u0135g\u0137h\u0139i\u013b\u0000\u013d\u0000\u013f\u0000\u0141\u0000"+ + "\u0143\u0000\u0145\u0000\u0147\u0000\u0149j\u014b\u0000\u014d\u0000\u014f"+ + "k\u0151\u0000\u0153\u0000\u0155l\u0157m\u0159n\u015b\u0000\u015d\u0000"+ + "\u015f\u0000\u0161o\u0163p\u0165q\u0167\u0000\u0169\u0000\u016br\u016d"+ + "s\u016ft\u0171u\u0173v\u0175\u0000\u0177\u0000\u0179\u0000\u017b\u0000"+ + "\u017dw\u017fx\u0181y\u0183\u0000\u0185z\u0187\u0000\u0189\u0000\u018b"+ + "{\u018d\u0000\u018f\u0000\u0191\u0000\u0193\u0000\u0195\u0000\u0197|\u0199"+ + "}\u019b~\u019d\u0000\u019f\u0000\u01a1\u0000\u01a3\u0000\u01a5\u0000\u01a7"+ + "\u0000\u01a9\u0000\u01ab\u0000\u01ad\u007f\u01af\u0080\u01b1\u0081\u01b3"+ + "\u0000\u01b5\u0000\u01b7\u0000\u01b9\u0000\u01bb\u0000\u01bd\u0082\u01bf"+ + "\u0083\u01c1\u0084\u01c3\u0000\u01c5\u0000\u01c7\u0000\u01c9\u0000\u01cb"+ + "\u0000\u01cd\u0000\u01cf\u0000\u01d1\u0000\u01d3\u0000\u01d5\u0085\u01d7"+ + "\u0086\u01d9\u0087\u01db\u0000\u01dd\u0000\u01df\u0000\u01e1\u0000\u01e3"+ + "\u0000\u01e5\u0000\u01e7\u0000\u01e9\u0000\u01eb\u0000\u01ed\u0000\u01ef"+ + "\u0088\u01f1\u0089\u01f3\u008a\u01f5\u008b\u01f7\u0000\u01f9\u0000\u01fb"+ + "\u0000\u01fd\u0000\u01ff\u0000\u0201\u0000\u0203\u0000\u0205\u0000\u0207"+ + "\u0000\u0209\u008c\u020b\u0000\u020d\u008d\u020f\u008e\u0211\u008f\u0213"+ + "\u0000\u0215\u0090\u0217\u0091\u0219\u0092\u021b\u0093\u0011\u0000\u0001"+ + "\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010"+ + "$\u0002\u0000\n\n\r\r\u0003\u0000\t\n\r\r \u0002\u0000CCcc\u0002\u0000"+ + "HHhh\u0002\u0000AAaa\u0002\u0000NNnn\u0002\u0000GGgg\u0002\u0000EEee\u0002"+ + "\u0000PPpp\u0002\u0000OOoo\u0002\u0000IIii\u0002\u0000TTtt\u0002\u0000"+ + "RRrr\u0002\u0000XXxx\u0002\u0000LLll\u0002\u0000MMmm\u0002\u0000DDdd\u0002"+ + "\u0000SSss\u0002\u0000VVvv\u0002\u0000KKkk\u0002\u0000WWww\u0002\u0000"+ + "FFff\u0002\u0000UUuu\u0006\u0000\t\n\r\r //[[]]\f\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\f\u0000\t\n\r\r \"\"(),,//::==[[]]||\u0002"+ + "\u0000**//\u0002\u0000JJjj\u07c5\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\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000"+ + "\u0000\u0000\u0000S\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_\u0001\u0000"+ + "\u0000\u0000\u0001a\u0001\u0000\u0000\u0000\u0001c\u0001\u0000\u0000\u0000"+ + "\u0001e\u0001\u0000\u0000\u0000\u0001g\u0001\u0000\u0000\u0000\u0001i"+ + "\u0001\u0000\u0000\u0000\u0002k\u0001\u0000\u0000\u0000\u0002m\u0001\u0000"+ + "\u0000\u0000\u0002o\u0001\u0000\u0000\u0000\u0002q\u0001\u0000\u0000\u0000"+ + "\u0002s\u0001\u0000\u0000\u0000\u0002w\u0001\u0000\u0000\u0000\u0002y"+ + "\u0001\u0000\u0000\u0000\u0002{\u0001\u0000\u0000\u0000\u0002}\u0001\u0000"+ + "\u0000\u0000\u0002\u007f\u0001\u0000\u0000\u0000\u0002\u0081\u0001\u0000"+ + "\u0000\u0000\u0003\u0083\u0001\u0000\u0000\u0000\u0003\u0085\u0001\u0000"+ + "\u0000\u0000\u0003\u0087\u0001\u0000\u0000\u0000\u0003\u0089\u0001\u0000"+ + "\u0000\u0000\u0003\u008b\u0001\u0000\u0000\u0000\u0003\u008d\u0001\u0000"+ + "\u0000\u0000\u0003\u008f\u0001\u0000\u0000\u0000\u0003\u0091\u0001\u0000"+ + "\u0000\u0000\u0003\u0093\u0001\u0000\u0000\u0000\u0003\u0095\u0001\u0000"+ + "\u0000\u0000\u0003\u0097\u0001\u0000\u0000\u0000\u0003\u0099\u0001\u0000"+ + "\u0000\u0000\u0003\u009b\u0001\u0000\u0000\u0000\u0003\u009d\u0001\u0000"+ + "\u0000\u0000\u0003\u009f\u0001\u0000\u0000\u0000\u0004\u00a1\u0001\u0000"+ + "\u0000\u0000\u0004\u00a3\u0001\u0000\u0000\u0000\u0004\u00a5\u0001\u0000"+ + "\u0000\u0000\u0004\u00a7\u0001\u0000\u0000\u0000\u0004\u00a9\u0001\u0000"+ + "\u0000\u0000\u0004\u00ab\u0001\u0000\u0000\u0000\u0005\u00ad\u0001\u0000"+ + "\u0000\u0000\u0005\u00af\u0001\u0000\u0000\u0000\u0005\u00b1\u0001\u0000"+ + "\u0000\u0000\u0005\u00b3\u0001\u0000\u0000\u0000\u0005\u00b5\u0001\u0000"+ + "\u0000\u0000\u0006\u00b7\u0001\u0000\u0000\u0000\u0006\u00cd\u0001\u0000"+ + "\u0000\u0000\u0006\u00cf\u0001\u0000\u0000\u0000\u0006\u00d1\u0001\u0000"+ + "\u0000\u0000\u0006\u00d3\u0001\u0000\u0000\u0000\u0006\u00d5\u0001\u0000"+ + "\u0000\u0000\u0006\u00d7\u0001\u0000\u0000\u0000\u0006\u00d9\u0001\u0000"+ + "\u0000\u0000\u0006\u00db\u0001\u0000\u0000\u0000\u0006\u00dd\u0001\u0000"+ + "\u0000\u0000\u0006\u00df\u0001\u0000\u0000\u0000\u0006\u00e1\u0001\u0000"+ + "\u0000\u0000\u0006\u00e3\u0001\u0000\u0000\u0000\u0006\u00e5\u0001\u0000"+ + "\u0000\u0000\u0006\u00e7\u0001\u0000\u0000\u0000\u0006\u00e9\u0001\u0000"+ + "\u0000\u0000\u0006\u00eb\u0001\u0000\u0000\u0000\u0006\u00ed\u0001\u0000"+ + "\u0000\u0000\u0006\u00ef\u0001\u0000\u0000\u0000\u0006\u00f1\u0001\u0000"+ + "\u0000\u0000\u0006\u00f3\u0001\u0000\u0000\u0000\u0006\u00f5\u0001\u0000"+ + "\u0000\u0000\u0006\u00f7\u0001\u0000\u0000\u0000\u0006\u00f9\u0001\u0000"+ + "\u0000\u0000\u0006\u00fb\u0001\u0000\u0000\u0000\u0006\u00fd\u0001\u0000"+ + "\u0000\u0000\u0006\u00ff\u0001\u0000\u0000\u0000\u0006\u0101\u0001\u0000"+ + "\u0000\u0000\u0006\u0103\u0001\u0000\u0000\u0000\u0006\u0105\u0001\u0000"+ + "\u0000\u0000\u0006\u0107\u0001\u0000\u0000\u0000\u0006\u0109\u0001\u0000"+ + "\u0000\u0000\u0006\u010b\u0001\u0000\u0000\u0000\u0006\u010d\u0001\u0000"+ + "\u0000\u0000\u0006\u010f\u0001\u0000\u0000\u0000\u0006\u0111\u0001\u0000"+ + "\u0000\u0000\u0006\u0113\u0001\u0000\u0000\u0000\u0006\u0115\u0001\u0000"+ + "\u0000\u0000\u0006\u0117\u0001\u0000\u0000\u0000\u0006\u0119\u0001\u0000"+ + "\u0000\u0000\u0006\u011b\u0001\u0000\u0000\u0000\u0006\u011d\u0001\u0000"+ + "\u0000\u0000\u0006\u011f\u0001\u0000\u0000\u0000\u0006\u0121\u0001\u0000"+ + "\u0000\u0000\u0006\u0123\u0001\u0000\u0000\u0000\u0006\u0125\u0001\u0000"+ + "\u0000\u0000\u0006\u0127\u0001\u0000\u0000\u0000\u0006\u0129\u0001\u0000"+ + "\u0000\u0000\u0006\u012b\u0001\u0000\u0000\u0000\u0006\u012d\u0001\u0000"+ + "\u0000\u0000\u0006\u012f\u0001\u0000\u0000\u0000\u0006\u0133\u0001\u0000"+ + "\u0000\u0000\u0006\u0135\u0001\u0000\u0000\u0000\u0006\u0137\u0001\u0000"+ + "\u0000\u0000\u0006\u0139\u0001\u0000\u0000\u0000\u0007\u013b\u0001\u0000"+ + "\u0000\u0000\u0007\u013d\u0001\u0000\u0000\u0000\u0007\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\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\b\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\t\u0167"+ + "\u0001\u0000\u0000\u0000\t\u0169\u0001\u0000\u0000\u0000\t\u016b\u0001"+ + "\u0000\u0000\u0000\t\u016d\u0001\u0000\u0000\u0000\t\u016f\u0001\u0000"+ + "\u0000\u0000\t\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\t\u017d"+ + "\u0001\u0000\u0000\u0000\t\u017f\u0001\u0000\u0000\u0000\t\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\n\u018b\u0001\u0000\u0000\u0000\n\u018d\u0001\u0000\u0000\u0000"+ + "\n\u018f\u0001\u0000\u0000\u0000\n\u0191\u0001\u0000\u0000\u0000\n\u0193"+ + "\u0001\u0000\u0000\u0000\n\u0195\u0001\u0000\u0000\u0000\n\u0197\u0001"+ + "\u0000\u0000\u0000\n\u0199\u0001\u0000\u0000\u0000\n\u019b\u0001\u0000"+ + "\u0000\u0000\u000b\u019d\u0001\u0000\u0000\u0000\u000b\u019f\u0001\u0000"+ + "\u0000\u0000\u000b\u01a1\u0001\u0000\u0000\u0000\u000b\u01a3\u0001\u0000"+ + "\u0000\u0000\u000b\u01a5\u0001\u0000\u0000\u0000\u000b\u01a7\u0001\u0000"+ + "\u0000\u0000\u000b\u01a9\u0001\u0000\u0000\u0000\u000b\u01ab\u0001\u0000"+ + "\u0000\u0000\u000b\u01ad\u0001\u0000\u0000\u0000\u000b\u01af\u0001\u0000"+ + "\u0000\u0000\u000b\u01b1\u0001\u0000\u0000\u0000\f\u01b3\u0001\u0000\u0000"+ + "\u0000\f\u01b5\u0001\u0000\u0000\u0000\f\u01b7\u0001\u0000\u0000\u0000"+ + "\f\u01b9\u0001\u0000\u0000\u0000\f\u01bb\u0001\u0000\u0000\u0000\f\u01bd"+ + "\u0001\u0000\u0000\u0000\f\u01bf\u0001\u0000\u0000\u0000\f\u01c1\u0001"+ + "\u0000\u0000\u0000\r\u01c3\u0001\u0000\u0000\u0000\r\u01c5\u0001\u0000"+ + "\u0000\u0000\r\u01c7\u0001\u0000\u0000\u0000\r\u01c9\u0001\u0000\u0000"+ + "\u0000\r\u01cb\u0001\u0000\u0000\u0000\r\u01cd\u0001\u0000\u0000\u0000"+ + "\r\u01cf\u0001\u0000\u0000\u0000\r\u01d1\u0001\u0000\u0000\u0000\r\u01d3"+ + "\u0001\u0000\u0000\u0000\r\u01d5\u0001\u0000\u0000\u0000\r\u01d7\u0001"+ + "\u0000\u0000\u0000\r\u01d9\u0001\u0000\u0000\u0000\u000e\u01db\u0001\u0000"+ + "\u0000\u0000\u000e\u01dd\u0001\u0000\u0000\u0000\u000e\u01df\u0001\u0000"+ + "\u0000\u0000\u000e\u01e1\u0001\u0000\u0000\u0000\u000e\u01e3\u0001\u0000"+ + "\u0000\u0000\u000e\u01e5\u0001\u0000\u0000\u0000\u000e\u01e7\u0001\u0000"+ + "\u0000\u0000\u000e\u01e9\u0001\u0000\u0000\u0000\u000e\u01ef\u0001\u0000"+ + "\u0000\u0000\u000e\u01f1\u0001\u0000\u0000\u0000\u000e\u01f3\u0001\u0000"+ + "\u0000\u0000\u000e\u01f5\u0001\u0000\u0000\u0000\u000f\u01f7\u0001\u0000"+ + "\u0000\u0000\u000f\u01f9\u0001\u0000\u0000\u0000\u000f\u01fb\u0001\u0000"+ + "\u0000\u0000\u000f\u01fd\u0001\u0000\u0000\u0000\u000f\u01ff\u0001\u0000"+ + "\u0000\u0000\u000f\u0201\u0001\u0000\u0000\u0000\u000f\u0203\u0001\u0000"+ + "\u0000\u0000\u000f\u0205\u0001\u0000\u0000\u0000\u000f\u0207\u0001\u0000"+ + "\u0000\u0000\u000f\u0209\u0001\u0000\u0000\u0000\u000f\u020b\u0001\u0000"+ + "\u0000\u0000\u000f\u020d\u0001\u0000\u0000\u0000\u000f\u020f\u0001\u0000"+ + "\u0000\u0000\u000f\u0211\u0001\u0000\u0000\u0000\u0010\u0213\u0001\u0000"+ + "\u0000\u0000\u0010\u0215\u0001\u0000\u0000\u0000\u0010\u0217\u0001\u0000"+ + "\u0000\u0000\u0010\u0219\u0001\u0000\u0000\u0000\u0010\u021b\u0001\u0000"+ + "\u0000\u0000\u0011\u021d\u0001\u0000\u0000\u0000\u0013\u022e\u0001\u0000"+ + "\u0000\u0000\u0015\u023e\u0001\u0000\u0000\u0000\u0017\u0244\u0001\u0000"+ + "\u0000\u0000\u0019\u0253\u0001\u0000\u0000\u0000\u001b\u025c\u0001\u0000"+ + "\u0000\u0000\u001d\u0267\u0001\u0000\u0000\u0000\u001f\u0274\u0001\u0000"+ + "\u0000\u0000!\u027e\u0001\u0000\u0000\u0000#\u0285\u0001\u0000\u0000\u0000"+ + "%\u028c\u0001\u0000\u0000\u0000\'\u0294\u0001\u0000\u0000\u0000)\u029d"+ + "\u0001\u0000\u0000\u0000+\u02a3\u0001\u0000\u0000\u0000-\u02ac\u0001\u0000"+ + "\u0000\u0000/\u02b3\u0001\u0000\u0000\u00001\u02bb\u0001\u0000\u0000\u0000"+ + "3\u02c3\u0001\u0000\u0000\u00005\u02d2\u0001\u0000\u0000\u00007\u02d9"+ + "\u0001\u0000\u0000\u00009\u02df\u0001\u0000\u0000\u0000;\u02e6\u0001\u0000"+ + "\u0000\u0000=\u02ee\u0001\u0000\u0000\u0000?\u02f7\u0001\u0000\u0000\u0000"+ + "A\u02ff\u0001\u0000\u0000\u0000C\u0307\u0001\u0000\u0000\u0000E\u0310"+ + "\u0001\u0000\u0000\u0000G\u031c\u0001\u0000\u0000\u0000I\u0328\u0001\u0000"+ + "\u0000\u0000K\u032f\u0001\u0000\u0000\u0000M\u0336\u0001\u0000\u0000\u0000"+ + "O\u0342\u0001\u0000\u0000\u0000Q\u034b\u0001\u0000\u0000\u0000S\u0353"+ + "\u0001\u0000\u0000\u0000U\u0359\u0001\u0000\u0000\u0000W\u035e\u0001\u0000"+ + "\u0000\u0000Y\u0364\u0001\u0000\u0000\u0000[\u0368\u0001\u0000\u0000\u0000"+ + "]\u036c\u0001\u0000\u0000\u0000_\u0370\u0001\u0000\u0000\u0000a\u0374"+ + "\u0001\u0000\u0000\u0000c\u0378\u0001\u0000\u0000\u0000e\u037c\u0001\u0000"+ + "\u0000\u0000g\u0380\u0001\u0000\u0000\u0000i\u0384\u0001\u0000\u0000\u0000"+ + "k\u0388\u0001\u0000\u0000\u0000m\u038d\u0001\u0000\u0000\u0000o\u0393"+ + "\u0001\u0000\u0000\u0000q\u0398\u0001\u0000\u0000\u0000s\u039d\u0001\u0000"+ + "\u0000\u0000u\u03a2\u0001\u0000\u0000\u0000w\u03ab\u0001\u0000\u0000\u0000"+ + "y\u03b2\u0001\u0000\u0000\u0000{\u03b6\u0001\u0000\u0000\u0000}\u03ba"+ + "\u0001\u0000\u0000\u0000\u007f\u03be\u0001\u0000\u0000\u0000\u0081\u03c2"+ + "\u0001\u0000\u0000\u0000\u0083\u03c6\u0001\u0000\u0000\u0000\u0085\u03cc"+ + "\u0001\u0000\u0000\u0000\u0087\u03d3\u0001\u0000\u0000\u0000\u0089\u03d7"+ + "\u0001\u0000\u0000\u0000\u008b\u03db\u0001\u0000\u0000\u0000\u008d\u03df"+ + "\u0001\u0000\u0000\u0000\u008f\u03e3\u0001\u0000\u0000\u0000\u0091\u03e7"+ + "\u0001\u0000\u0000\u0000\u0093\u03eb\u0001\u0000\u0000\u0000\u0095\u03ef"+ + "\u0001\u0000\u0000\u0000\u0097\u03f3\u0001\u0000\u0000\u0000\u0099\u03f7"+ + "\u0001\u0000\u0000\u0000\u009b\u03fb\u0001\u0000\u0000\u0000\u009d\u03ff"+ + "\u0001\u0000\u0000\u0000\u009f\u0403\u0001\u0000\u0000\u0000\u00a1\u0407"+ + "\u0001\u0000\u0000\u0000\u00a3\u040c\u0001\u0000\u0000\u0000\u00a5\u0415"+ + "\u0001\u0000\u0000\u0000\u00a7\u0419\u0001\u0000\u0000\u0000\u00a9\u041d"+ + "\u0001\u0000\u0000\u0000\u00ab\u0421\u0001\u0000\u0000\u0000\u00ad\u0425"+ + "\u0001\u0000\u0000\u0000\u00af\u042a\u0001\u0000\u0000\u0000\u00b1\u042f"+ + "\u0001\u0000\u0000\u0000\u00b3\u0433\u0001\u0000\u0000\u0000\u00b5\u0437"+ + "\u0001\u0000\u0000\u0000\u00b7\u043b\u0001\u0000\u0000\u0000\u00b9\u043f"+ + "\u0001\u0000\u0000\u0000\u00bb\u0441\u0001\u0000\u0000\u0000\u00bd\u0443"+ + "\u0001\u0000\u0000\u0000\u00bf\u0446\u0001\u0000\u0000\u0000\u00c1\u0448"+ + "\u0001\u0000\u0000\u0000\u00c3\u0451\u0001\u0000\u0000\u0000\u00c5\u0453"+ + "\u0001\u0000\u0000\u0000\u00c7\u0458\u0001\u0000\u0000\u0000\u00c9\u045a"+ + "\u0001\u0000\u0000\u0000\u00cb\u045f\u0001\u0000\u0000\u0000\u00cd\u047e"+ + "\u0001\u0000\u0000\u0000\u00cf\u0481\u0001\u0000\u0000\u0000\u00d1\u04af"+ + "\u0001\u0000\u0000\u0000\u00d3\u04b1\u0001\u0000\u0000\u0000\u00d5\u04b5"+ + "\u0001\u0000\u0000\u0000\u00d7\u04b9\u0001\u0000\u0000\u0000\u00d9\u04bb"+ + "\u0001\u0000\u0000\u0000\u00db\u04be\u0001\u0000\u0000\u0000\u00dd\u04c1"+ + "\u0001\u0000\u0000\u0000\u00df\u04c3\u0001\u0000\u0000\u0000\u00e1\u04c5"+ + "\u0001\u0000\u0000\u0000\u00e3\u04ca\u0001\u0000\u0000\u0000\u00e5\u04cc"+ + "\u0001\u0000\u0000\u0000\u00e7\u04d2\u0001\u0000\u0000\u0000\u00e9\u04d8"+ + "\u0001\u0000\u0000\u0000\u00eb\u04db\u0001\u0000\u0000\u0000\u00ed\u04de"+ + "\u0001\u0000\u0000\u0000\u00ef\u04e3\u0001\u0000\u0000\u0000\u00f1\u04e8"+ + "\u0001\u0000\u0000\u0000\u00f3\u04ec\u0001\u0000\u0000\u0000\u00f5\u04f1"+ + "\u0001\u0000\u0000\u0000\u00f7\u04f7\u0001\u0000\u0000\u0000\u00f9\u04fa"+ + "\u0001\u0000\u0000\u0000\u00fb\u04fd\u0001\u0000\u0000\u0000\u00fd\u04ff"+ + "\u0001\u0000\u0000\u0000\u00ff\u0505\u0001\u0000\u0000\u0000\u0101\u050a"+ + "\u0001\u0000\u0000\u0000\u0103\u050f\u0001\u0000\u0000\u0000\u0105\u0512"+ + "\u0001\u0000\u0000\u0000\u0107\u0515\u0001\u0000\u0000\u0000\u0109\u0518"+ + "\u0001\u0000\u0000\u0000\u010b\u051a\u0001\u0000\u0000\u0000\u010d\u051d"+ + "\u0001\u0000\u0000\u0000\u010f\u051f\u0001\u0000\u0000\u0000\u0111\u0522"+ + "\u0001\u0000\u0000\u0000\u0113\u0524\u0001\u0000\u0000\u0000\u0115\u0526"+ + "\u0001\u0000\u0000\u0000\u0117\u0528\u0001\u0000\u0000\u0000\u0119\u052a"+ + "\u0001\u0000\u0000\u0000\u011b\u052c\u0001\u0000\u0000\u0000\u011d\u052e"+ + "\u0001\u0000\u0000\u0000\u011f\u0530\u0001\u0000\u0000\u0000\u0121\u0533"+ + "\u0001\u0000\u0000\u0000\u0123\u0548\u0001\u0000\u0000\u0000\u0125\u055b"+ + "\u0001\u0000\u0000\u0000\u0127\u055d\u0001\u0000\u0000\u0000\u0129\u0562"+ + "\u0001\u0000\u0000\u0000\u012b\u0567\u0001\u0000\u0000\u0000\u012d\u056c"+ + "\u0001\u0000\u0000\u0000\u012f\u0581\u0001\u0000\u0000\u0000\u0131\u0583"+ + "\u0001\u0000\u0000\u0000\u0133\u058b\u0001\u0000\u0000\u0000\u0135\u058d"+ + "\u0001\u0000\u0000\u0000\u0137\u0591\u0001\u0000\u0000\u0000\u0139\u0595"+ + "\u0001\u0000\u0000\u0000\u013b\u0599\u0001\u0000\u0000\u0000\u013d\u059e"+ + "\u0001\u0000\u0000\u0000\u013f\u05a2\u0001\u0000\u0000\u0000\u0141\u05a6"+ + "\u0001\u0000\u0000\u0000\u0143\u05aa\u0001\u0000\u0000\u0000\u0145\u05ae"+ + "\u0001\u0000\u0000\u0000\u0147\u05b2\u0001\u0000\u0000\u0000\u0149\u05b6"+ + "\u0001\u0000\u0000\u0000\u014b\u05bf\u0001\u0000\u0000\u0000\u014d\u05c7"+ + "\u0001\u0000\u0000\u0000\u014f\u05ca\u0001\u0000\u0000\u0000\u0151\u05ce"+ + "\u0001\u0000\u0000\u0000\u0153\u05d2\u0001\u0000\u0000\u0000\u0155\u05d6"+ + "\u0001\u0000\u0000\u0000\u0157\u05da\u0001\u0000\u0000\u0000\u0159\u05de"+ + "\u0001\u0000\u0000\u0000\u015b\u05e2\u0001\u0000\u0000\u0000\u015d\u05e7"+ + "\u0001\u0000\u0000\u0000\u015f\u05ed\u0001\u0000\u0000\u0000\u0161\u05f2"+ + "\u0001\u0000\u0000\u0000\u0163\u05f6\u0001\u0000\u0000\u0000\u0165\u05fa"+ + "\u0001\u0000\u0000\u0000\u0167\u05fe\u0001\u0000\u0000\u0000\u0169\u0603"+ + "\u0001\u0000\u0000\u0000\u016b\u0609\u0001\u0000\u0000\u0000\u016d\u060f"+ + "\u0001\u0000\u0000\u0000\u016f\u0615\u0001\u0000\u0000\u0000\u0171\u0619"+ + "\u0001\u0000\u0000\u0000\u0173\u061d\u0001\u0000\u0000\u0000\u0175\u0624"+ + "\u0001\u0000\u0000\u0000\u0177\u062a\u0001\u0000\u0000\u0000\u0179\u062e"+ + "\u0001\u0000\u0000\u0000\u017b\u0632\u0001\u0000\u0000\u0000\u017d\u0636"+ + "\u0001\u0000\u0000\u0000\u017f\u063a\u0001\u0000\u0000\u0000\u0181\u063e"+ + "\u0001\u0000\u0000\u0000\u0183\u0642\u0001\u0000\u0000\u0000\u0185\u0647"+ + "\u0001\u0000\u0000\u0000\u0187\u064c\u0001\u0000\u0000\u0000\u0189\u0650"+ + "\u0001\u0000\u0000\u0000\u018b\u0656\u0001\u0000\u0000\u0000\u018d\u065f"+ + "\u0001\u0000\u0000\u0000\u018f\u0663\u0001\u0000\u0000\u0000\u0191\u0667"+ + "\u0001\u0000\u0000\u0000\u0193\u066b\u0001\u0000\u0000\u0000\u0195\u066f"+ + "\u0001\u0000\u0000\u0000\u0197\u0673\u0001\u0000\u0000\u0000\u0199\u0677"+ + "\u0001\u0000\u0000\u0000\u019b\u067b\u0001\u0000\u0000\u0000\u019d\u067f"+ + "\u0001\u0000\u0000\u0000\u019f\u0684\u0001\u0000\u0000\u0000\u01a1\u068a"+ + "\u0001\u0000\u0000\u0000\u01a3\u068e\u0001\u0000\u0000\u0000\u01a5\u0692"+ + "\u0001\u0000\u0000\u0000\u01a7\u0696\u0001\u0000\u0000\u0000\u01a9\u069b"+ + "\u0001\u0000\u0000\u0000\u01ab\u069f\u0001\u0000\u0000\u0000\u01ad\u06a3"+ + "\u0001\u0000\u0000\u0000\u01af\u06a7\u0001\u0000\u0000\u0000\u01b1\u06ab"+ + "\u0001\u0000\u0000\u0000\u01b3\u06af\u0001\u0000\u0000\u0000\u01b5\u06b5"+ + "\u0001\u0000\u0000\u0000\u01b7\u06bc\u0001\u0000\u0000\u0000\u01b9\u06c0"+ + "\u0001\u0000\u0000\u0000\u01bb\u06c4\u0001\u0000\u0000\u0000\u01bd\u06c8"+ + "\u0001\u0000\u0000\u0000\u01bf\u06cc\u0001\u0000\u0000\u0000\u01c1\u06d0"+ + "\u0001\u0000\u0000\u0000\u01c3\u06d4\u0001\u0000\u0000\u0000\u01c5\u06d9"+ + "\u0001\u0000\u0000\u0000\u01c7\u06df\u0001\u0000\u0000\u0000\u01c9\u06e3"+ + "\u0001\u0000\u0000\u0000\u01cb\u06e7\u0001\u0000\u0000\u0000\u01cd\u06eb"+ + "\u0001\u0000\u0000\u0000\u01cf\u06ef\u0001\u0000\u0000\u0000\u01d1\u06f3"+ + "\u0001\u0000\u0000\u0000\u01d3\u06f7\u0001\u0000\u0000\u0000\u01d5\u06fb"+ + "\u0001\u0000\u0000\u0000\u01d7\u06ff\u0001\u0000\u0000\u0000\u01d9\u0703"+ + "\u0001\u0000\u0000\u0000\u01db\u0707\u0001\u0000\u0000\u0000\u01dd\u070c"+ + "\u0001\u0000\u0000\u0000\u01df\u0712\u0001\u0000\u0000\u0000\u01e1\u0716"+ + "\u0001\u0000\u0000\u0000\u01e3\u071a\u0001\u0000\u0000\u0000\u01e5\u071e"+ + "\u0001\u0000\u0000\u0000\u01e7\u0722\u0001\u0000\u0000\u0000\u01e9\u0726"+ + "\u0001\u0000\u0000\u0000\u01eb\u072e\u0001\u0000\u0000\u0000\u01ed\u0743"+ + "\u0001\u0000\u0000\u0000\u01ef\u0747\u0001\u0000\u0000\u0000\u01f1\u074b"+ + "\u0001\u0000\u0000\u0000\u01f3\u074f\u0001\u0000\u0000\u0000\u01f5\u0753"+ + "\u0001\u0000\u0000\u0000\u01f7\u0757\u0001\u0000\u0000\u0000\u01f9\u075c"+ + "\u0001\u0000\u0000\u0000\u01fb\u0762\u0001\u0000\u0000\u0000\u01fd\u0766"+ + "\u0001\u0000\u0000\u0000\u01ff\u076a\u0001\u0000\u0000\u0000\u0201\u076e"+ + "\u0001\u0000\u0000\u0000\u0203\u0772\u0001\u0000\u0000\u0000\u0205\u0776"+ + "\u0001\u0000\u0000\u0000\u0207\u077a\u0001\u0000\u0000\u0000\u0209\u077e"+ + "\u0001\u0000\u0000\u0000\u020b\u0781\u0001\u0000\u0000\u0000\u020d\u0785"+ + "\u0001\u0000\u0000\u0000\u020f\u0789\u0001\u0000\u0000\u0000\u0211\u078d"+ + "\u0001\u0000\u0000\u0000\u0213\u0791\u0001\u0000\u0000\u0000\u0215\u0796"+ + "\u0001\u0000\u0000\u0000\u0217\u079b\u0001\u0000\u0000\u0000\u0219\u079f"+ + "\u0001\u0000\u0000\u0000\u021b\u07a3\u0001\u0000\u0000\u0000\u021d\u021e"+ + "\u0005/\u0000\u0000\u021e\u021f\u0005/\u0000\u0000\u021f\u0223\u0001\u0000"+ + "\u0000\u0000\u0220\u0222\b\u0000\u0000\u0000\u0221\u0220\u0001\u0000\u0000"+ + "\u0000\u0222\u0225\u0001\u0000\u0000\u0000\u0223\u0221\u0001\u0000\u0000"+ + "\u0000\u0223\u0224\u0001\u0000\u0000\u0000\u0224\u0227\u0001\u0000\u0000"+ + "\u0000\u0225\u0223\u0001\u0000\u0000\u0000\u0226\u0228\u0005\r\u0000\u0000"+ + "\u0227\u0226\u0001\u0000\u0000\u0000\u0227\u0228\u0001\u0000\u0000\u0000"+ + "\u0228\u022a\u0001\u0000\u0000\u0000\u0229\u022b\u0005\n\u0000\u0000\u022a"+ + "\u0229\u0001\u0000\u0000\u0000\u022a\u022b\u0001\u0000\u0000\u0000\u022b"+ + "\u022c\u0001\u0000\u0000\u0000\u022c\u022d\u0006\u0000\u0000\u0000\u022d"+ + "\u0012\u0001\u0000\u0000\u0000\u022e\u022f\u0005/\u0000\u0000\u022f\u0230"+ + "\u0005*\u0000\u0000\u0230\u0235\u0001\u0000\u0000\u0000\u0231\u0234\u0003"+ + "\u0013\u0001\u0000\u0232\u0234\t\u0000\u0000\u0000\u0233\u0231\u0001\u0000"+ + "\u0000\u0000\u0233\u0232\u0001\u0000\u0000\u0000\u0234\u0237\u0001\u0000"+ + "\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0235\u0233\u0001\u0000"+ + "\u0000\u0000\u0236\u0238\u0001\u0000\u0000\u0000\u0237\u0235\u0001\u0000"+ + "\u0000\u0000\u0238\u0239\u0005*\u0000\u0000\u0239\u023a\u0005/\u0000\u0000"+ + "\u023a\u023b\u0001\u0000\u0000\u0000\u023b\u023c\u0006\u0001\u0000\u0000"+ + "\u023c\u0014\u0001\u0000\u0000\u0000\u023d\u023f\u0007\u0001\u0000\u0000"+ + "\u023e\u023d\u0001\u0000\u0000\u0000\u023f\u0240\u0001\u0000\u0000\u0000"+ + "\u0240\u023e\u0001\u0000\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000"+ + "\u0241\u0242\u0001\u0000\u0000\u0000\u0242\u0243\u0006\u0002\u0000\u0000"+ + "\u0243\u0016\u0001\u0000\u0000\u0000\u0244\u0245\u0007\u0002\u0000\u0000"+ + "\u0245\u0246\u0007\u0003\u0000\u0000\u0246\u0247\u0007\u0004\u0000\u0000"+ + "\u0247\u0248\u0007\u0005\u0000\u0000\u0248\u0249\u0007\u0006\u0000\u0000"+ + "\u0249\u024a\u0007\u0007\u0000\u0000\u024a\u024b\u0005_\u0000\u0000\u024b"+ + "\u024c\u0007\b\u0000\u0000\u024c\u024d\u0007\t\u0000\u0000\u024d\u024e"+ + "\u0007\n\u0000\u0000\u024e\u024f\u0007\u0005\u0000\u0000\u024f\u0250\u0007"+ + "\u000b\u0000\u0000\u0250\u0251\u0001\u0000\u0000\u0000\u0251\u0252\u0006"+ + "\u0003\u0001\u0000\u0252\u0018\u0001\u0000\u0000\u0000\u0253\u0254\u0007"+ + "\u0007\u0000\u0000\u0254\u0255\u0007\u0005\u0000\u0000\u0255\u0256\u0007"+ + "\f\u0000\u0000\u0256\u0257\u0007\n\u0000\u0000\u0257\u0258\u0007\u0002"+ + "\u0000\u0000\u0258\u0259\u0007\u0003\u0000\u0000\u0259\u025a\u0001\u0000"+ + "\u0000\u0000\u025a\u025b\u0006\u0004\u0002\u0000\u025b\u001a\u0001\u0000"+ + "\u0000\u0000\u025c\u025d\u0004\u0005\u0000\u0000\u025d\u025e\u0007\u0007"+ + "\u0000\u0000\u025e\u025f\u0007\r\u0000\u0000\u025f\u0260\u0007\b\u0000"+ + "\u0000\u0260\u0261\u0007\u000e\u0000\u0000\u0261\u0262\u0007\u0004\u0000"+ + "\u0000\u0262\u0263\u0007\n\u0000\u0000\u0263\u0264\u0007\u0005\u0000\u0000"+ + "\u0264\u0265\u0001\u0000\u0000\u0000\u0265\u0266\u0006\u0005\u0003\u0000"+ + "\u0266\u001c\u0001\u0000\u0000\u0000\u0267\u0268\u0007\u0002\u0000\u0000"+ + "\u0268\u0269\u0007\t\u0000\u0000\u0269\u026a\u0007\u000f\u0000\u0000\u026a"+ + "\u026b\u0007\b\u0000\u0000\u026b\u026c\u0007\u000e\u0000\u0000\u026c\u026d"+ + "\u0007\u0007\u0000\u0000\u026d\u026e\u0007\u000b\u0000\u0000\u026e\u026f"+ + "\u0007\n\u0000\u0000\u026f\u0270\u0007\t\u0000\u0000\u0270\u0271\u0007"+ + "\u0005\u0000\u0000\u0271\u0272\u0001\u0000\u0000\u0000\u0272\u0273\u0006"+ + "\u0006\u0004\u0000\u0273\u001e\u0001\u0000\u0000\u0000\u0274\u0275\u0007"+ + "\u0010\u0000\u0000\u0275\u0276\u0007\n\u0000\u0000\u0276\u0277\u0007\u0011"+ + "\u0000\u0000\u0277\u0278\u0007\u0011\u0000\u0000\u0278\u0279\u0007\u0007"+ + "\u0000\u0000\u0279\u027a\u0007\u0002\u0000\u0000\u027a\u027b\u0007\u000b"+ + "\u0000\u0000\u027b\u027c\u0001\u0000\u0000\u0000\u027c\u027d\u0006\u0007"+ + "\u0004\u0000\u027d \u0001\u0000\u0000\u0000\u027e\u027f\u0007\u0007\u0000"+ + "\u0000\u027f\u0280\u0007\u0012\u0000\u0000\u0280\u0281\u0007\u0004\u0000"+ + "\u0000\u0281\u0282\u0007\u000e\u0000\u0000\u0282\u0283\u0001\u0000\u0000"+ + "\u0000\u0283\u0284\u0006\b\u0004\u0000\u0284\"\u0001\u0000\u0000\u0000"+ + "\u0285\u0286\u0007\u0006\u0000\u0000\u0286\u0287\u0007\f\u0000\u0000\u0287"+ + "\u0288\u0007\t\u0000\u0000\u0288\u0289\u0007\u0013\u0000\u0000\u0289\u028a"+ + "\u0001\u0000\u0000\u0000\u028a\u028b\u0006\t\u0004\u0000\u028b$\u0001"+ + "\u0000\u0000\u0000\u028c\u028d\u0007\u000e\u0000\u0000\u028d\u028e\u0007"+ + "\n\u0000\u0000\u028e\u028f\u0007\u000f\u0000\u0000\u028f\u0290\u0007\n"+ + "\u0000\u0000\u0290\u0291\u0007\u000b\u0000\u0000\u0291\u0292\u0001\u0000"+ + "\u0000\u0000\u0292\u0293\u0006\n\u0004\u0000\u0293&\u0001\u0000\u0000"+ + "\u0000\u0294\u0295\u0007\f\u0000\u0000\u0295\u0296\u0007\u0007\u0000\u0000"+ + "\u0296\u0297\u0007\f\u0000\u0000\u0297\u0298\u0007\u0004\u0000\u0000\u0298"+ + "\u0299\u0007\u0005\u0000\u0000\u0299\u029a\u0007\u0013\u0000\u0000\u029a"+ + "\u029b\u0001\u0000\u0000\u0000\u029b\u029c\u0006\u000b\u0004\u0000\u029c"+ + "(\u0001\u0000\u0000\u0000\u029d\u029e\u0007\f\u0000\u0000\u029e\u029f"+ + "\u0007\t\u0000\u0000\u029f\u02a0\u0007\u0014\u0000\u0000\u02a0\u02a1\u0001"+ + "\u0000\u0000\u0000\u02a1\u02a2\u0006\f\u0004\u0000\u02a2*\u0001\u0000"+ + "\u0000\u0000\u02a3\u02a4\u0007\u0011\u0000\u0000\u02a4\u02a5\u0007\u0004"+ + "\u0000\u0000\u02a5\u02a6\u0007\u000f\u0000\u0000\u02a6\u02a7\u0007\b\u0000"+ + "\u0000\u02a7\u02a8\u0007\u000e\u0000\u0000\u02a8\u02a9\u0007\u0007\u0000"+ + "\u0000\u02a9\u02aa\u0001\u0000\u0000\u0000\u02aa\u02ab\u0006\r\u0004\u0000"+ + "\u02ab,\u0001\u0000\u0000\u0000\u02ac\u02ad\u0007\u0011\u0000\u0000\u02ad"+ + "\u02ae\u0007\t\u0000\u0000\u02ae\u02af\u0007\f\u0000\u0000\u02af\u02b0"+ + "\u0007\u000b\u0000\u0000\u02b0\u02b1\u0001\u0000\u0000\u0000\u02b1\u02b2"+ + "\u0006\u000e\u0004\u0000\u02b2.\u0001\u0000\u0000\u0000\u02b3\u02b4\u0007"+ + "\u0011\u0000\u0000\u02b4\u02b5\u0007\u000b\u0000\u0000\u02b5\u02b6\u0007"+ + "\u0004\u0000\u0000\u02b6\u02b7\u0007\u000b\u0000\u0000\u02b7\u02b8\u0007"+ + "\u0011\u0000\u0000\u02b8\u02b9\u0001\u0000\u0000\u0000\u02b9\u02ba\u0006"+ + "\u000f\u0004\u0000\u02ba0\u0001\u0000\u0000\u0000\u02bb\u02bc\u0007\u0014"+ + "\u0000\u0000\u02bc\u02bd\u0007\u0003\u0000\u0000\u02bd\u02be\u0007\u0007"+ + "\u0000\u0000\u02be\u02bf\u0007\f\u0000\u0000\u02bf\u02c0\u0007\u0007\u0000"+ + "\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1\u02c2\u0006\u0010\u0004"+ + "\u0000\u02c22\u0001\u0000\u0000\u0000\u02c3\u02c4\u0004\u0011\u0001\u0000"+ + "\u02c4\u02c5\u0007\n\u0000\u0000\u02c5\u02c6\u0007\u0005\u0000\u0000\u02c6"+ + "\u02c7\u0007\u000e\u0000\u0000\u02c7\u02c8\u0007\n\u0000\u0000\u02c8\u02c9"+ + "\u0007\u0005\u0000\u0000\u02c9\u02ca\u0007\u0007\u0000\u0000\u02ca\u02cb"+ + "\u0007\u0011\u0000\u0000\u02cb\u02cc\u0007\u000b\u0000\u0000\u02cc\u02cd"+ + "\u0007\u0004\u0000\u0000\u02cd\u02ce\u0007\u000b\u0000\u0000\u02ce\u02cf"+ + "\u0007\u0011\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d1"+ + "\u0006\u0011\u0004\u0000\u02d14\u0001\u0000\u0000\u0000\u02d2\u02d3\u0007"+ + "\u0015\u0000\u0000\u02d3\u02d4\u0007\f\u0000\u0000\u02d4\u02d5\u0007\t"+ + "\u0000\u0000\u02d5\u02d6\u0007\u000f\u0000\u0000\u02d6\u02d7\u0001\u0000"+ + "\u0000\u0000\u02d7\u02d8\u0006\u0012\u0005\u0000\u02d86\u0001\u0000\u0000"+ + "\u0000\u02d9\u02da\u0004\u0013\u0002\u0000\u02da\u02db\u0007\u000b\u0000"+ + "\u0000\u02db\u02dc\u0007\u0011\u0000\u0000\u02dc\u02dd\u0001\u0000\u0000"+ + "\u0000\u02dd\u02de\u0006\u0013\u0005\u0000\u02de8\u0001\u0000\u0000\u0000"+ + "\u02df\u02e0\u0007\u0015\u0000\u0000\u02e0\u02e1\u0007\t\u0000\u0000\u02e1"+ + "\u02e2\u0007\f\u0000\u0000\u02e2\u02e3\u0007\u0013\u0000\u0000\u02e3\u02e4"+ + "\u0001\u0000\u0000\u0000\u02e4\u02e5\u0006\u0014\u0006\u0000\u02e5:\u0001"+ + "\u0000\u0000\u0000\u02e6\u02e7\u0004\u0015\u0003\u0000\u02e7\u02e8\u0007"+ + "\u0015\u0000\u0000\u02e8\u02e9\u0007\u0016\u0000\u0000\u02e9\u02ea\u0007"+ + "\u0011\u0000\u0000\u02ea\u02eb\u0007\u0007\u0000\u0000\u02eb\u02ec\u0001"+ + "\u0000\u0000\u0000\u02ec\u02ed\u0006\u0015\u0007\u0000\u02ed<\u0001\u0000"+ + "\u0000\u0000\u02ee\u02ef\u0007\u000e\u0000\u0000\u02ef\u02f0\u0007\t\u0000"+ + "\u0000\u02f0\u02f1\u0007\t\u0000\u0000\u02f1\u02f2\u0007\u0013\u0000\u0000"+ + "\u02f2\u02f3\u0007\u0016\u0000\u0000\u02f3\u02f4\u0007\b\u0000\u0000\u02f4"+ + "\u02f5\u0001\u0000\u0000\u0000\u02f5\u02f6\u0006\u0016\b\u0000\u02f6>"+ + "\u0001\u0000\u0000\u0000\u02f7\u02f8\u0004\u0017\u0004\u0000\u02f8\u02f9"+ + "\u0007\u0015\u0000\u0000\u02f9\u02fa\u0007\u0016\u0000\u0000\u02fa\u02fb"+ + "\u0007\u000e\u0000\u0000\u02fb\u02fc\u0007\u000e\u0000\u0000\u02fc\u02fd"+ + "\u0001\u0000\u0000\u0000\u02fd\u02fe\u0006\u0017\b\u0000\u02fe@\u0001"+ + "\u0000\u0000\u0000\u02ff\u0300\u0004\u0018\u0005\u0000\u0300\u0301\u0007"+ + "\u000e\u0000\u0000\u0301\u0302\u0007\u0007\u0000\u0000\u0302\u0303\u0007"+ + "\u0015\u0000\u0000\u0303\u0304\u0007\u000b\u0000\u0000\u0304\u0305\u0001"+ + "\u0000\u0000\u0000\u0305\u0306\u0006\u0018\b\u0000\u0306B\u0001\u0000"+ + "\u0000\u0000\u0307\u0308\u0004\u0019\u0006\u0000\u0308\u0309\u0007\f\u0000"+ + "\u0000\u0309\u030a\u0007\n\u0000\u0000\u030a\u030b\u0007\u0006\u0000\u0000"+ + "\u030b\u030c\u0007\u0003\u0000\u0000\u030c\u030d\u0007\u000b\u0000\u0000"+ + "\u030d\u030e\u0001\u0000\u0000\u0000\u030e\u030f\u0006\u0019\b\u0000\u030f"+ + "D\u0001\u0000\u0000\u0000\u0310\u0311\u0004\u001a\u0007\u0000\u0311\u0312"+ + "\u0007\u000e\u0000\u0000\u0312\u0313\u0007\t\u0000\u0000\u0313\u0314\u0007"+ + "\t\u0000\u0000\u0314\u0315\u0007\u0013\u0000\u0000\u0315\u0316\u0007\u0016"+ + "\u0000\u0000\u0316\u0317\u0007\b\u0000\u0000\u0317\u0318\u0005_\u0000"+ + "\u0000\u0318\u0319\u0005\u8001\uf414\u0000\u0000\u0319\u031a\u0001\u0000"+ + "\u0000\u0000\u031a\u031b\u0006\u001a\t\u0000\u031bF\u0001\u0000\u0000"+ + "\u0000\u031c\u031d\u0007\u000f\u0000\u0000\u031d\u031e\u0007\u0012\u0000"+ + "\u0000\u031e\u031f\u0005_\u0000\u0000\u031f\u0320\u0007\u0007\u0000\u0000"+ + "\u0320\u0321\u0007\r\u0000\u0000\u0321\u0322\u0007\b\u0000\u0000\u0322"+ + "\u0323\u0007\u0004\u0000\u0000\u0323\u0324\u0007\u0005\u0000\u0000\u0324"+ + "\u0325\u0007\u0010\u0000\u0000\u0325\u0326\u0001\u0000\u0000\u0000\u0326"+ + "\u0327\u0006\u001b\n\u0000\u0327H\u0001\u0000\u0000\u0000\u0328\u0329"+ + "\u0007\u0010\u0000\u0000\u0329\u032a\u0007\f\u0000\u0000\u032a\u032b\u0007"+ + "\t\u0000\u0000\u032b\u032c\u0007\b\u0000\u0000\u032c\u032d\u0001\u0000"+ + "\u0000\u0000\u032d\u032e\u0006\u001c\u000b\u0000\u032eJ\u0001\u0000\u0000"+ + "\u0000\u032f\u0330\u0007\u0013\u0000\u0000\u0330\u0331\u0007\u0007\u0000"+ + "\u0000\u0331\u0332\u0007\u0007\u0000\u0000\u0332\u0333\u0007\b\u0000\u0000"+ + "\u0333\u0334\u0001\u0000\u0000\u0000\u0334\u0335\u0006\u001d\u000b\u0000"+ + "\u0335L\u0001\u0000\u0000\u0000\u0336\u0337\u0004\u001e\b\u0000\u0337"+ + "\u0338\u0007\n\u0000\u0000\u0338\u0339\u0007\u0005\u0000\u0000\u0339\u033a"+ + "\u0007\u0011\u0000\u0000\u033a\u033b\u0007\n\u0000\u0000\u033b\u033c\u0007"+ + "\u0011\u0000\u0000\u033c\u033d\u0007\u000b\u0000\u0000\u033d\u033e\u0005"+ + "_\u0000\u0000\u033e\u033f\u0005\u8001\uf414\u0000\u0000\u033f\u0340\u0001"+ + "\u0000\u0000\u0000\u0340\u0341\u0006\u001e\u000b\u0000\u0341N\u0001\u0000"+ + "\u0000\u0000\u0342\u0343\u0007\f\u0000\u0000\u0343\u0344\u0007\u0007\u0000"+ + "\u0000\u0344\u0345\u0007\u0005\u0000\u0000\u0345\u0346\u0007\u0004\u0000"+ + "\u0000\u0346\u0347\u0007\u000f\u0000\u0000\u0347\u0348\u0007\u0007\u0000"+ + "\u0000\u0348\u0349\u0001\u0000\u0000\u0000\u0349\u034a\u0006\u001f\f\u0000"+ + "\u034aP\u0001\u0000\u0000\u0000\u034b\u034c\u0007\u0011\u0000\u0000\u034c"+ + "\u034d\u0007\u0003\u0000\u0000\u034d\u034e\u0007\t\u0000\u0000\u034e\u034f"+ + "\u0007\u0014\u0000\u0000\u034f\u0350\u0001\u0000\u0000\u0000\u0350\u0351"+ + "\u0006 \r\u0000\u0351R\u0001\u0000\u0000\u0000\u0352\u0354\b\u0017\u0000"+ + "\u0000\u0353\u0352\u0001\u0000\u0000\u0000\u0354\u0355\u0001\u0000\u0000"+ + "\u0000\u0355\u0353\u0001\u0000\u0000\u0000\u0355\u0356\u0001\u0000\u0000"+ + "\u0000\u0356\u0357\u0001\u0000\u0000\u0000\u0357\u0358\u0006!\u0004\u0000"+ + "\u0358T\u0001\u0000\u0000\u0000\u0359\u035a\u0003\u00b7S\u0000\u035a\u035b"+ + "\u0001\u0000\u0000\u0000\u035b\u035c\u0006\"\u000e\u0000\u035c\u035d\u0006"+ + "\"\u000f\u0000\u035dV\u0001\u0000\u0000\u0000\u035e\u035f\u0003\u012d"+ + "\u008e\u0000\u035f\u0360\u0001\u0000\u0000\u0000\u0360\u0361\u0006#\u0010"+ + "\u0000\u0361\u0362\u0006#\u000f\u0000\u0362\u0363\u0006#\u000f\u0000\u0363"+ + "X\u0001\u0000\u0000\u0000\u0364\u0365\u0003\u00f7s\u0000\u0365\u0366\u0001"+ + "\u0000\u0000\u0000\u0366\u0367\u0006$\u0011\u0000\u0367Z\u0001\u0000\u0000"+ + "\u0000\u0368\u0369\u0003\u0209\u00fc\u0000\u0369\u036a\u0001\u0000\u0000"+ + "\u0000\u036a\u036b\u0006%\u0012\u0000\u036b\\\u0001\u0000\u0000\u0000"+ + "\u036c\u036d\u0003\u00e3i\u0000\u036d\u036e\u0001\u0000\u0000\u0000\u036e"+ + "\u036f\u0006&\u0013\u0000\u036f^\u0001\u0000\u0000\u0000\u0370\u0371\u0003"+ + "\u00dfg\u0000\u0371\u0372\u0001\u0000\u0000\u0000\u0372\u0373\u0006\'"+ + "\u0014\u0000\u0373`\u0001\u0000\u0000\u0000\u0374\u0375\u0003\u0133\u0091"+ + "\u0000\u0375\u0376\u0001\u0000\u0000\u0000\u0376\u0377\u0006(\u0015\u0000"+ + "\u0377b\u0001\u0000\u0000\u0000\u0378\u0379\u0003\u012f\u008f\u0000\u0379"+ + "\u037a\u0001\u0000\u0000\u0000\u037a\u037b\u0006)\u0016\u0000\u037bd\u0001"+ + "\u0000\u0000\u0000\u037c\u037d\u0003\u0011\u0000\u0000\u037d\u037e\u0001"+ + "\u0000\u0000\u0000\u037e\u037f\u0006*\u0000\u0000\u037ff\u0001\u0000\u0000"+ + "\u0000\u0380\u0381\u0003\u0013\u0001\u0000\u0381\u0382\u0001\u0000\u0000"+ + "\u0000\u0382\u0383\u0006+\u0000\u0000\u0383h\u0001\u0000\u0000\u0000\u0384"+ + "\u0385\u0003\u0015\u0002\u0000\u0385\u0386\u0001\u0000\u0000\u0000\u0386"+ + "\u0387\u0006,\u0000\u0000\u0387j\u0001\u0000\u0000\u0000\u0388\u0389\u0003"+ + "\u00b7S\u0000\u0389\u038a\u0001\u0000\u0000\u0000\u038a\u038b\u0006-\u000e"+ + "\u0000\u038b\u038c\u0006-\u000f\u0000\u038cl\u0001\u0000\u0000\u0000\u038d"+ + "\u038e\u0003\u012d\u008e\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f"+ + "\u0390\u0006.\u0010\u0000\u0390\u0391\u0006.\u000f\u0000\u0391\u0392\u0006"+ + ".\u000f\u0000\u0392n\u0001\u0000\u0000\u0000\u0393\u0394\u0003\u0127\u008b"+ + "\u0000\u0394\u0395\u0001\u0000\u0000\u0000\u0395\u0396\u0006/\u0017\u0000"+ + "\u0396\u0397\u0006/\u0018\u0000\u0397p\u0001\u0000\u0000\u0000\u0398\u0399"+ + "\u0003\u00f7s\u0000\u0399\u039a\u0001\u0000\u0000\u0000\u039a\u039b\u0006"+ + "0\u0011\u0000\u039b\u039c\u00060\u0019\u0000\u039cr\u0001\u0000\u0000"+ + "\u0000\u039d\u039e\u0003\u0101x\u0000\u039e\u039f\u0001\u0000\u0000\u0000"+ + "\u039f\u03a0\u00061\u001a\u0000\u03a0\u03a1\u00061\u0019\u0000\u03a1t"+ + "\u0001\u0000\u0000\u0000\u03a2\u03a3\b\u0018\u0000\u0000\u03a3v\u0001"+ + "\u0000\u0000\u0000\u03a4\u03a6\u0003u2\u0000\u03a5\u03a4\u0001\u0000\u0000"+ + "\u0000\u03a6\u03a7\u0001\u0000\u0000\u0000\u03a7\u03a5\u0001\u0000\u0000"+ + "\u0000\u03a7\u03a8\u0001\u0000\u0000\u0000\u03a8\u03a9\u0001\u0000\u0000"+ + "\u0000\u03a9\u03aa\u0003\u00ddf\u0000\u03aa\u03ac\u0001\u0000\u0000\u0000"+ + "\u03ab\u03a5\u0001\u0000\u0000\u0000\u03ab\u03ac\u0001\u0000\u0000\u0000"+ + "\u03ac\u03ae\u0001\u0000\u0000\u0000\u03ad\u03af\u0003u2\u0000\u03ae\u03ad"+ + "\u0001\u0000\u0000\u0000\u03af\u03b0\u0001\u0000\u0000\u0000\u03b0\u03ae"+ + "\u0001\u0000\u0000\u0000\u03b0\u03b1\u0001\u0000\u0000\u0000\u03b1x\u0001"+ + "\u0000\u0000\u0000\u03b2\u03b3\u0003w3\u0000\u03b3\u03b4\u0001\u0000\u0000"+ + "\u0000\u03b4\u03b5\u00064\u001b\u0000\u03b5z\u0001\u0000\u0000\u0000\u03b6"+ + "\u03b7\u0003\u00cd^\u0000\u03b7\u03b8\u0001\u0000\u0000\u0000\u03b8\u03b9"+ + "\u00065\u001c\u0000\u03b9|\u0001\u0000\u0000\u0000\u03ba\u03bb\u0003\u0011"+ + "\u0000\u0000\u03bb\u03bc\u0001\u0000\u0000\u0000\u03bc\u03bd\u00066\u0000"+ + "\u0000\u03bd~\u0001\u0000\u0000\u0000\u03be\u03bf\u0003\u0013\u0001\u0000"+ + "\u03bf\u03c0\u0001\u0000\u0000\u0000\u03c0\u03c1\u00067\u0000\u0000\u03c1"+ + "\u0080\u0001\u0000\u0000\u0000\u03c2\u03c3\u0003\u0015\u0002\u0000\u03c3"+ + "\u03c4\u0001\u0000\u0000\u0000\u03c4\u03c5\u00068\u0000\u0000\u03c5\u0082"+ + "\u0001\u0000\u0000\u0000\u03c6\u03c7\u0003\u00b7S\u0000\u03c7\u03c8\u0001"+ + "\u0000\u0000\u0000\u03c8\u03c9\u00069\u000e\u0000\u03c9\u03ca\u00069\u000f"+ + "\u0000\u03ca\u03cb\u00069\u000f\u0000\u03cb\u0084\u0001\u0000\u0000\u0000"+ + "\u03cc\u03cd\u0003\u012d\u008e\u0000\u03cd\u03ce\u0001\u0000\u0000\u0000"+ + "\u03ce\u03cf\u0006:\u0010\u0000\u03cf\u03d0\u0006:\u000f\u0000\u03d0\u03d1"+ + "\u0006:\u000f\u0000\u03d1\u03d2\u0006:\u000f\u0000\u03d2\u0086\u0001\u0000"+ + "\u0000\u0000\u03d3\u03d4\u0003\u00d7c\u0000\u03d4\u03d5\u0001\u0000\u0000"+ + "\u0000\u03d5\u03d6\u0006;\u001d\u0000\u03d6\u0088\u0001\u0000\u0000\u0000"+ + "\u03d7\u03d8\u0003\u00dfg\u0000\u03d8\u03d9\u0001\u0000\u0000\u0000\u03d9"+ + "\u03da\u0006<\u0014\u0000\u03da\u008a\u0001\u0000\u0000\u0000\u03db\u03dc"+ + "\u0003\u00e3i\u0000\u03dc\u03dd\u0001\u0000\u0000\u0000\u03dd\u03de\u0006"+ + "=\u0013\u0000\u03de\u008c\u0001\u0000\u0000\u0000\u03df\u03e0\u0003\u0101"+ + "x\u0000\u03e0\u03e1\u0001\u0000\u0000\u0000\u03e1\u03e2\u0006>\u001a\u0000"+ + "\u03e2\u008e\u0001\u0000\u0000\u0000\u03e3\u03e4\u0003\u01ef\u00ef\u0000"+ + "\u03e4\u03e5\u0001\u0000\u0000\u0000\u03e5\u03e6\u0006?\u001e\u0000\u03e6"+ + "\u0090\u0001\u0000\u0000\u0000\u03e7\u03e8\u0003\u0133\u0091\u0000\u03e8"+ + "\u03e9\u0001\u0000\u0000\u0000\u03e9\u03ea\u0006@\u0015\u0000\u03ea\u0092"+ + "\u0001\u0000\u0000\u0000\u03eb\u03ec\u0003\u00fbu\u0000\u03ec\u03ed\u0001"+ + "\u0000\u0000\u0000\u03ed\u03ee\u0006A\u001f\u0000\u03ee\u0094\u0001\u0000"+ + "\u0000\u0000\u03ef\u03f0\u0003\u0123\u0089\u0000\u03f0\u03f1\u0001\u0000"+ + "\u0000\u0000\u03f1\u03f2\u0006B \u0000\u03f2\u0096\u0001\u0000\u0000\u0000"+ + "\u03f3\u03f4\u0003\u011f\u0087\u0000\u03f4\u03f5\u0001\u0000\u0000\u0000"+ + "\u03f5\u03f6\u0006C!\u0000\u03f6\u0098\u0001\u0000\u0000\u0000\u03f7\u03f8"+ + "\u0003\u0125\u008a\u0000\u03f8\u03f9\u0001\u0000\u0000\u0000\u03f9\u03fa"+ + "\u0006D\"\u0000\u03fa\u009a\u0001\u0000\u0000\u0000\u03fb\u03fc\u0003"+ + "\u0011\u0000\u0000\u03fc\u03fd\u0001\u0000\u0000\u0000\u03fd\u03fe\u0006"+ + "E\u0000\u0000\u03fe\u009c\u0001\u0000\u0000\u0000\u03ff\u0400\u0003\u0013"+ + "\u0001\u0000\u0400\u0401\u0001\u0000\u0000\u0000\u0401\u0402\u0006F\u0000"+ + "\u0000\u0402\u009e\u0001\u0000\u0000\u0000\u0403\u0404\u0003\u0015\u0002"+ + "\u0000\u0404\u0405\u0001\u0000\u0000\u0000\u0405\u0406\u0006G\u0000\u0000"+ + "\u0406\u00a0\u0001\u0000\u0000\u0000\u0407\u0408\u0003\u0129\u008c\u0000"+ + "\u0408\u0409\u0001\u0000\u0000\u0000\u0409\u040a\u0006H#\u0000\u040a\u040b"+ + "\u0006H\u000f\u0000\u040b\u00a2\u0001\u0000\u0000\u0000\u040c\u040d\u0003"+ + "\u00ddf\u0000\u040d\u040e\u0001\u0000\u0000\u0000\u040e\u040f\u0006I$"+ + "\u0000\u040f\u00a4\u0001\u0000\u0000\u0000\u0410\u0416\u0003\u00c3Y\u0000"+ + "\u0411\u0416\u0003\u00b9T\u0000\u0412\u0416\u0003\u00e3i\u0000\u0413\u0416"+ + "\u0003\u00bbU\u0000\u0414\u0416\u0003\u00c9\\\u0000\u0415\u0410\u0001"+ + "\u0000\u0000\u0000\u0415\u0411\u0001\u0000\u0000\u0000\u0415\u0412\u0001"+ + "\u0000\u0000\u0000\u0415\u0413\u0001\u0000\u0000\u0000\u0415\u0414\u0001"+ + "\u0000\u0000\u0000\u0416\u0417\u0001\u0000\u0000\u0000\u0417\u0415\u0001"+ + "\u0000\u0000\u0000\u0417\u0418\u0001\u0000\u0000\u0000\u0418\u00a6\u0001"+ + "\u0000\u0000\u0000\u0419\u041a\u0003\u0011\u0000\u0000\u041a\u041b\u0001"+ + "\u0000\u0000\u0000\u041b\u041c\u0006K\u0000\u0000\u041c\u00a8\u0001\u0000"+ + "\u0000\u0000\u041d\u041e\u0003\u0013\u0001\u0000\u041e\u041f\u0001\u0000"+ + "\u0000\u0000\u041f\u0420\u0006L\u0000\u0000\u0420\u00aa\u0001\u0000\u0000"+ + "\u0000\u0421\u0422\u0003\u0015\u0002\u0000\u0422\u0423\u0001\u0000\u0000"+ + "\u0000\u0423\u0424\u0006M\u0000\u0000\u0424\u00ac\u0001\u0000\u0000\u0000"+ + "\u0425\u0426\u0003\u012b\u008d\u0000\u0426\u0427\u0001\u0000\u0000\u0000"+ + "\u0427\u0428\u0006N%\u0000\u0428\u0429\u0006N&\u0000\u0429\u00ae\u0001"+ + "\u0000\u0000\u0000\u042a\u042b\u0003\u00b7S\u0000\u042b\u042c\u0001\u0000"+ + "\u0000\u0000\u042c\u042d\u0006O\u000e\u0000\u042d\u042e\u0006O\u000f\u0000"+ + "\u042e\u00b0\u0001\u0000\u0000\u0000\u042f\u0430\u0003\u0015\u0002\u0000"+ + "\u0430\u0431\u0001\u0000\u0000\u0000\u0431\u0432\u0006P\u0000\u0000\u0432"+ + "\u00b2\u0001\u0000\u0000\u0000\u0433\u0434\u0003\u0011\u0000\u0000\u0434"+ + "\u0435\u0001\u0000\u0000\u0000\u0435\u0436\u0006Q\u0000\u0000\u0436\u00b4"+ + "\u0001\u0000\u0000\u0000\u0437\u0438\u0003\u0013\u0001\u0000\u0438\u0439"+ + "\u0001\u0000\u0000\u0000\u0439\u043a\u0006R\u0000\u0000\u043a\u00b6\u0001"+ + "\u0000\u0000\u0000\u043b\u043c\u0005|\u0000\u0000\u043c\u043d\u0001\u0000"+ + "\u0000\u0000\u043d\u043e\u0006S\u000f\u0000\u043e\u00b8\u0001\u0000\u0000"+ + "\u0000\u043f\u0440\u0007\u0019\u0000\u0000\u0440\u00ba\u0001\u0000\u0000"+ + "\u0000\u0441\u0442\u0007\u001a\u0000\u0000\u0442\u00bc\u0001\u0000\u0000"+ + "\u0000\u0443\u0444\u0005\\\u0000\u0000\u0444\u0445\u0007\u001b\u0000\u0000"+ + "\u0445\u00be\u0001\u0000\u0000\u0000\u0446\u0447\b\u001c\u0000\u0000\u0447"+ + "\u00c0\u0001\u0000\u0000\u0000\u0448\u044a\u0007\u0007\u0000\u0000\u0449"+ + "\u044b\u0007\u001d\u0000\u0000\u044a\u0449\u0001\u0000\u0000\u0000\u044a"+ + "\u044b\u0001\u0000\u0000\u0000\u044b\u044d\u0001\u0000\u0000\u0000\u044c"+ + "\u044e\u0003\u00b9T\u0000\u044d\u044c\u0001\u0000\u0000\u0000\u044e\u044f"+ + "\u0001\u0000\u0000\u0000\u044f\u044d\u0001\u0000\u0000\u0000\u044f\u0450"+ + "\u0001\u0000\u0000\u0000\u0450\u00c2\u0001\u0000\u0000\u0000\u0451\u0452"+ + "\u0005@\u0000\u0000\u0452\u00c4\u0001\u0000\u0000\u0000\u0453\u0454\u0005"+ + "`\u0000\u0000\u0454\u00c6\u0001\u0000\u0000\u0000\u0455\u0459\b\u001e"+ + "\u0000\u0000\u0456\u0457\u0005`\u0000\u0000\u0457\u0459\u0005`\u0000\u0000"+ + "\u0458\u0455\u0001\u0000\u0000\u0000\u0458\u0456\u0001\u0000\u0000\u0000"+ + "\u0459\u00c8\u0001\u0000\u0000\u0000\u045a\u045b\u0005_\u0000\u0000\u045b"+ + "\u00ca\u0001\u0000\u0000\u0000\u045c\u0460\u0003\u00bbU\u0000\u045d\u0460"+ + "\u0003\u00b9T\u0000\u045e\u0460\u0003\u00c9\\\u0000\u045f\u045c\u0001"+ + "\u0000\u0000\u0000\u045f\u045d\u0001\u0000\u0000\u0000\u045f\u045e\u0001"+ + "\u0000\u0000\u0000\u0460\u00cc\u0001\u0000\u0000\u0000\u0461\u0466\u0005"+ + "\"\u0000\u0000\u0462\u0465\u0003\u00bdV\u0000\u0463\u0465\u0003\u00bf"+ + "W\u0000\u0464\u0462\u0001\u0000\u0000\u0000\u0464\u0463\u0001\u0000\u0000"+ + "\u0000\u0465\u0468\u0001\u0000\u0000\u0000\u0466\u0464\u0001\u0000\u0000"+ + "\u0000\u0466\u0467\u0001\u0000\u0000\u0000\u0467\u0469\u0001\u0000\u0000"+ + "\u0000\u0468\u0466\u0001\u0000\u0000\u0000\u0469\u047f\u0005\"\u0000\u0000"+ + "\u046a\u046b\u0005\"\u0000\u0000\u046b\u046c\u0005\"\u0000\u0000\u046c"+ + "\u046d\u0005\"\u0000\u0000\u046d\u0471\u0001\u0000\u0000\u0000\u046e\u0470"+ + "\b\u0000\u0000\u0000\u046f\u046e\u0001\u0000\u0000\u0000\u0470\u0473\u0001"+ + "\u0000\u0000\u0000\u0471\u0472\u0001\u0000\u0000\u0000\u0471\u046f\u0001"+ + "\u0000\u0000\u0000\u0472\u0474\u0001\u0000\u0000\u0000\u0473\u0471\u0001"+ + "\u0000\u0000\u0000\u0474\u0475\u0005\"\u0000\u0000\u0475\u0476\u0005\""+ + "\u0000\u0000\u0476\u0477\u0005\"\u0000\u0000\u0477\u0479\u0001\u0000\u0000"+ + "\u0000\u0478\u047a\u0005\"\u0000\u0000\u0479\u0478\u0001\u0000\u0000\u0000"+ + "\u0479\u047a\u0001\u0000\u0000\u0000\u047a\u047c\u0001\u0000\u0000\u0000"+ + "\u047b\u047d\u0005\"\u0000\u0000\u047c\u047b\u0001\u0000\u0000\u0000\u047c"+ + "\u047d\u0001\u0000\u0000\u0000\u047d\u047f\u0001\u0000\u0000\u0000\u047e"+ + "\u0461\u0001\u0000\u0000\u0000\u047e\u046a\u0001\u0000\u0000\u0000\u047f"+ + "\u00ce\u0001\u0000\u0000\u0000\u0480\u0482\u0003\u00b9T\u0000\u0481\u0480"+ + "\u0001\u0000\u0000\u0000\u0482\u0483\u0001\u0000\u0000\u0000\u0483\u0481"+ + "\u0001\u0000\u0000\u0000\u0483\u0484\u0001\u0000\u0000\u0000\u0484\u00d0"+ + "\u0001\u0000\u0000\u0000\u0485\u0487\u0003\u00b9T\u0000\u0486\u0485\u0001"+ + "\u0000\u0000\u0000\u0487\u0488\u0001\u0000\u0000\u0000\u0488\u0486\u0001"+ + "\u0000\u0000\u0000\u0488\u0489\u0001\u0000\u0000\u0000\u0489\u048a\u0001"+ + "\u0000\u0000\u0000\u048a\u048e\u0003\u00e3i\u0000\u048b\u048d\u0003\u00b9"+ + "T\u0000\u048c\u048b\u0001\u0000\u0000\u0000\u048d\u0490\u0001\u0000\u0000"+ + "\u0000\u048e\u048c\u0001\u0000\u0000\u0000\u048e\u048f\u0001\u0000\u0000"+ + "\u0000\u048f\u04b0\u0001\u0000\u0000\u0000\u0490\u048e\u0001\u0000\u0000"+ + "\u0000\u0491\u0493\u0003\u00e3i\u0000\u0492\u0494\u0003\u00b9T\u0000\u0493"+ + "\u0492\u0001\u0000\u0000\u0000\u0494\u0495\u0001\u0000\u0000\u0000\u0495"+ + "\u0493\u0001\u0000\u0000\u0000\u0495\u0496\u0001\u0000\u0000\u0000\u0496"+ + "\u04b0\u0001\u0000\u0000\u0000\u0497\u0499\u0003\u00b9T\u0000\u0498\u0497"+ + "\u0001\u0000\u0000\u0000\u0499\u049a\u0001\u0000\u0000\u0000\u049a\u0498"+ + "\u0001\u0000\u0000\u0000\u049a\u049b\u0001\u0000\u0000\u0000\u049b\u04a3"+ + "\u0001\u0000\u0000\u0000\u049c\u04a0\u0003\u00e3i\u0000\u049d\u049f\u0003"+ + "\u00b9T\u0000\u049e\u049d\u0001\u0000\u0000\u0000\u049f\u04a2\u0001\u0000"+ + "\u0000\u0000\u04a0\u049e\u0001\u0000\u0000\u0000\u04a0\u04a1\u0001\u0000"+ + "\u0000\u0000\u04a1\u04a4\u0001\u0000\u0000\u0000\u04a2\u04a0\u0001\u0000"+ + "\u0000\u0000\u04a3\u049c\u0001\u0000\u0000\u0000\u04a3\u04a4\u0001\u0000"+ + "\u0000\u0000\u04a4\u04a5\u0001\u0000\u0000\u0000\u04a5\u04a6\u0003\u00c1"+ + "X\u0000\u04a6\u04b0\u0001\u0000\u0000\u0000\u04a7\u04a9\u0003\u00e3i\u0000"+ + "\u04a8\u04aa\u0003\u00b9T\u0000\u04a9\u04a8\u0001\u0000\u0000\u0000\u04aa"+ + "\u04ab\u0001\u0000\u0000\u0000\u04ab\u04a9\u0001\u0000\u0000\u0000\u04ab"+ + "\u04ac\u0001\u0000\u0000\u0000\u04ac\u04ad\u0001\u0000\u0000\u0000\u04ad"+ + "\u04ae\u0003\u00c1X\u0000\u04ae\u04b0\u0001\u0000\u0000\u0000\u04af\u0486"+ + "\u0001\u0000\u0000\u0000\u04af\u0491\u0001\u0000\u0000\u0000\u04af\u0498"+ + "\u0001\u0000\u0000\u0000\u04af\u04a7\u0001\u0000\u0000\u0000\u04b0\u00d2"+ + "\u0001\u0000\u0000\u0000\u04b1\u04b2\u0007\u0004\u0000\u0000\u04b2\u04b3"+ + "\u0007\u0005\u0000\u0000\u04b3\u04b4\u0007\u0010\u0000\u0000\u04b4\u00d4"+ + "\u0001\u0000\u0000\u0000\u04b5\u04b6\u0007\u0004\u0000\u0000\u04b6\u04b7"+ + "\u0007\u0011\u0000\u0000\u04b7\u04b8\u0007\u0002\u0000\u0000\u04b8\u00d6"+ + "\u0001\u0000\u0000\u0000\u04b9\u04ba\u0005=\u0000\u0000\u04ba\u00d8\u0001"+ + "\u0000\u0000\u0000\u04bb\u04bc\u0007\u001f\u0000\u0000\u04bc\u04bd\u0007"+ + " \u0000\u0000\u04bd\u00da\u0001\u0000\u0000\u0000\u04be\u04bf\u0005:\u0000"+ + "\u0000\u04bf\u04c0\u0005:\u0000\u0000\u04c0\u00dc\u0001\u0000\u0000\u0000"+ + "\u04c1\u04c2\u0005:\u0000\u0000\u04c2\u00de\u0001\u0000\u0000\u0000\u04c3"+ + "\u04c4\u0005,\u0000\u0000\u04c4\u00e0\u0001\u0000\u0000\u0000\u04c5\u04c6"+ + "\u0007\u0010\u0000\u0000\u04c6\u04c7\u0007\u0007\u0000\u0000\u04c7\u04c8"+ + "\u0007\u0011\u0000\u0000\u04c8\u04c9\u0007\u0002\u0000\u0000\u04c9\u00e2"+ + "\u0001\u0000\u0000\u0000\u04ca\u04cb\u0005.\u0000\u0000\u04cb\u00e4\u0001"+ + "\u0000\u0000\u0000\u04cc\u04cd\u0007\u0015\u0000\u0000\u04cd\u04ce\u0007"+ + "\u0004\u0000\u0000\u04ce\u04cf\u0007\u000e\u0000\u0000\u04cf\u04d0\u0007"+ + "\u0011\u0000\u0000\u04d0\u04d1\u0007\u0007\u0000\u0000\u04d1\u00e6\u0001"+ + "\u0000\u0000\u0000\u04d2\u04d3\u0007\u0015\u0000\u0000\u04d3\u04d4\u0007"+ + "\n\u0000\u0000\u04d4\u04d5\u0007\f\u0000\u0000\u04d5\u04d6\u0007\u0011"+ + "\u0000\u0000\u04d6\u04d7\u0007\u000b\u0000\u0000\u04d7\u00e8\u0001\u0000"+ + "\u0000\u0000\u04d8\u04d9\u0007\n\u0000\u0000\u04d9\u04da\u0007\u0005\u0000"+ + "\u0000\u04da\u00ea\u0001\u0000\u0000\u0000\u04db\u04dc\u0007\n\u0000\u0000"+ + "\u04dc\u04dd\u0007\u0011\u0000\u0000\u04dd\u00ec\u0001\u0000\u0000\u0000"+ + "\u04de\u04df\u0007\u000e\u0000\u0000\u04df\u04e0\u0007\u0004\u0000\u0000"+ + "\u04e0\u04e1\u0007\u0011\u0000\u0000\u04e1\u04e2\u0007\u000b\u0000\u0000"+ + "\u04e2\u00ee\u0001\u0000\u0000\u0000\u04e3\u04e4\u0007\u000e\u0000\u0000"+ + "\u04e4\u04e5\u0007\n\u0000\u0000\u04e5\u04e6\u0007\u0013\u0000\u0000\u04e6"+ + "\u04e7\u0007\u0007\u0000\u0000\u04e7\u00f0\u0001\u0000\u0000\u0000\u04e8"+ + "\u04e9\u0007\u0005\u0000\u0000\u04e9\u04ea\u0007\t\u0000\u0000\u04ea\u04eb"+ + "\u0007\u000b\u0000\u0000\u04eb\u00f2\u0001\u0000\u0000\u0000\u04ec\u04ed"+ + "\u0007\u0005\u0000\u0000\u04ed\u04ee\u0007\u0016\u0000\u0000\u04ee\u04ef"+ + "\u0007\u000e\u0000\u0000\u04ef\u04f0\u0007\u000e\u0000\u0000\u04f0\u00f4"+ + "\u0001\u0000\u0000\u0000\u04f1\u04f2\u0007\u0005\u0000\u0000\u04f2\u04f3"+ + "\u0007\u0016\u0000\u0000\u04f3\u04f4\u0007\u000e\u0000\u0000\u04f4\u04f5"+ + "\u0007\u000e\u0000\u0000\u04f5\u04f6\u0007\u0011\u0000\u0000\u04f6\u00f6"+ + "\u0001\u0000\u0000\u0000\u04f7\u04f8\u0007\t\u0000\u0000\u04f8\u04f9\u0007"+ + "\u0005\u0000\u0000\u04f9\u00f8\u0001\u0000\u0000\u0000\u04fa\u04fb\u0007"+ + "\t\u0000\u0000\u04fb\u04fc\u0007\f\u0000\u0000\u04fc\u00fa\u0001\u0000"+ + "\u0000\u0000\u04fd\u04fe\u0005?\u0000\u0000\u04fe\u00fc\u0001\u0000\u0000"+ + "\u0000\u04ff\u0500\u0007\f\u0000\u0000\u0500\u0501\u0007\u000e\u0000\u0000"+ + "\u0501\u0502\u0007\n\u0000\u0000\u0502\u0503\u0007\u0013\u0000\u0000\u0503"+ + "\u0504\u0007\u0007\u0000\u0000\u0504\u00fe\u0001\u0000\u0000\u0000\u0505"+ + "\u0506\u0007\u000b\u0000\u0000\u0506\u0507\u0007\f\u0000\u0000\u0507\u0508"+ + "\u0007\u0016\u0000\u0000\u0508\u0509\u0007\u0007\u0000\u0000\u0509\u0100"+ + "\u0001\u0000\u0000\u0000\u050a\u050b\u0007\u0014\u0000\u0000\u050b\u050c"+ + "\u0007\n\u0000\u0000\u050c\u050d\u0007\u000b\u0000\u0000\u050d\u050e\u0007"+ + "\u0003\u0000\u0000\u050e\u0102\u0001\u0000\u0000\u0000\u050f\u0510\u0005"+ + "=\u0000\u0000\u0510\u0511\u0005=\u0000\u0000\u0511\u0104\u0001\u0000\u0000"+ + "\u0000\u0512\u0513\u0005=\u0000\u0000\u0513\u0514\u0005~\u0000\u0000\u0514"+ + "\u0106\u0001\u0000\u0000\u0000\u0515\u0516\u0005!\u0000\u0000\u0516\u0517"+ + "\u0005=\u0000\u0000\u0517\u0108\u0001\u0000\u0000\u0000\u0518\u0519\u0005"+ + "<\u0000\u0000\u0519\u010a\u0001\u0000\u0000\u0000\u051a\u051b\u0005<\u0000"+ + "\u0000\u051b\u051c\u0005=\u0000\u0000\u051c\u010c\u0001\u0000\u0000\u0000"+ + "\u051d\u051e\u0005>\u0000\u0000\u051e\u010e\u0001\u0000\u0000\u0000\u051f"+ + "\u0520\u0005>\u0000\u0000\u0520\u0521\u0005=\u0000\u0000\u0521\u0110\u0001"+ + "\u0000\u0000\u0000\u0522\u0523\u0005+\u0000\u0000\u0523\u0112\u0001\u0000"+ + "\u0000\u0000\u0524\u0525\u0005-\u0000\u0000\u0525\u0114\u0001\u0000\u0000"+ + "\u0000\u0526\u0527\u0005*\u0000\u0000\u0527\u0116\u0001\u0000\u0000\u0000"+ + "\u0528\u0529\u0005/\u0000\u0000\u0529\u0118\u0001\u0000\u0000\u0000\u052a"+ + "\u052b\u0005%\u0000\u0000\u052b\u011a\u0001\u0000\u0000\u0000\u052c\u052d"+ + "\u0005{\u0000\u0000\u052d\u011c\u0001\u0000\u0000\u0000\u052e\u052f\u0005"+ + "}\u0000\u0000\u052f\u011e\u0001\u0000\u0000\u0000\u0530\u0531\u0005?\u0000"+ + "\u0000\u0531\u0532\u0005?\u0000\u0000\u0532\u0120\u0001\u0000\u0000\u0000"+ + "\u0533\u0534\u00031\u0010\u0000\u0534\u0535\u0001\u0000\u0000\u0000\u0535"+ + "\u0536\u0006\u0088\'\u0000\u0536\u0122\u0001\u0000\u0000\u0000\u0537\u053a"+ + "\u0003\u00fbu\u0000\u0538\u053b\u0003\u00bbU\u0000\u0539\u053b\u0003\u00c9"+ + "\\\u0000\u053a\u0538\u0001\u0000\u0000\u0000\u053a\u0539\u0001\u0000\u0000"+ + "\u0000\u053b\u053f\u0001\u0000\u0000\u0000\u053c\u053e\u0003\u00cb]\u0000"+ + "\u053d\u053c\u0001\u0000\u0000\u0000\u053e\u0541\u0001\u0000\u0000\u0000"+ + "\u053f\u053d\u0001\u0000\u0000\u0000\u053f\u0540\u0001\u0000\u0000\u0000"+ + "\u0540\u0549\u0001\u0000\u0000\u0000\u0541\u053f\u0001\u0000\u0000\u0000"+ + "\u0542\u0544\u0003\u00fbu\u0000\u0543\u0545\u0003\u00b9T\u0000\u0544\u0543"+ + "\u0001\u0000\u0000\u0000\u0545\u0546\u0001\u0000\u0000\u0000\u0546\u0544"+ + "\u0001\u0000\u0000\u0000\u0546\u0547\u0001\u0000\u0000\u0000\u0547\u0549"+ + "\u0001\u0000\u0000\u0000\u0548\u0537\u0001\u0000\u0000\u0000\u0548\u0542"+ + "\u0001\u0000\u0000\u0000\u0549\u0124\u0001\u0000\u0000\u0000\u054a\u054d"+ + "\u0003\u011f\u0087\u0000\u054b\u054e\u0003\u00bbU\u0000\u054c\u054e\u0003"+ + "\u00c9\\\u0000\u054d\u054b\u0001\u0000\u0000\u0000\u054d\u054c\u0001\u0000"+ + "\u0000\u0000\u054e\u0552\u0001\u0000\u0000\u0000\u054f\u0551\u0003\u00cb"+ + "]\u0000\u0550\u054f\u0001\u0000\u0000\u0000\u0551\u0554\u0001\u0000\u0000"+ + "\u0000\u0552\u0550\u0001\u0000\u0000\u0000\u0552\u0553\u0001\u0000\u0000"+ + "\u0000\u0553\u055c\u0001\u0000\u0000\u0000\u0554\u0552\u0001\u0000\u0000"+ + "\u0000\u0555\u0557\u0003\u011f\u0087\u0000\u0556\u0558\u0003\u00b9T\u0000"+ + "\u0557\u0556\u0001\u0000\u0000\u0000\u0558\u0559\u0001\u0000\u0000\u0000"+ + "\u0559\u0557\u0001\u0000\u0000\u0000\u0559\u055a\u0001\u0000\u0000\u0000"+ + "\u055a\u055c\u0001\u0000\u0000\u0000\u055b\u054a\u0001\u0000\u0000\u0000"+ + "\u055b\u0555\u0001\u0000\u0000\u0000\u055c\u0126\u0001\u0000\u0000\u0000"+ + "\u055d\u055e\u0005[\u0000\u0000\u055e\u055f\u0001\u0000\u0000\u0000\u055f"+ + "\u0560\u0006\u008b\u0004\u0000\u0560\u0561\u0006\u008b\u0004\u0000\u0561"+ + "\u0128\u0001\u0000\u0000\u0000\u0562\u0563\u0005]\u0000\u0000\u0563\u0564"+ + "\u0001\u0000\u0000\u0000\u0564\u0565\u0006\u008c\u000f\u0000\u0565\u0566"+ + "\u0006\u008c\u000f\u0000\u0566\u012a\u0001\u0000\u0000\u0000\u0567\u0568"+ + "\u0005(\u0000\u0000\u0568\u0569\u0001\u0000\u0000\u0000\u0569\u056a\u0006"+ + "\u008d\u0004\u0000\u056a\u056b\u0006\u008d\u0004\u0000\u056b\u012c\u0001"+ + "\u0000\u0000\u0000\u056c\u056d\u0005)\u0000\u0000\u056d\u056e\u0001\u0000"+ + "\u0000\u0000\u056e\u056f\u0006\u008e\u000f\u0000\u056f\u0570\u0006\u008e"+ + "\u000f\u0000\u0570\u012e\u0001\u0000\u0000\u0000\u0571\u0575\u0003\u00bb"+ + "U\u0000\u0572\u0574\u0003\u00cb]\u0000\u0573\u0572\u0001\u0000\u0000\u0000"+ + "\u0574\u0577\u0001\u0000\u0000\u0000\u0575\u0573\u0001\u0000\u0000\u0000"+ + "\u0575\u0576\u0001\u0000\u0000\u0000\u0576\u0582\u0001\u0000\u0000\u0000"+ + "\u0577\u0575\u0001\u0000\u0000\u0000\u0578\u057b\u0003\u00c9\\\u0000\u0579"+ + "\u057b\u0003\u00c3Y\u0000\u057a\u0578\u0001\u0000\u0000\u0000\u057a\u0579"+ + "\u0001\u0000\u0000\u0000\u057b\u057d\u0001\u0000\u0000\u0000\u057c\u057e"+ + "\u0003\u00cb]\u0000\u057d\u057c\u0001\u0000\u0000\u0000\u057e\u057f\u0001"+ + "\u0000\u0000\u0000\u057f\u057d\u0001\u0000\u0000\u0000\u057f\u0580\u0001"+ + "\u0000\u0000\u0000\u0580\u0582\u0001\u0000\u0000\u0000\u0581\u0571\u0001"+ + "\u0000\u0000\u0000\u0581\u057a\u0001\u0000\u0000\u0000\u0582\u0130\u0001"+ + "\u0000\u0000\u0000\u0583\u0585\u0003\u00c5Z\u0000\u0584\u0586\u0003\u00c7"+ + "[\u0000\u0585\u0584\u0001\u0000\u0000\u0000\u0586\u0587\u0001\u0000\u0000"+ + "\u0000\u0587\u0585\u0001\u0000\u0000\u0000\u0587\u0588\u0001\u0000\u0000"+ + "\u0000\u0588\u0589\u0001\u0000\u0000\u0000\u0589\u058a\u0003\u00c5Z\u0000"+ + "\u058a\u0132\u0001\u0000\u0000\u0000\u058b\u058c\u0003\u0131\u0090\u0000"+ + "\u058c\u0134\u0001\u0000\u0000\u0000\u058d\u058e\u0003\u0011\u0000\u0000"+ + "\u058e\u058f\u0001\u0000\u0000\u0000\u058f\u0590\u0006\u0092\u0000\u0000"+ + "\u0590\u0136\u0001\u0000\u0000\u0000\u0591\u0592\u0003\u0013\u0001\u0000"+ + "\u0592\u0593\u0001\u0000\u0000\u0000\u0593\u0594\u0006\u0093\u0000\u0000"+ + "\u0594\u0138\u0001\u0000\u0000\u0000\u0595\u0596\u0003\u0015\u0002\u0000"+ + "\u0596\u0597\u0001\u0000\u0000\u0000\u0597\u0598\u0006\u0094\u0000\u0000"+ + "\u0598\u013a\u0001\u0000\u0000\u0000\u0599\u059a\u0003\u00b7S\u0000\u059a"+ + "\u059b\u0001\u0000\u0000\u0000\u059b\u059c\u0006\u0095\u000e\u0000\u059c"+ + "\u059d\u0006\u0095\u000f\u0000\u059d\u013c\u0001\u0000\u0000\u0000\u059e"+ + "\u059f\u0003\u0127\u008b\u0000\u059f\u05a0\u0001\u0000\u0000\u0000\u05a0"+ + "\u05a1\u0006\u0096\u0017\u0000\u05a1\u013e\u0001\u0000\u0000\u0000\u05a2"+ + "\u05a3\u0003\u0129\u008c\u0000\u05a3\u05a4\u0001\u0000\u0000\u0000\u05a4"+ + "\u05a5\u0006\u0097#\u0000\u05a5\u0140\u0001\u0000\u0000\u0000\u05a6\u05a7"+ + "\u0003\u00ddf\u0000\u05a7\u05a8\u0001\u0000\u0000\u0000\u05a8\u05a9\u0006"+ + "\u0098$\u0000\u05a9\u0142\u0001\u0000\u0000\u0000\u05aa\u05ab\u0003\u00db"+ + "e\u0000\u05ab\u05ac\u0001\u0000\u0000\u0000\u05ac\u05ad\u0006\u0099(\u0000"+ + "\u05ad\u0144\u0001\u0000\u0000\u0000\u05ae\u05af\u0003\u00dfg\u0000\u05af"+ + "\u05b0\u0001\u0000\u0000\u0000\u05b0\u05b1\u0006\u009a\u0014\u0000\u05b1"+ + "\u0146\u0001\u0000\u0000\u0000\u05b2\u05b3\u0003\u00d7c\u0000\u05b3\u05b4"+ + "\u0001\u0000\u0000\u0000\u05b4\u05b5\u0006\u009b\u001d\u0000\u05b5\u0148"+ + "\u0001\u0000\u0000\u0000\u05b6\u05b7\u0007\u000f\u0000\u0000\u05b7\u05b8"+ + "\u0007\u0007\u0000\u0000\u05b8\u05b9\u0007\u000b\u0000\u0000\u05b9\u05ba"+ + "\u0007\u0004\u0000\u0000\u05ba\u05bb\u0007\u0010\u0000\u0000\u05bb\u05bc"+ + "\u0007\u0004\u0000\u0000\u05bc\u05bd\u0007\u000b\u0000\u0000\u05bd\u05be"+ + "\u0007\u0004\u0000\u0000\u05be\u014a\u0001\u0000\u0000\u0000\u05bf\u05c0"+ + "\u0003\u012d\u008e\u0000\u05c0\u05c1\u0001\u0000\u0000\u0000\u05c1\u05c2"+ + "\u0006\u009d\u0010\u0000\u05c2\u05c3\u0006\u009d\u000f\u0000\u05c3\u014c"+ + "\u0001\u0000\u0000\u0000\u05c4\u05c8\b!\u0000\u0000\u05c5\u05c6\u0005"+ + "/\u0000\u0000\u05c6\u05c8\b\"\u0000\u0000\u05c7\u05c4\u0001\u0000\u0000"+ + "\u0000\u05c7\u05c5\u0001\u0000\u0000\u0000\u05c8\u014e\u0001\u0000\u0000"+ + "\u0000\u05c9\u05cb\u0003\u014d\u009e\u0000\u05ca\u05c9\u0001\u0000\u0000"+ + "\u0000\u05cb\u05cc\u0001\u0000\u0000\u0000\u05cc\u05ca\u0001\u0000\u0000"+ + "\u0000\u05cc\u05cd\u0001\u0000\u0000\u0000\u05cd\u0150\u0001\u0000\u0000"+ + "\u0000\u05ce\u05cf\u0003\u014f\u009f\u0000\u05cf\u05d0\u0001\u0000\u0000"+ + "\u0000\u05d0\u05d1\u0006\u00a0)\u0000\u05d1\u0152\u0001\u0000\u0000\u0000"+ + "\u05d2\u05d3\u0003\u00cd^\u0000\u05d3\u05d4\u0001\u0000\u0000\u0000\u05d4"+ + "\u05d5\u0006\u00a1\u001c\u0000\u05d5\u0154\u0001\u0000\u0000\u0000\u05d6"+ + "\u05d7\u0003\u0011\u0000\u0000\u05d7\u05d8\u0001\u0000\u0000\u0000\u05d8"+ + "\u05d9\u0006\u00a2\u0000\u0000\u05d9\u0156\u0001\u0000\u0000\u0000\u05da"+ + "\u05db\u0003\u0013\u0001\u0000\u05db\u05dc\u0001\u0000\u0000\u0000\u05dc"+ + "\u05dd\u0006\u00a3\u0000\u0000\u05dd\u0158\u0001\u0000\u0000\u0000\u05de"+ + "\u05df\u0003\u0015\u0002\u0000\u05df\u05e0\u0001\u0000\u0000\u0000\u05e0"+ + "\u05e1\u0006\u00a4\u0000\u0000\u05e1\u015a\u0001\u0000\u0000\u0000\u05e2"+ + "\u05e3\u0003\u012b\u008d\u0000\u05e3\u05e4\u0001\u0000\u0000\u0000\u05e4"+ + "\u05e5\u0006\u00a5%\u0000\u05e5\u05e6\u0006\u00a5&\u0000\u05e6\u015c\u0001"+ + "\u0000\u0000\u0000\u05e7\u05e8\u0003\u012d\u008e\u0000\u05e8\u05e9\u0001"+ + "\u0000\u0000\u0000\u05e9\u05ea\u0006\u00a6\u0010\u0000\u05ea\u05eb\u0006"+ + "\u00a6\u000f\u0000\u05eb\u05ec\u0006\u00a6\u000f\u0000\u05ec\u015e\u0001"+ + "\u0000\u0000\u0000\u05ed\u05ee\u0003\u00b7S\u0000\u05ee\u05ef\u0001\u0000"+ + "\u0000\u0000\u05ef\u05f0\u0006\u00a7\u000e\u0000\u05f0\u05f1\u0006\u00a7"+ + "\u000f\u0000\u05f1\u0160\u0001\u0000\u0000\u0000\u05f2\u05f3\u0003\u0015"+ + "\u0002\u0000\u05f3\u05f4\u0001\u0000\u0000\u0000\u05f4\u05f5\u0006\u00a8"+ + "\u0000\u0000\u05f5\u0162\u0001\u0000\u0000\u0000\u05f6\u05f7\u0003\u0011"+ + "\u0000\u0000\u05f7\u05f8\u0001\u0000\u0000\u0000\u05f8\u05f9\u0006\u00a9"+ + "\u0000\u0000\u05f9\u0164\u0001\u0000\u0000\u0000\u05fa\u05fb\u0003\u0013"+ + "\u0001\u0000\u05fb\u05fc\u0001\u0000\u0000\u0000\u05fc\u05fd\u0006\u00aa"+ + "\u0000\u0000\u05fd\u0166\u0001\u0000\u0000\u0000\u05fe\u05ff\u0003\u00b7"+ + "S\u0000\u05ff\u0600\u0001\u0000\u0000\u0000\u0600\u0601\u0006\u00ab\u000e"+ + "\u0000\u0601\u0602\u0006\u00ab\u000f\u0000\u0602\u0168\u0001\u0000\u0000"+ + "\u0000\u0603\u0604\u0003\u012d\u008e\u0000\u0604\u0605\u0001\u0000\u0000"+ + "\u0000\u0605\u0606\u0006\u00ac\u0010\u0000\u0606\u0607\u0006\u00ac\u000f"+ + "\u0000\u0607\u0608\u0006\u00ac\u000f\u0000\u0608\u016a\u0001\u0000\u0000"+ + "\u0000\u0609\u060a\u0007\u0006\u0000\u0000\u060a\u060b\u0007\f\u0000\u0000"+ + "\u060b\u060c\u0007\t\u0000\u0000\u060c\u060d\u0007\u0016\u0000\u0000\u060d"+ + "\u060e\u0007\b\u0000\u0000\u060e\u016c\u0001\u0000\u0000\u0000\u060f\u0610"+ + "\u0007\u0011\u0000\u0000\u0610\u0611\u0007\u0002\u0000\u0000\u0611\u0612"+ + "\u0007\t\u0000\u0000\u0612\u0613\u0007\f\u0000\u0000\u0613\u0614\u0007"+ + "\u0007\u0000\u0000\u0614\u016e\u0001\u0000\u0000\u0000\u0615\u0616\u0007"+ + "\u0013\u0000\u0000\u0616\u0617\u0007\u0007\u0000\u0000\u0617\u0618\u0007"+ + " \u0000\u0000\u0618\u0170\u0001\u0000\u0000\u0000\u0619\u061a\u0007\f"+ + "\u0000\u0000\u061a\u061b\u0007\f\u0000\u0000\u061b\u061c\u0007\u0015\u0000"+ + "\u0000\u061c\u0172\u0001\u0000\u0000\u0000\u061d\u061e\u0007\u000e\u0000"+ + "\u0000\u061e\u061f\u0007\n\u0000\u0000\u061f\u0620\u0007\u0005\u0000\u0000"+ + "\u0620\u0621\u0007\u0007\u0000\u0000\u0621\u0622\u0007\u0004\u0000\u0000"+ + "\u0622\u0623\u0007\f\u0000\u0000\u0623\u0174\u0001\u0000\u0000\u0000\u0624"+ + "\u0625\u0003\u0101x\u0000\u0625\u0626\u0001\u0000\u0000\u0000\u0626\u0627"+ + "\u0006\u00b2\u001a\u0000\u0627\u0628\u0006\u00b2\u000f\u0000\u0628\u0629"+ + "\u0006\u00b2\u0004\u0000\u0629\u0176\u0001\u0000\u0000\u0000\u062a\u062b"+ + "\u0003\u00dfg\u0000\u062b\u062c\u0001\u0000\u0000\u0000\u062c\u062d\u0006"+ + "\u00b3\u0014\u0000\u062d\u0178\u0001\u0000\u0000\u0000\u062e\u062f\u0003"+ + "\u0133\u0091\u0000\u062f\u0630\u0001\u0000\u0000\u0000\u0630\u0631\u0006"+ + "\u00b4\u0015\u0000\u0631\u017a\u0001\u0000\u0000\u0000\u0632\u0633\u0003"+ + "\u012f\u008f\u0000\u0633\u0634\u0001\u0000\u0000\u0000\u0634\u0635\u0006"+ + "\u00b5\u0016\u0000\u0635\u017c\u0001\u0000\u0000\u0000\u0636\u0637\u0003"+ + "\u0011\u0000\u0000\u0637\u0638\u0001\u0000\u0000\u0000\u0638\u0639\u0006"+ + "\u00b6\u0000\u0000\u0639\u017e\u0001\u0000\u0000\u0000\u063a\u063b\u0003"+ + "\u0013\u0001\u0000\u063b\u063c\u0001\u0000\u0000\u0000\u063c\u063d\u0006"+ + "\u00b7\u0000\u0000\u063d\u0180\u0001\u0000\u0000\u0000\u063e\u063f\u0003"+ + "\u0015\u0002\u0000\u063f\u0640\u0001\u0000\u0000\u0000\u0640\u0641\u0006"+ + "\u00b8\u0000\u0000\u0641\u0182\u0001\u0000\u0000\u0000\u0642\u0643\u0003"+ + "\u00b7S\u0000\u0643\u0644\u0001\u0000\u0000\u0000\u0644\u0645\u0006\u00b9"+ + "\u000e\u0000\u0645\u0646\u0006\u00b9\u000f\u0000\u0646\u0184\u0001\u0000"+ + "\u0000\u0000\u0647\u0648\u0007#\u0000\u0000\u0648\u0649\u0007\t\u0000"+ + "\u0000\u0649\u064a\u0007\n\u0000\u0000\u064a\u064b\u0007\u0005\u0000\u0000"+ + "\u064b\u0186\u0001\u0000\u0000\u0000\u064c\u064d\u0003\u0209\u00fc\u0000"+ + "\u064d\u064e\u0001\u0000\u0000\u0000\u064e\u064f\u0006\u00bb\u0012\u0000"+ + "\u064f\u0188\u0001\u0000\u0000\u0000\u0650\u0651\u0003\u00f7s\u0000\u0651"+ + "\u0652\u0001\u0000\u0000\u0000\u0652\u0653\u0006\u00bc\u0011\u0000\u0653"+ + "\u0654\u0006\u00bc\u000f\u0000\u0654\u0655\u0006\u00bc\u0004\u0000\u0655"+ + "\u018a\u0001\u0000\u0000\u0000\u0656\u0657\u0007\u0016\u0000\u0000\u0657"+ + "\u0658\u0007\u0011\u0000\u0000\u0658\u0659\u0007\n\u0000\u0000\u0659\u065a"+ + "\u0007\u0005\u0000\u0000\u065a\u065b\u0007\u0006\u0000\u0000\u065b\u065c"+ + "\u0001\u0000\u0000\u0000\u065c\u065d\u0006\u00bd\u000f\u0000\u065d\u065e"+ + "\u0006\u00bd\u0004\u0000\u065e\u018c\u0001\u0000\u0000\u0000\u065f\u0660"+ + "\u0003\u014f\u009f\u0000\u0660\u0661\u0001\u0000\u0000\u0000\u0661\u0662"+ + "\u0006\u00be)\u0000\u0662\u018e\u0001\u0000\u0000\u0000\u0663\u0664\u0003"+ + "\u00cd^\u0000\u0664\u0665\u0001\u0000\u0000\u0000\u0665\u0666\u0006\u00bf"+ + "\u001c\u0000\u0666\u0190\u0001\u0000\u0000\u0000\u0667\u0668\u0003\u00dd"+ + "f\u0000\u0668\u0669\u0001\u0000\u0000\u0000\u0669\u066a\u0006\u00c0$\u0000"+ + "\u066a\u0192\u0001\u0000\u0000\u0000\u066b\u066c\u0003\u012f\u008f\u0000"+ + "\u066c\u066d\u0001\u0000\u0000\u0000\u066d\u066e\u0006\u00c1\u0016\u0000"+ + "\u066e\u0194\u0001\u0000\u0000\u0000\u066f\u0670\u0003\u0133\u0091\u0000"+ + "\u0670\u0671\u0001\u0000\u0000\u0000\u0671\u0672\u0006\u00c2\u0015\u0000"+ + "\u0672\u0196\u0001\u0000\u0000\u0000\u0673\u0674\u0003\u0011\u0000\u0000"+ + "\u0674\u0675\u0001\u0000\u0000\u0000\u0675\u0676\u0006\u00c3\u0000\u0000"+ + "\u0676\u0198\u0001\u0000\u0000\u0000\u0677\u0678\u0003\u0013\u0001\u0000"+ + "\u0678\u0679\u0001\u0000\u0000\u0000\u0679\u067a\u0006\u00c4\u0000\u0000"+ + "\u067a\u019a\u0001\u0000\u0000\u0000\u067b\u067c\u0003\u0015\u0002\u0000"+ + "\u067c\u067d\u0001\u0000\u0000\u0000\u067d\u067e\u0006\u00c5\u0000\u0000"+ + "\u067e\u019c\u0001\u0000\u0000\u0000\u067f\u0680\u0003\u00b7S\u0000\u0680"+ + "\u0681\u0001\u0000\u0000\u0000\u0681\u0682\u0006\u00c6\u000e\u0000\u0682"+ + "\u0683\u0006\u00c6\u000f\u0000\u0683\u019e\u0001\u0000\u0000\u0000\u0684"+ + "\u0685\u0003\u012d\u008e\u0000\u0685\u0686\u0001\u0000\u0000\u0000\u0686"+ + "\u0687\u0006\u00c7\u0010\u0000\u0687\u0688\u0006\u00c7\u000f\u0000\u0688"+ + "\u0689\u0006\u00c7\u000f\u0000\u0689\u01a0\u0001\u0000\u0000\u0000\u068a"+ + "\u068b\u0003\u00ddf\u0000\u068b\u068c\u0001\u0000\u0000\u0000\u068c\u068d"+ + "\u0006\u00c8$\u0000\u068d\u01a2\u0001\u0000\u0000\u0000\u068e\u068f\u0003"+ + "\u00dfg\u0000\u068f\u0690\u0001\u0000\u0000\u0000\u0690\u0691\u0006\u00c9"+ + "\u0014\u0000\u0691\u01a4\u0001\u0000\u0000\u0000\u0692\u0693\u0003\u00e3"+ + "i\u0000\u0693\u0694\u0001\u0000\u0000\u0000\u0694\u0695\u0006\u00ca\u0013"+ + "\u0000\u0695\u01a6\u0001\u0000\u0000\u0000\u0696\u0697\u0003\u00f7s\u0000"+ + "\u0697\u0698\u0001\u0000\u0000\u0000\u0698\u0699\u0006\u00cb\u0011\u0000"+ + "\u0699\u069a\u0006\u00cb*\u0000\u069a\u01a8\u0001\u0000\u0000\u0000\u069b"+ + "\u069c\u0003\u014f\u009f\u0000\u069c\u069d\u0001\u0000\u0000\u0000\u069d"+ + "\u069e\u0006\u00cc)\u0000\u069e\u01aa\u0001\u0000\u0000\u0000\u069f\u06a0"+ + "\u0003\u00cd^\u0000\u06a0\u06a1\u0001\u0000\u0000\u0000\u06a1\u06a2\u0006"+ + "\u00cd\u001c\u0000\u06a2\u01ac\u0001\u0000\u0000\u0000\u06a3\u06a4\u0003"+ + "\u0011\u0000\u0000\u06a4\u06a5\u0001\u0000\u0000\u0000\u06a5\u06a6\u0006"+ + "\u00ce\u0000\u0000\u06a6\u01ae\u0001\u0000\u0000\u0000\u06a7\u06a8\u0003"+ + "\u0013\u0001\u0000\u06a8\u06a9\u0001\u0000\u0000\u0000\u06a9\u06aa\u0006"+ + "\u00cf\u0000\u0000\u06aa\u01b0\u0001\u0000\u0000\u0000\u06ab\u06ac\u0003"+ + "\u0015\u0002\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000\u06ad\u06ae\u0006"+ + "\u00d0\u0000\u0000\u06ae\u01b2\u0001\u0000\u0000\u0000\u06af\u06b0\u0003"+ + "\u00b7S\u0000\u06b0\u06b1\u0001\u0000\u0000\u0000\u06b1\u06b2\u0006\u00d1"+ + "\u000e\u0000\u06b2\u06b3\u0006\u00d1\u000f\u0000\u06b3\u06b4\u0006\u00d1"+ + "\u000f\u0000\u06b4\u01b4\u0001\u0000\u0000\u0000\u06b5\u06b6\u0003\u012d"+ + "\u008e\u0000\u06b6\u06b7\u0001\u0000\u0000\u0000\u06b7\u06b8\u0006\u00d2"+ + "\u0010\u0000\u06b8\u06b9\u0006\u00d2\u000f\u0000\u06b9\u06ba\u0006\u00d2"+ + "\u000f\u0000\u06ba\u06bb\u0006\u00d2\u000f\u0000\u06bb\u01b6\u0001\u0000"+ + "\u0000\u0000\u06bc\u06bd\u0003\u00dfg\u0000\u06bd\u06be\u0001\u0000\u0000"+ + "\u0000\u06be\u06bf\u0006\u00d3\u0014\u0000\u06bf\u01b8\u0001\u0000\u0000"+ + "\u0000\u06c0\u06c1\u0003\u00e3i\u0000\u06c1\u06c2\u0001\u0000\u0000\u0000"+ + "\u06c2\u06c3\u0006\u00d4\u0013\u0000\u06c3\u01ba\u0001\u0000\u0000\u0000"+ + "\u06c4\u06c5\u0003\u01ef\u00ef\u0000\u06c5\u06c6\u0001\u0000\u0000\u0000"+ + "\u06c6\u06c7\u0006\u00d5\u001e\u0000\u06c7\u01bc\u0001\u0000\u0000\u0000"+ + "\u06c8\u06c9\u0003\u0011\u0000\u0000\u06c9\u06ca\u0001\u0000\u0000\u0000"+ + "\u06ca\u06cb\u0006\u00d6\u0000\u0000\u06cb\u01be\u0001\u0000\u0000\u0000"+ + "\u06cc\u06cd\u0003\u0013\u0001\u0000\u06cd\u06ce\u0001\u0000\u0000\u0000"+ + "\u06ce\u06cf\u0006\u00d7\u0000\u0000\u06cf\u01c0\u0001\u0000\u0000\u0000"+ + "\u06d0\u06d1\u0003\u0015\u0002\u0000\u06d1\u06d2\u0001\u0000\u0000\u0000"+ + "\u06d2\u06d3\u0006\u00d8\u0000\u0000\u06d3\u01c2\u0001\u0000\u0000\u0000"+ + "\u06d4\u06d5\u0003\u00b7S\u0000\u06d5\u06d6\u0001\u0000\u0000\u0000\u06d6"+ + "\u06d7\u0006\u00d9\u000e\u0000\u06d7\u06d8\u0006\u00d9\u000f\u0000\u06d8"+ + "\u01c4\u0001\u0000\u0000\u0000\u06d9\u06da\u0003\u012d\u008e\u0000\u06da"+ + "\u06db\u0001\u0000\u0000\u0000\u06db\u06dc\u0006\u00da\u0010\u0000\u06dc"+ + "\u06dd\u0006\u00da\u000f\u0000\u06dd\u06de\u0006\u00da\u000f\u0000\u06de"+ + "\u01c6\u0001\u0000\u0000\u0000\u06df\u06e0\u0003\u00e3i\u0000\u06e0\u06e1"+ + "\u0001\u0000\u0000\u0000\u06e1\u06e2\u0006\u00db\u0013\u0000\u06e2\u01c8"+ + "\u0001\u0000\u0000\u0000\u06e3\u06e4\u0003\u00fbu\u0000\u06e4\u06e5\u0001"+ + "\u0000\u0000\u0000\u06e5\u06e6\u0006\u00dc\u001f\u0000\u06e6\u01ca\u0001"+ + "\u0000\u0000\u0000\u06e7\u06e8\u0003\u0123\u0089\u0000\u06e8\u06e9\u0001"+ + "\u0000\u0000\u0000\u06e9\u06ea\u0006\u00dd \u0000\u06ea\u01cc\u0001\u0000"+ + "\u0000\u0000\u06eb\u06ec\u0003\u011f\u0087\u0000\u06ec\u06ed\u0001\u0000"+ + "\u0000\u0000\u06ed\u06ee\u0006\u00de!\u0000\u06ee\u01ce\u0001\u0000\u0000"+ + "\u0000\u06ef\u06f0\u0003\u0125\u008a\u0000\u06f0\u06f1\u0001\u0000\u0000"+ + "\u0000\u06f1\u06f2\u0006\u00df\"\u0000\u06f2\u01d0\u0001\u0000\u0000\u0000"+ + "\u06f3\u06f4\u0003\u0133\u0091\u0000\u06f4\u06f5\u0001\u0000\u0000\u0000"+ + "\u06f5\u06f6\u0006\u00e0\u0015\u0000\u06f6\u01d2\u0001\u0000\u0000\u0000"+ + "\u06f7\u06f8\u0003\u012f\u008f\u0000\u06f8\u06f9\u0001\u0000\u0000\u0000"+ + "\u06f9\u06fa\u0006\u00e1\u0016\u0000\u06fa\u01d4\u0001\u0000\u0000\u0000"+ + "\u06fb\u06fc\u0003\u0011\u0000\u0000\u06fc\u06fd\u0001\u0000\u0000\u0000"+ + "\u06fd\u06fe\u0006\u00e2\u0000\u0000\u06fe\u01d6\u0001\u0000\u0000\u0000"+ + "\u06ff\u0700\u0003\u0013\u0001\u0000\u0700\u0701\u0001\u0000\u0000\u0000"+ + "\u0701\u0702\u0006\u00e3\u0000\u0000\u0702\u01d8\u0001\u0000\u0000\u0000"+ + "\u0703\u0704\u0003\u0015\u0002\u0000\u0704\u0705\u0001\u0000\u0000\u0000"+ + "\u0705\u0706\u0006\u00e4\u0000\u0000\u0706\u01da\u0001\u0000\u0000\u0000"+ + "\u0707\u0708\u0003\u00b7S\u0000\u0708\u0709\u0001\u0000\u0000\u0000\u0709"+ + "\u070a\u0006\u00e5\u000e\u0000\u070a\u070b\u0006\u00e5\u000f\u0000\u070b"+ + "\u01dc\u0001\u0000\u0000\u0000\u070c\u070d\u0003\u012d\u008e\u0000\u070d"+ + "\u070e\u0001\u0000\u0000\u0000\u070e\u070f\u0006\u00e6\u0010\u0000\u070f"+ + "\u0710\u0006\u00e6\u000f\u0000\u0710\u0711\u0006\u00e6\u000f\u0000\u0711"+ + "\u01de\u0001\u0000\u0000\u0000\u0712\u0713\u0003\u00e3i\u0000\u0713\u0714"+ + "\u0001\u0000\u0000\u0000\u0714\u0715\u0006\u00e7\u0013\u0000\u0715\u01e0"+ + "\u0001\u0000\u0000\u0000\u0716\u0717\u0003\u00dfg\u0000\u0717\u0718\u0001"+ + "\u0000\u0000\u0000\u0718\u0719\u0006\u00e8\u0014\u0000\u0719\u01e2\u0001"+ + "\u0000\u0000\u0000\u071a\u071b\u0003\u00fbu\u0000\u071b\u071c\u0001\u0000"+ + "\u0000\u0000\u071c\u071d\u0006\u00e9\u001f\u0000\u071d\u01e4\u0001\u0000"+ + "\u0000\u0000\u071e\u071f\u0003\u0123\u0089\u0000\u071f\u0720\u0001\u0000"+ + "\u0000\u0000\u0720\u0721\u0006\u00ea \u0000\u0721\u01e6\u0001\u0000\u0000"+ + "\u0000\u0722\u0723\u0003\u011f\u0087\u0000\u0723\u0724\u0001\u0000\u0000"+ + "\u0000\u0724\u0725\u0006\u00eb!\u0000\u0725\u01e8\u0001\u0000\u0000\u0000"+ + "\u0726\u0727\u0003\u0125\u008a\u0000\u0727\u0728\u0001\u0000\u0000\u0000"+ + "\u0728\u0729\u0006\u00ec\"\u0000\u0729\u01ea\u0001\u0000\u0000\u0000\u072a"+ + "\u072f\u0003\u00bbU\u0000\u072b\u072f\u0003\u00b9T\u0000\u072c\u072f\u0003"+ + "\u00c9\\\u0000\u072d\u072f\u0003\u0115\u0082\u0000\u072e\u072a\u0001\u0000"+ + "\u0000\u0000\u072e\u072b\u0001\u0000\u0000\u0000\u072e\u072c\u0001\u0000"+ + "\u0000\u0000\u072e\u072d\u0001\u0000\u0000\u0000\u072f\u01ec\u0001\u0000"+ + "\u0000\u0000\u0730\u0733\u0003\u00bbU\u0000\u0731\u0733\u0003\u0115\u0082"+ + "\u0000\u0732\u0730\u0001\u0000\u0000\u0000\u0732\u0731\u0001\u0000\u0000"+ + "\u0000\u0733\u0737\u0001\u0000\u0000\u0000\u0734\u0736\u0003\u01eb\u00ed"+ + "\u0000\u0735\u0734\u0001\u0000\u0000\u0000\u0736\u0739\u0001\u0000\u0000"+ + "\u0000\u0737\u0735\u0001\u0000\u0000\u0000\u0737\u0738\u0001\u0000\u0000"+ + "\u0000\u0738\u0744\u0001\u0000\u0000\u0000\u0739\u0737\u0001\u0000\u0000"+ + "\u0000\u073a\u073d\u0003\u00c9\\\u0000\u073b\u073d\u0003\u00c3Y\u0000"+ + "\u073c\u073a\u0001\u0000\u0000\u0000\u073c\u073b\u0001\u0000\u0000\u0000"+ + "\u073d\u073f\u0001\u0000\u0000\u0000\u073e\u0740\u0003\u01eb\u00ed\u0000"+ + "\u073f\u073e\u0001\u0000\u0000\u0000\u0740\u0741\u0001\u0000\u0000\u0000"+ + "\u0741\u073f\u0001\u0000\u0000\u0000\u0741\u0742\u0001\u0000\u0000\u0000"+ + "\u0742\u0744\u0001\u0000\u0000\u0000\u0743\u0732\u0001\u0000\u0000\u0000"+ + "\u0743\u073c\u0001\u0000\u0000\u0000\u0744\u01ee\u0001\u0000\u0000\u0000"+ + "\u0745\u0748\u0003\u01ed\u00ee\u0000\u0746\u0748\u0003\u0131\u0090\u0000"+ + "\u0747\u0745\u0001\u0000\u0000\u0000\u0747\u0746\u0001\u0000\u0000\u0000"+ + "\u0748\u0749\u0001\u0000\u0000\u0000\u0749\u0747\u0001\u0000\u0000\u0000"+ + "\u0749\u074a\u0001\u0000\u0000\u0000\u074a\u01f0\u0001\u0000\u0000\u0000"+ + "\u074b\u074c\u0003\u0011\u0000\u0000\u074c\u074d\u0001\u0000\u0000\u0000"+ + "\u074d\u074e\u0006\u00f0\u0000\u0000\u074e\u01f2\u0001\u0000\u0000\u0000"+ + "\u074f\u0750\u0003\u0013\u0001\u0000\u0750\u0751\u0001\u0000\u0000\u0000"+ + "\u0751\u0752\u0006\u00f1\u0000\u0000\u0752\u01f4\u0001\u0000\u0000\u0000"+ + "\u0753\u0754\u0003\u0015\u0002\u0000\u0754\u0755\u0001\u0000\u0000\u0000"+ + "\u0755\u0756\u0006\u00f2\u0000\u0000\u0756\u01f6\u0001\u0000\u0000\u0000"+ + "\u0757\u0758\u0003\u00b7S\u0000\u0758\u0759\u0001\u0000\u0000\u0000\u0759"+ + "\u075a\u0006\u00f3\u000e\u0000\u075a\u075b\u0006\u00f3\u000f\u0000\u075b"+ + "\u01f8\u0001\u0000\u0000\u0000\u075c\u075d\u0003\u012d\u008e\u0000\u075d"+ + "\u075e\u0001\u0000\u0000\u0000\u075e\u075f\u0006\u00f4\u0010\u0000\u075f"+ + "\u0760\u0006\u00f4\u000f\u0000\u0760\u0761\u0006\u00f4\u000f\u0000\u0761"+ + "\u01fa\u0001\u0000\u0000\u0000\u0762\u0763\u0003\u00d7c\u0000\u0763\u0764"+ + "\u0001\u0000\u0000\u0000\u0764\u0765\u0006\u00f5\u001d\u0000\u0765\u01fc"+ + "\u0001\u0000\u0000\u0000\u0766\u0767\u0003\u00dfg\u0000\u0767\u0768\u0001"+ + "\u0000\u0000\u0000\u0768\u0769\u0006\u00f6\u0014\u0000\u0769\u01fe\u0001"+ + "\u0000\u0000\u0000\u076a\u076b\u0003\u00e3i\u0000\u076b\u076c\u0001\u0000"+ + "\u0000\u0000\u076c\u076d\u0006\u00f7\u0013\u0000\u076d\u0200\u0001\u0000"+ + "\u0000\u0000\u076e\u076f\u0003\u00fbu\u0000\u076f\u0770\u0001\u0000\u0000"+ + "\u0000\u0770\u0771\u0006\u00f8\u001f\u0000\u0771\u0202\u0001\u0000\u0000"+ + "\u0000\u0772\u0773\u0003\u0123\u0089\u0000\u0773\u0774\u0001\u0000\u0000"+ + "\u0000\u0774\u0775\u0006\u00f9 \u0000\u0775\u0204\u0001\u0000\u0000\u0000"+ + "\u0776\u0777\u0003\u011f\u0087\u0000\u0777\u0778\u0001\u0000\u0000\u0000"+ + "\u0778\u0779\u0006\u00fa!\u0000\u0779\u0206\u0001\u0000\u0000\u0000\u077a"+ + "\u077b\u0003\u0125\u008a\u0000\u077b\u077c\u0001\u0000\u0000\u0000\u077c"+ + "\u077d\u0006\u00fb\"\u0000\u077d\u0208\u0001\u0000\u0000\u0000\u077e\u077f"+ + "\u0007\u0004\u0000\u0000\u077f\u0780\u0007\u0011\u0000\u0000\u0780\u020a"+ + "\u0001\u0000\u0000\u0000\u0781\u0782\u0003\u01ef\u00ef\u0000\u0782\u0783"+ + "\u0001\u0000\u0000\u0000\u0783\u0784\u0006\u00fd\u001e\u0000\u0784\u020c"+ + "\u0001\u0000\u0000\u0000\u0785\u0786\u0003\u0011\u0000\u0000\u0786\u0787"+ + "\u0001\u0000\u0000\u0000\u0787\u0788\u0006\u00fe\u0000\u0000\u0788\u020e"+ + "\u0001\u0000\u0000\u0000\u0789\u078a\u0003\u0013\u0001\u0000\u078a\u078b"+ + "\u0001\u0000\u0000\u0000\u078b\u078c\u0006\u00ff\u0000\u0000\u078c\u0210"+ + "\u0001\u0000\u0000\u0000\u078d\u078e\u0003\u0015\u0002\u0000\u078e\u078f"+ + "\u0001\u0000\u0000\u0000\u078f\u0790\u0006\u0100\u0000\u0000\u0790\u0212"+ + "\u0001\u0000\u0000\u0000\u0791\u0792\u0003\u00b7S\u0000\u0792\u0793\u0001"+ + "\u0000\u0000\u0000\u0793\u0794\u0006\u0101\u000e\u0000\u0794\u0795\u0006"+ + "\u0101\u000f\u0000\u0795\u0214\u0001\u0000\u0000\u0000\u0796\u0797\u0007"+ + "\n\u0000\u0000\u0797\u0798\u0007\u0005\u0000\u0000\u0798\u0799\u0007\u0015"+ + "\u0000\u0000\u0799\u079a\u0007\t\u0000\u0000\u079a\u0216\u0001\u0000\u0000"+ + "\u0000\u079b\u079c\u0003\u0011\u0000\u0000\u079c\u079d\u0001\u0000\u0000"+ + "\u0000\u079d\u079e\u0006\u0103\u0000\u0000\u079e\u0218\u0001\u0000\u0000"+ + "\u0000\u079f\u07a0\u0003\u0013\u0001\u0000\u07a0\u07a1\u0001\u0000\u0000"+ + "\u0000\u07a1\u07a2\u0006\u0104\u0000\u0000\u07a2\u021a\u0001\u0000\u0000"+ + "\u0000\u07a3\u07a4\u0003\u0015\u0002\u0000\u07a4\u07a5\u0001\u0000\u0000"+ + "\u0000\u07a5\u07a6\u0006\u0105\u0000\u0000\u07a6\u021c\u0001\u0000\u0000"+ + "\u0000G\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f"+ + "\r\u000e\u000f\u0010\u0223\u0227\u022a\u0233\u0235\u0240\u0355\u03a7\u03ab"+ + "\u03b0\u0415\u0417\u044a\u044f\u0458\u045f\u0464\u0466\u0471\u0479\u047c"+ + "\u047e\u0483\u0488\u048e\u0495\u049a\u04a0\u04a3\u04ab\u04af\u053a\u053f"+ + "\u0546\u0548\u054d\u0552\u0559\u055b\u0575\u057a\u057f\u0581\u0587\u05c7"+ + "\u05cc\u072e\u0732\u0737\u073c\u0741\u0743\u0747\u0749+\u0000\u0001\u0000"+ + "\u0005\u0001\u0000\u0005\u0002\u0000\u0005\u0005\u0000\u0005\u0006\u0000"+ + "\u0005\u0007\u0000\u0005\b\u0000\u0005\t\u0000\u0005\n\u0000\u0005\u000b"+ + "\u0000\u0005\r\u0000\u0005\u000e\u0000\u0005\u000f\u0000\u0005\u0010\u0000"+ + "\u00074\u0000\u0004\u0000\u0000\u0007d\u0000\u0007J\u0000\u0007\u008c"+ "\u0000\u0007@\u0000\u0007>\u0000\u0007f\u0000\u0007e\u0000\u0007a\u0000"+ "\u0005\u0004\u0000\u0005\u0003\u0000\u0007O\u0000\u0007&\u0000\u00075"+ - "\u0000\u0007:\u0000\u0007\u0080\u0000\u0007L\u0000\u0007_\u0000\u0007"+ + "\u0000\u0007:\u0000\u0007\u0088\u0000\u0007L\u0000\u0007_\u0000\u0007"+ "^\u0000\u0007`\u0000\u0007b\u0000\u0007=\u0000\u0007c\u0000\u0005\u0000"+ - "\u0000\u0007\u0011\u0000\u0007<\u0000\u0007k\u0000\u0005\u000b\u0000"; + "\u0000\u0007\u0011\u0000\u0007<\u0000\u0007k\u0000\u0005\f\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 49f547245c204..fc80cb2469fd9 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 @@ -113,6 +113,14 @@ null null null null +'group' +'score' +'key' +'rrf' +'linear' +null +null +null 'join' 'USING' null @@ -255,6 +263,14 @@ FROM_WS FORK_WS FORK_LINE_COMMENT FORK_MULTILINE_COMMENT +GROUP +SCORE +KEY +RRF +LINEAR +FUSE_LINE_COMMENT +FUSE_MULTILINE_COMMENT +FUSE_WS JOIN USING JOIN_LINE_COMMENT @@ -347,6 +363,7 @@ lookupCommand inlinestatsCommand insistCommand fuseCommand +fuseMethod booleanExpression regexBooleanExpression matchBooleanExpression @@ -357,6 +374,7 @@ functionExpression functionName mapExpression entryExpression +mapValue constant booleanValue numericValue @@ -371,4 +389,4 @@ joinPredicate atn: -[4, 1, 139, 821, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 180, 8, 1, 10, 1, 12, 1, 183, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 192, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 220, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 233, 8, 7, 10, 7, 12, 7, 236, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 241, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 248, 8, 9, 10, 9, 12, 9, 251, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 256, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 267, 8, 13, 10, 13, 12, 13, 270, 9, 13, 1, 13, 3, 13, 273, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 284, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 298, 8, 19, 10, 19, 12, 19, 301, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 308, 8, 21, 1, 21, 1, 21, 3, 21, 312, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 317, 8, 22, 10, 22, 12, 22, 320, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 325, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 330, 8, 24, 10, 24, 12, 24, 333, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 338, 8, 25, 10, 25, 12, 25, 341, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 346, 8, 26, 10, 26, 12, 26, 349, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 356, 8, 28, 1, 29, 1, 29, 3, 29, 360, 8, 29, 1, 30, 1, 30, 3, 30, 364, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 369, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 378, 8, 33, 10, 33, 12, 33, 381, 9, 33, 1, 34, 1, 34, 3, 34, 385, 8, 34, 1, 34, 1, 34, 3, 34, 389, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 401, 8, 37, 10, 37, 12, 37, 404, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 414, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 420, 8, 39, 1, 40, 1, 40, 1, 40, 5, 40, 425, 8, 40, 10, 40, 12, 40, 428, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 436, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 459, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 465, 8, 48, 10, 48, 12, 48, 468, 9, 48, 3, 48, 470, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 3, 50, 477, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 488, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 495, 8, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 501, 8, 54, 11, 54, 12, 54, 502, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 515, 8, 56, 10, 56, 12, 56, 518, 9, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 526, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 537, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 551, 8, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 565, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 572, 8, 64, 10, 64, 12, 64, 575, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 582, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 587, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 595, 8, 64, 10, 64, 12, 64, 598, 9, 64, 1, 65, 1, 65, 3, 65, 602, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 609, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 616, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 623, 8, 65, 10, 65, 12, 65, 626, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 632, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 639, 8, 65, 10, 65, 12, 65, 642, 9, 65, 1, 65, 1, 65, 3, 65, 646, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 651, 8, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 661, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 667, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 675, 8, 68, 10, 68, 12, 68, 678, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 688, 8, 69, 1, 69, 1, 69, 1, 69, 5, 69, 693, 8, 69, 10, 69, 12, 69, 696, 9, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 704, 8, 70, 10, 70, 12, 70, 707, 9, 70, 1, 70, 1, 70, 3, 70, 711, 8, 70, 3, 70, 713, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 720, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 726, 8, 72, 10, 72, 12, 72, 729, 9, 72, 3, 72, 731, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 752, 8, 74, 10, 74, 12, 74, 755, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 763, 8, 74, 10, 74, 12, 74, 766, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 774, 8, 74, 10, 74, 12, 74, 777, 9, 74, 1, 74, 1, 74, 3, 74, 781, 8, 74, 1, 75, 1, 75, 1, 76, 1, 76, 3, 76, 787, 8, 76, 1, 77, 3, 77, 790, 8, 77, 1, 77, 1, 77, 1, 78, 3, 78, 795, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 814, 8, 83, 10, 83, 12, 83, 817, 9, 83, 1, 84, 1, 84, 1, 84, 0, 5, 2, 112, 128, 136, 138, 85, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 0, 10, 2, 0, 53, 53, 107, 107, 1, 0, 101, 102, 2, 0, 57, 57, 63, 63, 2, 0, 66, 66, 69, 69, 2, 0, 38, 38, 53, 53, 1, 0, 87, 88, 1, 0, 89, 91, 2, 0, 65, 65, 78, 78, 2, 0, 80, 80, 82, 86, 2, 0, 23, 23, 25, 26, 854, 0, 170, 1, 0, 0, 0, 2, 173, 1, 0, 0, 0, 4, 191, 1, 0, 0, 0, 6, 219, 1, 0, 0, 0, 8, 221, 1, 0, 0, 0, 10, 224, 1, 0, 0, 0, 12, 226, 1, 0, 0, 0, 14, 229, 1, 0, 0, 0, 16, 240, 1, 0, 0, 0, 18, 244, 1, 0, 0, 0, 20, 252, 1, 0, 0, 0, 22, 257, 1, 0, 0, 0, 24, 260, 1, 0, 0, 0, 26, 263, 1, 0, 0, 0, 28, 283, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 289, 1, 0, 0, 0, 36, 291, 1, 0, 0, 0, 38, 293, 1, 0, 0, 0, 40, 302, 1, 0, 0, 0, 42, 305, 1, 0, 0, 0, 44, 313, 1, 0, 0, 0, 46, 321, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 334, 1, 0, 0, 0, 52, 342, 1, 0, 0, 0, 54, 350, 1, 0, 0, 0, 56, 355, 1, 0, 0, 0, 58, 359, 1, 0, 0, 0, 60, 363, 1, 0, 0, 0, 62, 368, 1, 0, 0, 0, 64, 370, 1, 0, 0, 0, 66, 373, 1, 0, 0, 0, 68, 382, 1, 0, 0, 0, 70, 390, 1, 0, 0, 0, 72, 393, 1, 0, 0, 0, 74, 396, 1, 0, 0, 0, 76, 413, 1, 0, 0, 0, 78, 415, 1, 0, 0, 0, 80, 421, 1, 0, 0, 0, 82, 429, 1, 0, 0, 0, 84, 435, 1, 0, 0, 0, 86, 437, 1, 0, 0, 0, 88, 441, 1, 0, 0, 0, 90, 444, 1, 0, 0, 0, 92, 447, 1, 0, 0, 0, 94, 451, 1, 0, 0, 0, 96, 454, 1, 0, 0, 0, 98, 471, 1, 0, 0, 0, 100, 476, 1, 0, 0, 0, 102, 480, 1, 0, 0, 0, 104, 483, 1, 0, 0, 0, 106, 496, 1, 0, 0, 0, 108, 500, 1, 0, 0, 0, 110, 504, 1, 0, 0, 0, 112, 508, 1, 0, 0, 0, 114, 519, 1, 0, 0, 0, 116, 521, 1, 0, 0, 0, 118, 532, 1, 0, 0, 0, 120, 541, 1, 0, 0, 0, 122, 546, 1, 0, 0, 0, 124, 552, 1, 0, 0, 0, 126, 555, 1, 0, 0, 0, 128, 586, 1, 0, 0, 0, 130, 645, 1, 0, 0, 0, 132, 647, 1, 0, 0, 0, 134, 660, 1, 0, 0, 0, 136, 666, 1, 0, 0, 0, 138, 687, 1, 0, 0, 0, 140, 697, 1, 0, 0, 0, 142, 719, 1, 0, 0, 0, 144, 721, 1, 0, 0, 0, 146, 734, 1, 0, 0, 0, 148, 780, 1, 0, 0, 0, 150, 782, 1, 0, 0, 0, 152, 786, 1, 0, 0, 0, 154, 789, 1, 0, 0, 0, 156, 794, 1, 0, 0, 0, 158, 798, 1, 0, 0, 0, 160, 800, 1, 0, 0, 0, 162, 802, 1, 0, 0, 0, 164, 807, 1, 0, 0, 0, 166, 809, 1, 0, 0, 0, 168, 818, 1, 0, 0, 0, 170, 171, 3, 2, 1, 0, 171, 172, 5, 0, 0, 1, 172, 1, 1, 0, 0, 0, 173, 174, 6, 1, -1, 0, 174, 175, 3, 4, 2, 0, 175, 181, 1, 0, 0, 0, 176, 177, 10, 1, 0, 0, 177, 178, 5, 52, 0, 0, 178, 180, 3, 6, 3, 0, 179, 176, 1, 0, 0, 0, 180, 183, 1, 0, 0, 0, 181, 179, 1, 0, 0, 0, 181, 182, 1, 0, 0, 0, 182, 3, 1, 0, 0, 0, 183, 181, 1, 0, 0, 0, 184, 192, 3, 22, 11, 0, 185, 192, 3, 12, 6, 0, 186, 192, 3, 94, 47, 0, 187, 188, 4, 2, 1, 0, 188, 192, 3, 24, 12, 0, 189, 190, 4, 2, 2, 0, 190, 192, 3, 90, 45, 0, 191, 184, 1, 0, 0, 0, 191, 185, 1, 0, 0, 0, 191, 186, 1, 0, 0, 0, 191, 187, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 192, 5, 1, 0, 0, 0, 193, 220, 3, 40, 20, 0, 194, 220, 3, 8, 4, 0, 195, 220, 3, 70, 35, 0, 196, 220, 3, 64, 32, 0, 197, 220, 3, 42, 21, 0, 198, 220, 3, 66, 33, 0, 199, 220, 3, 72, 36, 0, 200, 220, 3, 74, 37, 0, 201, 220, 3, 78, 39, 0, 202, 220, 3, 86, 43, 0, 203, 220, 3, 96, 48, 0, 204, 220, 3, 88, 44, 0, 205, 220, 3, 162, 81, 0, 206, 220, 3, 104, 52, 0, 207, 220, 3, 118, 59, 0, 208, 220, 3, 102, 51, 0, 209, 220, 3, 106, 53, 0, 210, 220, 3, 116, 58, 0, 211, 212, 4, 3, 3, 0, 212, 220, 3, 122, 61, 0, 213, 214, 4, 3, 4, 0, 214, 220, 3, 120, 60, 0, 215, 216, 4, 3, 5, 0, 216, 220, 3, 124, 62, 0, 217, 218, 4, 3, 6, 0, 218, 220, 3, 126, 63, 0, 219, 193, 1, 0, 0, 0, 219, 194, 1, 0, 0, 0, 219, 195, 1, 0, 0, 0, 219, 196, 1, 0, 0, 0, 219, 197, 1, 0, 0, 0, 219, 198, 1, 0, 0, 0, 219, 199, 1, 0, 0, 0, 219, 200, 1, 0, 0, 0, 219, 201, 1, 0, 0, 0, 219, 202, 1, 0, 0, 0, 219, 203, 1, 0, 0, 0, 219, 204, 1, 0, 0, 0, 219, 205, 1, 0, 0, 0, 219, 206, 1, 0, 0, 0, 219, 207, 1, 0, 0, 0, 219, 208, 1, 0, 0, 0, 219, 209, 1, 0, 0, 0, 219, 210, 1, 0, 0, 0, 219, 211, 1, 0, 0, 0, 219, 213, 1, 0, 0, 0, 219, 215, 1, 0, 0, 0, 219, 217, 1, 0, 0, 0, 220, 7, 1, 0, 0, 0, 221, 222, 5, 17, 0, 0, 222, 223, 3, 128, 64, 0, 223, 9, 1, 0, 0, 0, 224, 225, 3, 54, 27, 0, 225, 11, 1, 0, 0, 0, 226, 227, 5, 13, 0, 0, 227, 228, 3, 14, 7, 0, 228, 13, 1, 0, 0, 0, 229, 234, 3, 16, 8, 0, 230, 231, 5, 62, 0, 0, 231, 233, 3, 16, 8, 0, 232, 230, 1, 0, 0, 0, 233, 236, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 15, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 237, 238, 3, 48, 24, 0, 238, 239, 5, 58, 0, 0, 239, 241, 1, 0, 0, 0, 240, 237, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 3, 128, 64, 0, 243, 17, 1, 0, 0, 0, 244, 249, 3, 20, 10, 0, 245, 246, 5, 62, 0, 0, 246, 248, 3, 20, 10, 0, 247, 245, 1, 0, 0, 0, 248, 251, 1, 0, 0, 0, 249, 247, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 19, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 252, 255, 3, 48, 24, 0, 253, 254, 5, 58, 0, 0, 254, 256, 3, 128, 64, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 21, 1, 0, 0, 0, 257, 258, 5, 19, 0, 0, 258, 259, 3, 26, 13, 0, 259, 23, 1, 0, 0, 0, 260, 261, 5, 20, 0, 0, 261, 262, 3, 26, 13, 0, 262, 25, 1, 0, 0, 0, 263, 268, 3, 28, 14, 0, 264, 265, 5, 62, 0, 0, 265, 267, 3, 28, 14, 0, 266, 264, 1, 0, 0, 0, 267, 270, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 272, 1, 0, 0, 0, 270, 268, 1, 0, 0, 0, 271, 273, 3, 38, 19, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 27, 1, 0, 0, 0, 274, 275, 3, 30, 15, 0, 275, 276, 5, 61, 0, 0, 276, 277, 3, 34, 17, 0, 277, 284, 1, 0, 0, 0, 278, 279, 3, 34, 17, 0, 279, 280, 5, 60, 0, 0, 280, 281, 3, 32, 16, 0, 281, 284, 1, 0, 0, 0, 282, 284, 3, 36, 18, 0, 283, 274, 1, 0, 0, 0, 283, 278, 1, 0, 0, 0, 283, 282, 1, 0, 0, 0, 284, 29, 1, 0, 0, 0, 285, 286, 5, 107, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 107, 0, 0, 288, 33, 1, 0, 0, 0, 289, 290, 5, 107, 0, 0, 290, 35, 1, 0, 0, 0, 291, 292, 7, 0, 0, 0, 292, 37, 1, 0, 0, 0, 293, 294, 5, 106, 0, 0, 294, 299, 5, 107, 0, 0, 295, 296, 5, 62, 0, 0, 296, 298, 5, 107, 0, 0, 297, 295, 1, 0, 0, 0, 298, 301, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 39, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 303, 5, 9, 0, 0, 303, 304, 3, 14, 7, 0, 304, 41, 1, 0, 0, 0, 305, 307, 5, 16, 0, 0, 306, 308, 3, 44, 22, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 310, 5, 59, 0, 0, 310, 312, 3, 14, 7, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 43, 1, 0, 0, 0, 313, 318, 3, 46, 23, 0, 314, 315, 5, 62, 0, 0, 315, 317, 3, 46, 23, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 45, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 324, 3, 16, 8, 0, 322, 323, 5, 17, 0, 0, 323, 325, 3, 128, 64, 0, 324, 322, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 47, 1, 0, 0, 0, 326, 331, 3, 62, 31, 0, 327, 328, 5, 64, 0, 0, 328, 330, 3, 62, 31, 0, 329, 327, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 49, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 339, 3, 56, 28, 0, 335, 336, 5, 64, 0, 0, 336, 338, 3, 56, 28, 0, 337, 335, 1, 0, 0, 0, 338, 341, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 51, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 347, 3, 50, 25, 0, 343, 344, 5, 62, 0, 0, 344, 346, 3, 50, 25, 0, 345, 343, 1, 0, 0, 0, 346, 349, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 53, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 350, 351, 7, 1, 0, 0, 351, 55, 1, 0, 0, 0, 352, 356, 5, 128, 0, 0, 353, 356, 3, 58, 29, 0, 354, 356, 3, 60, 30, 0, 355, 352, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 354, 1, 0, 0, 0, 356, 57, 1, 0, 0, 0, 357, 360, 5, 76, 0, 0, 358, 360, 5, 95, 0, 0, 359, 357, 1, 0, 0, 0, 359, 358, 1, 0, 0, 0, 360, 59, 1, 0, 0, 0, 361, 364, 5, 94, 0, 0, 362, 364, 5, 96, 0, 0, 363, 361, 1, 0, 0, 0, 363, 362, 1, 0, 0, 0, 364, 61, 1, 0, 0, 0, 365, 369, 3, 54, 27, 0, 366, 369, 3, 58, 29, 0, 367, 369, 3, 60, 30, 0, 368, 365, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 367, 1, 0, 0, 0, 369, 63, 1, 0, 0, 0, 370, 371, 5, 11, 0, 0, 371, 372, 3, 148, 74, 0, 372, 65, 1, 0, 0, 0, 373, 374, 5, 15, 0, 0, 374, 379, 3, 68, 34, 0, 375, 376, 5, 62, 0, 0, 376, 378, 3, 68, 34, 0, 377, 375, 1, 0, 0, 0, 378, 381, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 67, 1, 0, 0, 0, 381, 379, 1, 0, 0, 0, 382, 384, 3, 128, 64, 0, 383, 385, 7, 2, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 1, 0, 0, 0, 386, 387, 5, 73, 0, 0, 387, 389, 7, 3, 0, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 69, 1, 0, 0, 0, 390, 391, 5, 30, 0, 0, 391, 392, 3, 52, 26, 0, 392, 71, 1, 0, 0, 0, 393, 394, 5, 29, 0, 0, 394, 395, 3, 52, 26, 0, 395, 73, 1, 0, 0, 0, 396, 397, 5, 32, 0, 0, 397, 402, 3, 76, 38, 0, 398, 399, 5, 62, 0, 0, 399, 401, 3, 76, 38, 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, 75, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 405, 406, 3, 50, 25, 0, 406, 407, 5, 132, 0, 0, 407, 408, 3, 50, 25, 0, 408, 414, 1, 0, 0, 0, 409, 410, 3, 50, 25, 0, 410, 411, 5, 58, 0, 0, 411, 412, 3, 50, 25, 0, 412, 414, 1, 0, 0, 0, 413, 405, 1, 0, 0, 0, 413, 409, 1, 0, 0, 0, 414, 77, 1, 0, 0, 0, 415, 416, 5, 8, 0, 0, 416, 417, 3, 138, 69, 0, 417, 419, 3, 158, 79, 0, 418, 420, 3, 80, 40, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 79, 1, 0, 0, 0, 421, 426, 3, 82, 41, 0, 422, 423, 5, 62, 0, 0, 423, 425, 3, 82, 41, 0, 424, 422, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 426, 427, 1, 0, 0, 0, 427, 81, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 429, 430, 3, 54, 27, 0, 430, 431, 5, 58, 0, 0, 431, 432, 3, 148, 74, 0, 432, 83, 1, 0, 0, 0, 433, 434, 5, 79, 0, 0, 434, 436, 3, 144, 72, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 85, 1, 0, 0, 0, 437, 438, 5, 10, 0, 0, 438, 439, 3, 138, 69, 0, 439, 440, 3, 158, 79, 0, 440, 87, 1, 0, 0, 0, 441, 442, 5, 28, 0, 0, 442, 443, 3, 48, 24, 0, 443, 89, 1, 0, 0, 0, 444, 445, 5, 6, 0, 0, 445, 446, 3, 92, 46, 0, 446, 91, 1, 0, 0, 0, 447, 448, 5, 99, 0, 0, 448, 449, 3, 2, 1, 0, 449, 450, 5, 100, 0, 0, 450, 93, 1, 0, 0, 0, 451, 452, 5, 33, 0, 0, 452, 453, 5, 136, 0, 0, 453, 95, 1, 0, 0, 0, 454, 455, 5, 5, 0, 0, 455, 458, 3, 98, 49, 0, 456, 457, 5, 74, 0, 0, 457, 459, 3, 50, 25, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 469, 1, 0, 0, 0, 460, 461, 5, 79, 0, 0, 461, 466, 3, 100, 50, 0, 462, 463, 5, 62, 0, 0, 463, 465, 3, 100, 50, 0, 464, 462, 1, 0, 0, 0, 465, 468, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 469, 460, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 97, 1, 0, 0, 0, 471, 472, 7, 4, 0, 0, 472, 99, 1, 0, 0, 0, 473, 474, 3, 50, 25, 0, 474, 475, 5, 58, 0, 0, 475, 477, 1, 0, 0, 0, 476, 473, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 3, 50, 25, 0, 479, 101, 1, 0, 0, 0, 480, 481, 5, 14, 0, 0, 481, 482, 3, 148, 74, 0, 482, 103, 1, 0, 0, 0, 483, 484, 5, 4, 0, 0, 484, 487, 3, 48, 24, 0, 485, 486, 5, 74, 0, 0, 486, 488, 3, 48, 24, 0, 487, 485, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 494, 1, 0, 0, 0, 489, 490, 5, 132, 0, 0, 490, 491, 3, 48, 24, 0, 491, 492, 5, 62, 0, 0, 492, 493, 3, 48, 24, 0, 493, 495, 1, 0, 0, 0, 494, 489, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 105, 1, 0, 0, 0, 496, 497, 5, 21, 0, 0, 497, 498, 3, 108, 54, 0, 498, 107, 1, 0, 0, 0, 499, 501, 3, 110, 55, 0, 500, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 109, 1, 0, 0, 0, 504, 505, 5, 99, 0, 0, 505, 506, 3, 112, 56, 0, 506, 507, 5, 100, 0, 0, 507, 111, 1, 0, 0, 0, 508, 509, 6, 56, -1, 0, 509, 510, 3, 114, 57, 0, 510, 516, 1, 0, 0, 0, 511, 512, 10, 1, 0, 0, 512, 513, 5, 52, 0, 0, 513, 515, 3, 114, 57, 0, 514, 511, 1, 0, 0, 0, 515, 518, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 113, 1, 0, 0, 0, 518, 516, 1, 0, 0, 0, 519, 520, 3, 6, 3, 0, 520, 115, 1, 0, 0, 0, 521, 525, 5, 12, 0, 0, 522, 523, 3, 48, 24, 0, 523, 524, 5, 58, 0, 0, 524, 526, 1, 0, 0, 0, 525, 522, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 528, 3, 148, 74, 0, 528, 529, 5, 74, 0, 0, 529, 530, 3, 18, 9, 0, 530, 531, 3, 84, 42, 0, 531, 117, 1, 0, 0, 0, 532, 536, 5, 7, 0, 0, 533, 534, 3, 48, 24, 0, 534, 535, 5, 58, 0, 0, 535, 537, 1, 0, 0, 0, 536, 533, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 3, 138, 69, 0, 539, 540, 3, 84, 42, 0, 540, 119, 1, 0, 0, 0, 541, 542, 5, 27, 0, 0, 542, 543, 3, 28, 14, 0, 543, 544, 5, 74, 0, 0, 544, 545, 3, 52, 26, 0, 545, 121, 1, 0, 0, 0, 546, 547, 5, 18, 0, 0, 547, 550, 3, 44, 22, 0, 548, 549, 5, 59, 0, 0, 549, 551, 3, 14, 7, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 123, 1, 0, 0, 0, 552, 553, 5, 31, 0, 0, 553, 554, 3, 52, 26, 0, 554, 125, 1, 0, 0, 0, 555, 556, 5, 22, 0, 0, 556, 127, 1, 0, 0, 0, 557, 558, 6, 64, -1, 0, 558, 559, 5, 71, 0, 0, 559, 587, 3, 128, 64, 8, 560, 587, 3, 134, 67, 0, 561, 587, 3, 130, 65, 0, 562, 564, 3, 134, 67, 0, 563, 565, 5, 71, 0, 0, 564, 563, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 5, 67, 0, 0, 567, 568, 5, 99, 0, 0, 568, 573, 3, 134, 67, 0, 569, 570, 5, 62, 0, 0, 570, 572, 3, 134, 67, 0, 571, 569, 1, 0, 0, 0, 572, 575, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 576, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 576, 577, 5, 100, 0, 0, 577, 587, 1, 0, 0, 0, 578, 579, 3, 134, 67, 0, 579, 581, 5, 68, 0, 0, 580, 582, 5, 71, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 584, 5, 72, 0, 0, 584, 587, 1, 0, 0, 0, 585, 587, 3, 132, 66, 0, 586, 557, 1, 0, 0, 0, 586, 560, 1, 0, 0, 0, 586, 561, 1, 0, 0, 0, 586, 562, 1, 0, 0, 0, 586, 578, 1, 0, 0, 0, 586, 585, 1, 0, 0, 0, 587, 596, 1, 0, 0, 0, 588, 589, 10, 5, 0, 0, 589, 590, 5, 56, 0, 0, 590, 595, 3, 128, 64, 6, 591, 592, 10, 4, 0, 0, 592, 593, 5, 75, 0, 0, 593, 595, 3, 128, 64, 5, 594, 588, 1, 0, 0, 0, 594, 591, 1, 0, 0, 0, 595, 598, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 129, 1, 0, 0, 0, 598, 596, 1, 0, 0, 0, 599, 601, 3, 134, 67, 0, 600, 602, 5, 71, 0, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 70, 0, 0, 604, 605, 3, 158, 79, 0, 605, 646, 1, 0, 0, 0, 606, 608, 3, 134, 67, 0, 607, 609, 5, 71, 0, 0, 608, 607, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 77, 0, 0, 611, 612, 3, 158, 79, 0, 612, 646, 1, 0, 0, 0, 613, 615, 3, 134, 67, 0, 614, 616, 5, 71, 0, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 5, 70, 0, 0, 618, 619, 5, 99, 0, 0, 619, 624, 3, 158, 79, 0, 620, 621, 5, 62, 0, 0, 621, 623, 3, 158, 79, 0, 622, 620, 1, 0, 0, 0, 623, 626, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 627, 1, 0, 0, 0, 626, 624, 1, 0, 0, 0, 627, 628, 5, 100, 0, 0, 628, 646, 1, 0, 0, 0, 629, 631, 3, 134, 67, 0, 630, 632, 5, 71, 0, 0, 631, 630, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 77, 0, 0, 634, 635, 5, 99, 0, 0, 635, 640, 3, 158, 79, 0, 636, 637, 5, 62, 0, 0, 637, 639, 3, 158, 79, 0, 638, 636, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 643, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 643, 644, 5, 100, 0, 0, 644, 646, 1, 0, 0, 0, 645, 599, 1, 0, 0, 0, 645, 606, 1, 0, 0, 0, 645, 613, 1, 0, 0, 0, 645, 629, 1, 0, 0, 0, 646, 131, 1, 0, 0, 0, 647, 650, 3, 48, 24, 0, 648, 649, 5, 60, 0, 0, 649, 651, 3, 10, 5, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 5, 61, 0, 0, 653, 654, 3, 148, 74, 0, 654, 133, 1, 0, 0, 0, 655, 661, 3, 136, 68, 0, 656, 657, 3, 136, 68, 0, 657, 658, 3, 160, 80, 0, 658, 659, 3, 136, 68, 0, 659, 661, 1, 0, 0, 0, 660, 655, 1, 0, 0, 0, 660, 656, 1, 0, 0, 0, 661, 135, 1, 0, 0, 0, 662, 663, 6, 68, -1, 0, 663, 667, 3, 138, 69, 0, 664, 665, 7, 5, 0, 0, 665, 667, 3, 136, 68, 3, 666, 662, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 667, 676, 1, 0, 0, 0, 668, 669, 10, 2, 0, 0, 669, 670, 7, 6, 0, 0, 670, 675, 3, 136, 68, 3, 671, 672, 10, 1, 0, 0, 672, 673, 7, 5, 0, 0, 673, 675, 3, 136, 68, 2, 674, 668, 1, 0, 0, 0, 674, 671, 1, 0, 0, 0, 675, 678, 1, 0, 0, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 137, 1, 0, 0, 0, 678, 676, 1, 0, 0, 0, 679, 680, 6, 69, -1, 0, 680, 688, 3, 148, 74, 0, 681, 688, 3, 48, 24, 0, 682, 688, 3, 140, 70, 0, 683, 684, 5, 99, 0, 0, 684, 685, 3, 128, 64, 0, 685, 686, 5, 100, 0, 0, 686, 688, 1, 0, 0, 0, 687, 679, 1, 0, 0, 0, 687, 681, 1, 0, 0, 0, 687, 682, 1, 0, 0, 0, 687, 683, 1, 0, 0, 0, 688, 694, 1, 0, 0, 0, 689, 690, 10, 1, 0, 0, 690, 691, 5, 60, 0, 0, 691, 693, 3, 10, 5, 0, 692, 689, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 139, 1, 0, 0, 0, 696, 694, 1, 0, 0, 0, 697, 698, 3, 142, 71, 0, 698, 712, 5, 99, 0, 0, 699, 713, 5, 89, 0, 0, 700, 705, 3, 128, 64, 0, 701, 702, 5, 62, 0, 0, 702, 704, 3, 128, 64, 0, 703, 701, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 710, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 5, 62, 0, 0, 709, 711, 3, 144, 72, 0, 710, 708, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 713, 1, 0, 0, 0, 712, 699, 1, 0, 0, 0, 712, 700, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 715, 5, 100, 0, 0, 715, 141, 1, 0, 0, 0, 716, 720, 3, 62, 31, 0, 717, 720, 5, 66, 0, 0, 718, 720, 5, 69, 0, 0, 719, 716, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 718, 1, 0, 0, 0, 720, 143, 1, 0, 0, 0, 721, 730, 5, 92, 0, 0, 722, 727, 3, 146, 73, 0, 723, 724, 5, 62, 0, 0, 724, 726, 3, 146, 73, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 722, 1, 0, 0, 0, 730, 731, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 5, 93, 0, 0, 733, 145, 1, 0, 0, 0, 734, 735, 3, 158, 79, 0, 735, 736, 5, 61, 0, 0, 736, 737, 3, 148, 74, 0, 737, 147, 1, 0, 0, 0, 738, 781, 5, 72, 0, 0, 739, 740, 3, 156, 78, 0, 740, 741, 5, 101, 0, 0, 741, 781, 1, 0, 0, 0, 742, 781, 3, 154, 77, 0, 743, 781, 3, 156, 78, 0, 744, 781, 3, 150, 75, 0, 745, 781, 3, 58, 29, 0, 746, 781, 3, 158, 79, 0, 747, 748, 5, 97, 0, 0, 748, 753, 3, 152, 76, 0, 749, 750, 5, 62, 0, 0, 750, 752, 3, 152, 76, 0, 751, 749, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 756, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 757, 5, 98, 0, 0, 757, 781, 1, 0, 0, 0, 758, 759, 5, 97, 0, 0, 759, 764, 3, 150, 75, 0, 760, 761, 5, 62, 0, 0, 761, 763, 3, 150, 75, 0, 762, 760, 1, 0, 0, 0, 763, 766, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 767, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 767, 768, 5, 98, 0, 0, 768, 781, 1, 0, 0, 0, 769, 770, 5, 97, 0, 0, 770, 775, 3, 158, 79, 0, 771, 772, 5, 62, 0, 0, 772, 774, 3, 158, 79, 0, 773, 771, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 778, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 779, 5, 98, 0, 0, 779, 781, 1, 0, 0, 0, 780, 738, 1, 0, 0, 0, 780, 739, 1, 0, 0, 0, 780, 742, 1, 0, 0, 0, 780, 743, 1, 0, 0, 0, 780, 744, 1, 0, 0, 0, 780, 745, 1, 0, 0, 0, 780, 746, 1, 0, 0, 0, 780, 747, 1, 0, 0, 0, 780, 758, 1, 0, 0, 0, 780, 769, 1, 0, 0, 0, 781, 149, 1, 0, 0, 0, 782, 783, 7, 7, 0, 0, 783, 151, 1, 0, 0, 0, 784, 787, 3, 154, 77, 0, 785, 787, 3, 156, 78, 0, 786, 784, 1, 0, 0, 0, 786, 785, 1, 0, 0, 0, 787, 153, 1, 0, 0, 0, 788, 790, 7, 5, 0, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 5, 55, 0, 0, 792, 155, 1, 0, 0, 0, 793, 795, 7, 5, 0, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 54, 0, 0, 797, 157, 1, 0, 0, 0, 798, 799, 5, 53, 0, 0, 799, 159, 1, 0, 0, 0, 800, 801, 7, 8, 0, 0, 801, 161, 1, 0, 0, 0, 802, 803, 7, 9, 0, 0, 803, 804, 5, 114, 0, 0, 804, 805, 3, 164, 82, 0, 805, 806, 3, 166, 83, 0, 806, 163, 1, 0, 0, 0, 807, 808, 3, 28, 14, 0, 808, 165, 1, 0, 0, 0, 809, 810, 5, 74, 0, 0, 810, 815, 3, 168, 84, 0, 811, 812, 5, 62, 0, 0, 812, 814, 3, 168, 84, 0, 813, 811, 1, 0, 0, 0, 814, 817, 1, 0, 0, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 167, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 819, 3, 134, 67, 0, 819, 169, 1, 0, 0, 0, 75, 181, 191, 219, 234, 240, 249, 255, 268, 272, 283, 299, 307, 311, 318, 324, 331, 339, 347, 355, 359, 363, 368, 379, 384, 388, 402, 413, 419, 426, 435, 458, 466, 469, 476, 487, 494, 502, 516, 525, 536, 550, 564, 573, 581, 586, 594, 596, 601, 608, 615, 624, 631, 640, 645, 650, 660, 666, 674, 676, 687, 694, 705, 710, 712, 719, 727, 730, 753, 764, 775, 780, 786, 789, 794, 815] \ No newline at end of file +[4, 1, 147, 847, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 184, 8, 1, 10, 1, 12, 1, 187, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 196, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 224, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 237, 8, 7, 10, 7, 12, 7, 240, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 245, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 252, 8, 9, 10, 9, 12, 9, 255, 9, 9, 1, 10, 1, 10, 1, 10, 3, 10, 260, 8, 10, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 5, 13, 271, 8, 13, 10, 13, 12, 13, 274, 9, 13, 1, 13, 3, 13, 277, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 288, 8, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 302, 8, 19, 10, 19, 12, 19, 305, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 312, 8, 21, 1, 21, 1, 21, 3, 21, 316, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 321, 8, 22, 10, 22, 12, 22, 324, 9, 22, 1, 23, 1, 23, 1, 23, 3, 23, 329, 8, 23, 1, 24, 1, 24, 1, 24, 5, 24, 334, 8, 24, 10, 24, 12, 24, 337, 9, 24, 1, 25, 1, 25, 1, 25, 5, 25, 342, 8, 25, 10, 25, 12, 25, 345, 9, 25, 1, 26, 1, 26, 1, 26, 5, 26, 350, 8, 26, 10, 26, 12, 26, 353, 9, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 360, 8, 28, 1, 29, 1, 29, 3, 29, 364, 8, 29, 1, 30, 1, 30, 3, 30, 368, 8, 30, 1, 31, 1, 31, 1, 31, 3, 31, 373, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 382, 8, 33, 10, 33, 12, 33, 385, 9, 33, 1, 34, 1, 34, 3, 34, 389, 8, 34, 1, 34, 1, 34, 3, 34, 393, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 405, 8, 37, 10, 37, 12, 37, 408, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 418, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 424, 8, 39, 1, 40, 1, 40, 1, 40, 5, 40, 429, 8, 40, 10, 40, 12, 40, 432, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 440, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 463, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 469, 8, 48, 10, 48, 12, 48, 472, 9, 48, 3, 48, 474, 8, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 3, 50, 481, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 492, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 499, 8, 52, 1, 53, 1, 53, 1, 53, 1, 54, 4, 54, 505, 8, 54, 11, 54, 12, 54, 506, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 519, 8, 56, 10, 56, 12, 56, 522, 9, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 530, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 541, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 555, 8, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 562, 8, 63, 1, 63, 1, 63, 3, 63, 566, 8, 63, 1, 63, 1, 63, 3, 63, 570, 8, 63, 1, 63, 1, 63, 3, 63, 574, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 587, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 594, 8, 65, 10, 65, 12, 65, 597, 9, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 604, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 609, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 617, 8, 65, 10, 65, 12, 65, 620, 9, 65, 1, 66, 1, 66, 3, 66, 624, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 631, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 638, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 645, 8, 66, 10, 66, 12, 66, 648, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 654, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 661, 8, 66, 10, 66, 12, 66, 664, 9, 66, 1, 66, 1, 66, 3, 66, 668, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 673, 8, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 683, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 689, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 697, 8, 69, 10, 69, 12, 69, 700, 9, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 710, 8, 70, 1, 70, 1, 70, 1, 70, 5, 70, 715, 8, 70, 10, 70, 12, 70, 718, 9, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 726, 8, 71, 10, 71, 12, 71, 729, 9, 71, 1, 71, 1, 71, 3, 71, 733, 8, 71, 3, 71, 735, 8, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 3, 72, 742, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 748, 8, 73, 10, 73, 12, 73, 751, 9, 73, 3, 73, 753, 8, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 3, 75, 763, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 778, 8, 76, 10, 76, 12, 76, 781, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 789, 8, 76, 10, 76, 12, 76, 792, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 800, 8, 76, 10, 76, 12, 76, 803, 9, 76, 1, 76, 1, 76, 3, 76, 807, 8, 76, 1, 77, 1, 77, 1, 78, 1, 78, 3, 78, 813, 8, 78, 1, 79, 3, 79, 816, 8, 79, 1, 79, 1, 79, 1, 80, 3, 80, 821, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 840, 8, 85, 10, 85, 12, 85, 843, 9, 85, 1, 86, 1, 86, 1, 86, 0, 5, 2, 112, 130, 138, 140, 87, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 0, 11, 2, 0, 53, 53, 107, 107, 1, 0, 101, 102, 2, 0, 57, 57, 63, 63, 2, 0, 66, 66, 69, 69, 2, 0, 38, 38, 53, 53, 1, 0, 117, 118, 1, 0, 87, 88, 1, 0, 89, 91, 2, 0, 65, 65, 78, 78, 2, 0, 80, 80, 82, 86, 2, 0, 23, 23, 25, 26, 883, 0, 174, 1, 0, 0, 0, 2, 177, 1, 0, 0, 0, 4, 195, 1, 0, 0, 0, 6, 223, 1, 0, 0, 0, 8, 225, 1, 0, 0, 0, 10, 228, 1, 0, 0, 0, 12, 230, 1, 0, 0, 0, 14, 233, 1, 0, 0, 0, 16, 244, 1, 0, 0, 0, 18, 248, 1, 0, 0, 0, 20, 256, 1, 0, 0, 0, 22, 261, 1, 0, 0, 0, 24, 264, 1, 0, 0, 0, 26, 267, 1, 0, 0, 0, 28, 287, 1, 0, 0, 0, 30, 289, 1, 0, 0, 0, 32, 291, 1, 0, 0, 0, 34, 293, 1, 0, 0, 0, 36, 295, 1, 0, 0, 0, 38, 297, 1, 0, 0, 0, 40, 306, 1, 0, 0, 0, 42, 309, 1, 0, 0, 0, 44, 317, 1, 0, 0, 0, 46, 325, 1, 0, 0, 0, 48, 330, 1, 0, 0, 0, 50, 338, 1, 0, 0, 0, 52, 346, 1, 0, 0, 0, 54, 354, 1, 0, 0, 0, 56, 359, 1, 0, 0, 0, 58, 363, 1, 0, 0, 0, 60, 367, 1, 0, 0, 0, 62, 372, 1, 0, 0, 0, 64, 374, 1, 0, 0, 0, 66, 377, 1, 0, 0, 0, 68, 386, 1, 0, 0, 0, 70, 394, 1, 0, 0, 0, 72, 397, 1, 0, 0, 0, 74, 400, 1, 0, 0, 0, 76, 417, 1, 0, 0, 0, 78, 419, 1, 0, 0, 0, 80, 425, 1, 0, 0, 0, 82, 433, 1, 0, 0, 0, 84, 439, 1, 0, 0, 0, 86, 441, 1, 0, 0, 0, 88, 445, 1, 0, 0, 0, 90, 448, 1, 0, 0, 0, 92, 451, 1, 0, 0, 0, 94, 455, 1, 0, 0, 0, 96, 458, 1, 0, 0, 0, 98, 475, 1, 0, 0, 0, 100, 480, 1, 0, 0, 0, 102, 484, 1, 0, 0, 0, 104, 487, 1, 0, 0, 0, 106, 500, 1, 0, 0, 0, 108, 504, 1, 0, 0, 0, 110, 508, 1, 0, 0, 0, 112, 512, 1, 0, 0, 0, 114, 523, 1, 0, 0, 0, 116, 525, 1, 0, 0, 0, 118, 536, 1, 0, 0, 0, 120, 545, 1, 0, 0, 0, 122, 550, 1, 0, 0, 0, 124, 556, 1, 0, 0, 0, 126, 559, 1, 0, 0, 0, 128, 577, 1, 0, 0, 0, 130, 608, 1, 0, 0, 0, 132, 667, 1, 0, 0, 0, 134, 669, 1, 0, 0, 0, 136, 682, 1, 0, 0, 0, 138, 688, 1, 0, 0, 0, 140, 709, 1, 0, 0, 0, 142, 719, 1, 0, 0, 0, 144, 741, 1, 0, 0, 0, 146, 743, 1, 0, 0, 0, 148, 756, 1, 0, 0, 0, 150, 762, 1, 0, 0, 0, 152, 806, 1, 0, 0, 0, 154, 808, 1, 0, 0, 0, 156, 812, 1, 0, 0, 0, 158, 815, 1, 0, 0, 0, 160, 820, 1, 0, 0, 0, 162, 824, 1, 0, 0, 0, 164, 826, 1, 0, 0, 0, 166, 828, 1, 0, 0, 0, 168, 833, 1, 0, 0, 0, 170, 835, 1, 0, 0, 0, 172, 844, 1, 0, 0, 0, 174, 175, 3, 2, 1, 0, 175, 176, 5, 0, 0, 1, 176, 1, 1, 0, 0, 0, 177, 178, 6, 1, -1, 0, 178, 179, 3, 4, 2, 0, 179, 185, 1, 0, 0, 0, 180, 181, 10, 1, 0, 0, 181, 182, 5, 52, 0, 0, 182, 184, 3, 6, 3, 0, 183, 180, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 183, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 3, 1, 0, 0, 0, 187, 185, 1, 0, 0, 0, 188, 196, 3, 22, 11, 0, 189, 196, 3, 12, 6, 0, 190, 196, 3, 94, 47, 0, 191, 192, 4, 2, 1, 0, 192, 196, 3, 24, 12, 0, 193, 194, 4, 2, 2, 0, 194, 196, 3, 90, 45, 0, 195, 188, 1, 0, 0, 0, 195, 189, 1, 0, 0, 0, 195, 190, 1, 0, 0, 0, 195, 191, 1, 0, 0, 0, 195, 193, 1, 0, 0, 0, 196, 5, 1, 0, 0, 0, 197, 224, 3, 40, 20, 0, 198, 224, 3, 8, 4, 0, 199, 224, 3, 70, 35, 0, 200, 224, 3, 64, 32, 0, 201, 224, 3, 42, 21, 0, 202, 224, 3, 66, 33, 0, 203, 224, 3, 72, 36, 0, 204, 224, 3, 74, 37, 0, 205, 224, 3, 78, 39, 0, 206, 224, 3, 86, 43, 0, 207, 224, 3, 96, 48, 0, 208, 224, 3, 88, 44, 0, 209, 224, 3, 166, 83, 0, 210, 224, 3, 104, 52, 0, 211, 224, 3, 118, 59, 0, 212, 224, 3, 102, 51, 0, 213, 224, 3, 106, 53, 0, 214, 224, 3, 116, 58, 0, 215, 216, 4, 3, 3, 0, 216, 224, 3, 122, 61, 0, 217, 218, 4, 3, 4, 0, 218, 224, 3, 120, 60, 0, 219, 220, 4, 3, 5, 0, 220, 224, 3, 124, 62, 0, 221, 222, 4, 3, 6, 0, 222, 224, 3, 126, 63, 0, 223, 197, 1, 0, 0, 0, 223, 198, 1, 0, 0, 0, 223, 199, 1, 0, 0, 0, 223, 200, 1, 0, 0, 0, 223, 201, 1, 0, 0, 0, 223, 202, 1, 0, 0, 0, 223, 203, 1, 0, 0, 0, 223, 204, 1, 0, 0, 0, 223, 205, 1, 0, 0, 0, 223, 206, 1, 0, 0, 0, 223, 207, 1, 0, 0, 0, 223, 208, 1, 0, 0, 0, 223, 209, 1, 0, 0, 0, 223, 210, 1, 0, 0, 0, 223, 211, 1, 0, 0, 0, 223, 212, 1, 0, 0, 0, 223, 213, 1, 0, 0, 0, 223, 214, 1, 0, 0, 0, 223, 215, 1, 0, 0, 0, 223, 217, 1, 0, 0, 0, 223, 219, 1, 0, 0, 0, 223, 221, 1, 0, 0, 0, 224, 7, 1, 0, 0, 0, 225, 226, 5, 17, 0, 0, 226, 227, 3, 130, 65, 0, 227, 9, 1, 0, 0, 0, 228, 229, 3, 54, 27, 0, 229, 11, 1, 0, 0, 0, 230, 231, 5, 13, 0, 0, 231, 232, 3, 14, 7, 0, 232, 13, 1, 0, 0, 0, 233, 238, 3, 16, 8, 0, 234, 235, 5, 62, 0, 0, 235, 237, 3, 16, 8, 0, 236, 234, 1, 0, 0, 0, 237, 240, 1, 0, 0, 0, 238, 236, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 15, 1, 0, 0, 0, 240, 238, 1, 0, 0, 0, 241, 242, 3, 48, 24, 0, 242, 243, 5, 58, 0, 0, 243, 245, 1, 0, 0, 0, 244, 241, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 247, 3, 130, 65, 0, 247, 17, 1, 0, 0, 0, 248, 253, 3, 20, 10, 0, 249, 250, 5, 62, 0, 0, 250, 252, 3, 20, 10, 0, 251, 249, 1, 0, 0, 0, 252, 255, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 19, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, 259, 3, 48, 24, 0, 257, 258, 5, 58, 0, 0, 258, 260, 3, 130, 65, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 21, 1, 0, 0, 0, 261, 262, 5, 19, 0, 0, 262, 263, 3, 26, 13, 0, 263, 23, 1, 0, 0, 0, 264, 265, 5, 20, 0, 0, 265, 266, 3, 26, 13, 0, 266, 25, 1, 0, 0, 0, 267, 272, 3, 28, 14, 0, 268, 269, 5, 62, 0, 0, 269, 271, 3, 28, 14, 0, 270, 268, 1, 0, 0, 0, 271, 274, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 276, 1, 0, 0, 0, 274, 272, 1, 0, 0, 0, 275, 277, 3, 38, 19, 0, 276, 275, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 27, 1, 0, 0, 0, 278, 279, 3, 30, 15, 0, 279, 280, 5, 61, 0, 0, 280, 281, 3, 34, 17, 0, 281, 288, 1, 0, 0, 0, 282, 283, 3, 34, 17, 0, 283, 284, 5, 60, 0, 0, 284, 285, 3, 32, 16, 0, 285, 288, 1, 0, 0, 0, 286, 288, 3, 36, 18, 0, 287, 278, 1, 0, 0, 0, 287, 282, 1, 0, 0, 0, 287, 286, 1, 0, 0, 0, 288, 29, 1, 0, 0, 0, 289, 290, 5, 107, 0, 0, 290, 31, 1, 0, 0, 0, 291, 292, 5, 107, 0, 0, 292, 33, 1, 0, 0, 0, 293, 294, 5, 107, 0, 0, 294, 35, 1, 0, 0, 0, 295, 296, 7, 0, 0, 0, 296, 37, 1, 0, 0, 0, 297, 298, 5, 106, 0, 0, 298, 303, 5, 107, 0, 0, 299, 300, 5, 62, 0, 0, 300, 302, 5, 107, 0, 0, 301, 299, 1, 0, 0, 0, 302, 305, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 39, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 306, 307, 5, 9, 0, 0, 307, 308, 3, 14, 7, 0, 308, 41, 1, 0, 0, 0, 309, 311, 5, 16, 0, 0, 310, 312, 3, 44, 22, 0, 311, 310, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 315, 1, 0, 0, 0, 313, 314, 5, 59, 0, 0, 314, 316, 3, 14, 7, 0, 315, 313, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 43, 1, 0, 0, 0, 317, 322, 3, 46, 23, 0, 318, 319, 5, 62, 0, 0, 319, 321, 3, 46, 23, 0, 320, 318, 1, 0, 0, 0, 321, 324, 1, 0, 0, 0, 322, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 45, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 325, 328, 3, 16, 8, 0, 326, 327, 5, 17, 0, 0, 327, 329, 3, 130, 65, 0, 328, 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 47, 1, 0, 0, 0, 330, 335, 3, 62, 31, 0, 331, 332, 5, 64, 0, 0, 332, 334, 3, 62, 31, 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, 49, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 343, 3, 56, 28, 0, 339, 340, 5, 64, 0, 0, 340, 342, 3, 56, 28, 0, 341, 339, 1, 0, 0, 0, 342, 345, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 343, 344, 1, 0, 0, 0, 344, 51, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 346, 351, 3, 50, 25, 0, 347, 348, 5, 62, 0, 0, 348, 350, 3, 50, 25, 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, 53, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 355, 7, 1, 0, 0, 355, 55, 1, 0, 0, 0, 356, 360, 5, 136, 0, 0, 357, 360, 3, 58, 29, 0, 358, 360, 3, 60, 30, 0, 359, 356, 1, 0, 0, 0, 359, 357, 1, 0, 0, 0, 359, 358, 1, 0, 0, 0, 360, 57, 1, 0, 0, 0, 361, 364, 5, 76, 0, 0, 362, 364, 5, 95, 0, 0, 363, 361, 1, 0, 0, 0, 363, 362, 1, 0, 0, 0, 364, 59, 1, 0, 0, 0, 365, 368, 5, 94, 0, 0, 366, 368, 5, 96, 0, 0, 367, 365, 1, 0, 0, 0, 367, 366, 1, 0, 0, 0, 368, 61, 1, 0, 0, 0, 369, 373, 3, 54, 27, 0, 370, 373, 3, 58, 29, 0, 371, 373, 3, 60, 30, 0, 372, 369, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 63, 1, 0, 0, 0, 374, 375, 5, 11, 0, 0, 375, 376, 3, 152, 76, 0, 376, 65, 1, 0, 0, 0, 377, 378, 5, 15, 0, 0, 378, 383, 3, 68, 34, 0, 379, 380, 5, 62, 0, 0, 380, 382, 3, 68, 34, 0, 381, 379, 1, 0, 0, 0, 382, 385, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 383, 384, 1, 0, 0, 0, 384, 67, 1, 0, 0, 0, 385, 383, 1, 0, 0, 0, 386, 388, 3, 130, 65, 0, 387, 389, 7, 2, 0, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 391, 5, 73, 0, 0, 391, 393, 7, 3, 0, 0, 392, 390, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 69, 1, 0, 0, 0, 394, 395, 5, 30, 0, 0, 395, 396, 3, 52, 26, 0, 396, 71, 1, 0, 0, 0, 397, 398, 5, 29, 0, 0, 398, 399, 3, 52, 26, 0, 399, 73, 1, 0, 0, 0, 400, 401, 5, 32, 0, 0, 401, 406, 3, 76, 38, 0, 402, 403, 5, 62, 0, 0, 403, 405, 3, 76, 38, 0, 404, 402, 1, 0, 0, 0, 405, 408, 1, 0, 0, 0, 406, 404, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 75, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 409, 410, 3, 50, 25, 0, 410, 411, 5, 140, 0, 0, 411, 412, 3, 50, 25, 0, 412, 418, 1, 0, 0, 0, 413, 414, 3, 50, 25, 0, 414, 415, 5, 58, 0, 0, 415, 416, 3, 50, 25, 0, 416, 418, 1, 0, 0, 0, 417, 409, 1, 0, 0, 0, 417, 413, 1, 0, 0, 0, 418, 77, 1, 0, 0, 0, 419, 420, 5, 8, 0, 0, 420, 421, 3, 140, 70, 0, 421, 423, 3, 162, 81, 0, 422, 424, 3, 80, 40, 0, 423, 422, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 79, 1, 0, 0, 0, 425, 430, 3, 82, 41, 0, 426, 427, 5, 62, 0, 0, 427, 429, 3, 82, 41, 0, 428, 426, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 81, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 434, 3, 54, 27, 0, 434, 435, 5, 58, 0, 0, 435, 436, 3, 152, 76, 0, 436, 83, 1, 0, 0, 0, 437, 438, 5, 79, 0, 0, 438, 440, 3, 146, 73, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 85, 1, 0, 0, 0, 441, 442, 5, 10, 0, 0, 442, 443, 3, 140, 70, 0, 443, 444, 3, 162, 81, 0, 444, 87, 1, 0, 0, 0, 445, 446, 5, 28, 0, 0, 446, 447, 3, 48, 24, 0, 447, 89, 1, 0, 0, 0, 448, 449, 5, 6, 0, 0, 449, 450, 3, 92, 46, 0, 450, 91, 1, 0, 0, 0, 451, 452, 5, 99, 0, 0, 452, 453, 3, 2, 1, 0, 453, 454, 5, 100, 0, 0, 454, 93, 1, 0, 0, 0, 455, 456, 5, 33, 0, 0, 456, 457, 5, 144, 0, 0, 457, 95, 1, 0, 0, 0, 458, 459, 5, 5, 0, 0, 459, 462, 3, 98, 49, 0, 460, 461, 5, 74, 0, 0, 461, 463, 3, 50, 25, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 473, 1, 0, 0, 0, 464, 465, 5, 79, 0, 0, 465, 470, 3, 100, 50, 0, 466, 467, 5, 62, 0, 0, 467, 469, 3, 100, 50, 0, 468, 466, 1, 0, 0, 0, 469, 472, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 474, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 464, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 97, 1, 0, 0, 0, 475, 476, 7, 4, 0, 0, 476, 99, 1, 0, 0, 0, 477, 478, 3, 50, 25, 0, 478, 479, 5, 58, 0, 0, 479, 481, 1, 0, 0, 0, 480, 477, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 483, 3, 50, 25, 0, 483, 101, 1, 0, 0, 0, 484, 485, 5, 14, 0, 0, 485, 486, 3, 152, 76, 0, 486, 103, 1, 0, 0, 0, 487, 488, 5, 4, 0, 0, 488, 491, 3, 48, 24, 0, 489, 490, 5, 74, 0, 0, 490, 492, 3, 48, 24, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 498, 1, 0, 0, 0, 493, 494, 5, 140, 0, 0, 494, 495, 3, 48, 24, 0, 495, 496, 5, 62, 0, 0, 496, 497, 3, 48, 24, 0, 497, 499, 1, 0, 0, 0, 498, 493, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 105, 1, 0, 0, 0, 500, 501, 5, 21, 0, 0, 501, 502, 3, 108, 54, 0, 502, 107, 1, 0, 0, 0, 503, 505, 3, 110, 55, 0, 504, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 109, 1, 0, 0, 0, 508, 509, 5, 99, 0, 0, 509, 510, 3, 112, 56, 0, 510, 511, 5, 100, 0, 0, 511, 111, 1, 0, 0, 0, 512, 513, 6, 56, -1, 0, 513, 514, 3, 114, 57, 0, 514, 520, 1, 0, 0, 0, 515, 516, 10, 1, 0, 0, 516, 517, 5, 52, 0, 0, 517, 519, 3, 114, 57, 0, 518, 515, 1, 0, 0, 0, 519, 522, 1, 0, 0, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 113, 1, 0, 0, 0, 522, 520, 1, 0, 0, 0, 523, 524, 3, 6, 3, 0, 524, 115, 1, 0, 0, 0, 525, 529, 5, 12, 0, 0, 526, 527, 3, 48, 24, 0, 527, 528, 5, 58, 0, 0, 528, 530, 1, 0, 0, 0, 529, 526, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 3, 152, 76, 0, 532, 533, 5, 74, 0, 0, 533, 534, 3, 18, 9, 0, 534, 535, 3, 84, 42, 0, 535, 117, 1, 0, 0, 0, 536, 540, 5, 7, 0, 0, 537, 538, 3, 48, 24, 0, 538, 539, 5, 58, 0, 0, 539, 541, 1, 0, 0, 0, 540, 537, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 3, 140, 70, 0, 543, 544, 3, 84, 42, 0, 544, 119, 1, 0, 0, 0, 545, 546, 5, 27, 0, 0, 546, 547, 3, 28, 14, 0, 547, 548, 5, 74, 0, 0, 548, 549, 3, 52, 26, 0, 549, 121, 1, 0, 0, 0, 550, 551, 5, 18, 0, 0, 551, 554, 3, 44, 22, 0, 552, 553, 5, 59, 0, 0, 553, 555, 3, 14, 7, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 123, 1, 0, 0, 0, 556, 557, 5, 31, 0, 0, 557, 558, 3, 52, 26, 0, 558, 125, 1, 0, 0, 0, 559, 561, 5, 22, 0, 0, 560, 562, 3, 128, 64, 0, 561, 560, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 565, 1, 0, 0, 0, 563, 564, 5, 116, 0, 0, 564, 566, 3, 48, 24, 0, 565, 563, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 568, 5, 114, 0, 0, 568, 570, 3, 14, 7, 0, 569, 567, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 573, 1, 0, 0, 0, 571, 572, 5, 115, 0, 0, 572, 574, 3, 48, 24, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 3, 84, 42, 0, 576, 127, 1, 0, 0, 0, 577, 578, 7, 5, 0, 0, 578, 129, 1, 0, 0, 0, 579, 580, 6, 65, -1, 0, 580, 581, 5, 71, 0, 0, 581, 609, 3, 130, 65, 8, 582, 609, 3, 136, 68, 0, 583, 609, 3, 132, 66, 0, 584, 586, 3, 136, 68, 0, 585, 587, 5, 71, 0, 0, 586, 585, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 5, 67, 0, 0, 589, 590, 5, 99, 0, 0, 590, 595, 3, 136, 68, 0, 591, 592, 5, 62, 0, 0, 592, 594, 3, 136, 68, 0, 593, 591, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 598, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 598, 599, 5, 100, 0, 0, 599, 609, 1, 0, 0, 0, 600, 601, 3, 136, 68, 0, 601, 603, 5, 68, 0, 0, 602, 604, 5, 71, 0, 0, 603, 602, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 5, 72, 0, 0, 606, 609, 1, 0, 0, 0, 607, 609, 3, 134, 67, 0, 608, 579, 1, 0, 0, 0, 608, 582, 1, 0, 0, 0, 608, 583, 1, 0, 0, 0, 608, 584, 1, 0, 0, 0, 608, 600, 1, 0, 0, 0, 608, 607, 1, 0, 0, 0, 609, 618, 1, 0, 0, 0, 610, 611, 10, 5, 0, 0, 611, 612, 5, 56, 0, 0, 612, 617, 3, 130, 65, 6, 613, 614, 10, 4, 0, 0, 614, 615, 5, 75, 0, 0, 615, 617, 3, 130, 65, 5, 616, 610, 1, 0, 0, 0, 616, 613, 1, 0, 0, 0, 617, 620, 1, 0, 0, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 131, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 623, 3, 136, 68, 0, 622, 624, 5, 71, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 70, 0, 0, 626, 627, 3, 162, 81, 0, 627, 668, 1, 0, 0, 0, 628, 630, 3, 136, 68, 0, 629, 631, 5, 71, 0, 0, 630, 629, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 5, 77, 0, 0, 633, 634, 3, 162, 81, 0, 634, 668, 1, 0, 0, 0, 635, 637, 3, 136, 68, 0, 636, 638, 5, 71, 0, 0, 637, 636, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 5, 70, 0, 0, 640, 641, 5, 99, 0, 0, 641, 646, 3, 162, 81, 0, 642, 643, 5, 62, 0, 0, 643, 645, 3, 162, 81, 0, 644, 642, 1, 0, 0, 0, 645, 648, 1, 0, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 649, 1, 0, 0, 0, 648, 646, 1, 0, 0, 0, 649, 650, 5, 100, 0, 0, 650, 668, 1, 0, 0, 0, 651, 653, 3, 136, 68, 0, 652, 654, 5, 71, 0, 0, 653, 652, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 5, 77, 0, 0, 656, 657, 5, 99, 0, 0, 657, 662, 3, 162, 81, 0, 658, 659, 5, 62, 0, 0, 659, 661, 3, 162, 81, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 665, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 666, 5, 100, 0, 0, 666, 668, 1, 0, 0, 0, 667, 621, 1, 0, 0, 0, 667, 628, 1, 0, 0, 0, 667, 635, 1, 0, 0, 0, 667, 651, 1, 0, 0, 0, 668, 133, 1, 0, 0, 0, 669, 672, 3, 48, 24, 0, 670, 671, 5, 60, 0, 0, 671, 673, 3, 10, 5, 0, 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 5, 61, 0, 0, 675, 676, 3, 152, 76, 0, 676, 135, 1, 0, 0, 0, 677, 683, 3, 138, 69, 0, 678, 679, 3, 138, 69, 0, 679, 680, 3, 164, 82, 0, 680, 681, 3, 138, 69, 0, 681, 683, 1, 0, 0, 0, 682, 677, 1, 0, 0, 0, 682, 678, 1, 0, 0, 0, 683, 137, 1, 0, 0, 0, 684, 685, 6, 69, -1, 0, 685, 689, 3, 140, 70, 0, 686, 687, 7, 6, 0, 0, 687, 689, 3, 138, 69, 3, 688, 684, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 689, 698, 1, 0, 0, 0, 690, 691, 10, 2, 0, 0, 691, 692, 7, 7, 0, 0, 692, 697, 3, 138, 69, 3, 693, 694, 10, 1, 0, 0, 694, 695, 7, 6, 0, 0, 695, 697, 3, 138, 69, 2, 696, 690, 1, 0, 0, 0, 696, 693, 1, 0, 0, 0, 697, 700, 1, 0, 0, 0, 698, 696, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 139, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 701, 702, 6, 70, -1, 0, 702, 710, 3, 152, 76, 0, 703, 710, 3, 48, 24, 0, 704, 710, 3, 142, 71, 0, 705, 706, 5, 99, 0, 0, 706, 707, 3, 130, 65, 0, 707, 708, 5, 100, 0, 0, 708, 710, 1, 0, 0, 0, 709, 701, 1, 0, 0, 0, 709, 703, 1, 0, 0, 0, 709, 704, 1, 0, 0, 0, 709, 705, 1, 0, 0, 0, 710, 716, 1, 0, 0, 0, 711, 712, 10, 1, 0, 0, 712, 713, 5, 60, 0, 0, 713, 715, 3, 10, 5, 0, 714, 711, 1, 0, 0, 0, 715, 718, 1, 0, 0, 0, 716, 714, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 141, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 719, 720, 3, 144, 72, 0, 720, 734, 5, 99, 0, 0, 721, 735, 5, 89, 0, 0, 722, 727, 3, 130, 65, 0, 723, 724, 5, 62, 0, 0, 724, 726, 3, 130, 65, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 732, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 731, 5, 62, 0, 0, 731, 733, 3, 146, 73, 0, 732, 730, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 735, 1, 0, 0, 0, 734, 721, 1, 0, 0, 0, 734, 722, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 5, 100, 0, 0, 737, 143, 1, 0, 0, 0, 738, 742, 3, 62, 31, 0, 739, 742, 5, 66, 0, 0, 740, 742, 5, 69, 0, 0, 741, 738, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 741, 740, 1, 0, 0, 0, 742, 145, 1, 0, 0, 0, 743, 752, 5, 92, 0, 0, 744, 749, 3, 148, 74, 0, 745, 746, 5, 62, 0, 0, 746, 748, 3, 148, 74, 0, 747, 745, 1, 0, 0, 0, 748, 751, 1, 0, 0, 0, 749, 747, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 753, 1, 0, 0, 0, 751, 749, 1, 0, 0, 0, 752, 744, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 5, 93, 0, 0, 755, 147, 1, 0, 0, 0, 756, 757, 3, 162, 81, 0, 757, 758, 5, 61, 0, 0, 758, 759, 3, 150, 75, 0, 759, 149, 1, 0, 0, 0, 760, 763, 3, 152, 76, 0, 761, 763, 3, 146, 73, 0, 762, 760, 1, 0, 0, 0, 762, 761, 1, 0, 0, 0, 763, 151, 1, 0, 0, 0, 764, 807, 5, 72, 0, 0, 765, 766, 3, 160, 80, 0, 766, 767, 5, 101, 0, 0, 767, 807, 1, 0, 0, 0, 768, 807, 3, 158, 79, 0, 769, 807, 3, 160, 80, 0, 770, 807, 3, 154, 77, 0, 771, 807, 3, 58, 29, 0, 772, 807, 3, 162, 81, 0, 773, 774, 5, 97, 0, 0, 774, 779, 3, 156, 78, 0, 775, 776, 5, 62, 0, 0, 776, 778, 3, 156, 78, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 98, 0, 0, 783, 807, 1, 0, 0, 0, 784, 785, 5, 97, 0, 0, 785, 790, 3, 154, 77, 0, 786, 787, 5, 62, 0, 0, 787, 789, 3, 154, 77, 0, 788, 786, 1, 0, 0, 0, 789, 792, 1, 0, 0, 0, 790, 788, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 793, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 793, 794, 5, 98, 0, 0, 794, 807, 1, 0, 0, 0, 795, 796, 5, 97, 0, 0, 796, 801, 3, 162, 81, 0, 797, 798, 5, 62, 0, 0, 798, 800, 3, 162, 81, 0, 799, 797, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 804, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 804, 805, 5, 98, 0, 0, 805, 807, 1, 0, 0, 0, 806, 764, 1, 0, 0, 0, 806, 765, 1, 0, 0, 0, 806, 768, 1, 0, 0, 0, 806, 769, 1, 0, 0, 0, 806, 770, 1, 0, 0, 0, 806, 771, 1, 0, 0, 0, 806, 772, 1, 0, 0, 0, 806, 773, 1, 0, 0, 0, 806, 784, 1, 0, 0, 0, 806, 795, 1, 0, 0, 0, 807, 153, 1, 0, 0, 0, 808, 809, 7, 8, 0, 0, 809, 155, 1, 0, 0, 0, 810, 813, 3, 158, 79, 0, 811, 813, 3, 160, 80, 0, 812, 810, 1, 0, 0, 0, 812, 811, 1, 0, 0, 0, 813, 157, 1, 0, 0, 0, 814, 816, 7, 6, 0, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 818, 5, 55, 0, 0, 818, 159, 1, 0, 0, 0, 819, 821, 7, 6, 0, 0, 820, 819, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 5, 54, 0, 0, 823, 161, 1, 0, 0, 0, 824, 825, 5, 53, 0, 0, 825, 163, 1, 0, 0, 0, 826, 827, 7, 9, 0, 0, 827, 165, 1, 0, 0, 0, 828, 829, 7, 10, 0, 0, 829, 830, 5, 122, 0, 0, 830, 831, 3, 168, 84, 0, 831, 832, 3, 170, 85, 0, 832, 167, 1, 0, 0, 0, 833, 834, 3, 28, 14, 0, 834, 169, 1, 0, 0, 0, 835, 836, 5, 74, 0, 0, 836, 841, 3, 172, 86, 0, 837, 838, 5, 62, 0, 0, 838, 840, 3, 172, 86, 0, 839, 837, 1, 0, 0, 0, 840, 843, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 171, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 845, 3, 136, 68, 0, 845, 173, 1, 0, 0, 0, 80, 185, 195, 223, 238, 244, 253, 259, 272, 276, 287, 303, 311, 315, 322, 328, 335, 343, 351, 359, 363, 367, 372, 383, 388, 392, 406, 417, 423, 430, 439, 462, 470, 473, 480, 491, 498, 506, 520, 529, 540, 554, 561, 565, 569, 573, 586, 595, 603, 608, 616, 618, 623, 630, 637, 646, 653, 662, 667, 672, 682, 688, 696, 698, 709, 716, 727, 732, 734, 741, 749, 752, 762, 779, 790, 801, 806, 812, 815, 820, 841] \ 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 c2ee3c5a6bfba..e7c5ae132a199 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 @@ -45,14 +45,16 @@ public class EsqlBaseParser extends ParserConfig { LP=99, RP=100, UNQUOTED_IDENTIFIER=101, QUOTED_IDENTIFIER=102, EXPR_LINE_COMMENT=103, EXPR_MULTILINE_COMMENT=104, EXPR_WS=105, METADATA=106, UNQUOTED_SOURCE=107, FROM_LINE_COMMENT=108, FROM_MULTILINE_COMMENT=109, FROM_WS=110, FORK_WS=111, - FORK_LINE_COMMENT=112, FORK_MULTILINE_COMMENT=113, JOIN=114, USING=115, - JOIN_LINE_COMMENT=116, JOIN_MULTILINE_COMMENT=117, JOIN_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, MVEXPAND_LINE_COMMENT=125, - MVEXPAND_MULTILINE_COMMENT=126, MVEXPAND_WS=127, ID_PATTERN=128, PROJECT_LINE_COMMENT=129, - PROJECT_MULTILINE_COMMENT=130, PROJECT_WS=131, AS=132, RENAME_LINE_COMMENT=133, - RENAME_MULTILINE_COMMENT=134, RENAME_WS=135, INFO=136, SHOW_LINE_COMMENT=137, - SHOW_MULTILINE_COMMENT=138, SHOW_WS=139; + FORK_LINE_COMMENT=112, FORK_MULTILINE_COMMENT=113, GROUP=114, SCORE=115, + KEY=116, RRF=117, LINEAR=118, FUSE_LINE_COMMENT=119, FUSE_MULTILINE_COMMENT=120, + FUSE_WS=121, JOIN=122, USING=123, JOIN_LINE_COMMENT=124, JOIN_MULTILINE_COMMENT=125, + JOIN_WS=126, LOOKUP_LINE_COMMENT=127, LOOKUP_MULTILINE_COMMENT=128, LOOKUP_WS=129, + LOOKUP_FIELD_LINE_COMMENT=130, LOOKUP_FIELD_MULTILINE_COMMENT=131, LOOKUP_FIELD_WS=132, + MVEXPAND_LINE_COMMENT=133, MVEXPAND_MULTILINE_COMMENT=134, MVEXPAND_WS=135, + ID_PATTERN=136, PROJECT_LINE_COMMENT=137, PROJECT_MULTILINE_COMMENT=138, + PROJECT_WS=139, AS=140, RENAME_LINE_COMMENT=141, RENAME_MULTILINE_COMMENT=142, + RENAME_WS=143, INFO=144, SHOW_LINE_COMMENT=145, SHOW_MULTILINE_COMMENT=146, + SHOW_WS=147; public static final int RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3, RULE_whereCommand = 4, RULE_dataType = 5, RULE_rowCommand = 6, RULE_fields = 7, @@ -74,14 +76,14 @@ public class EsqlBaseParser extends ParserConfig { RULE_forkSubQueries = 54, RULE_forkSubQuery = 55, RULE_forkSubQueryCommand = 56, RULE_forkSubQueryProcessingCommand = 57, RULE_rerankCommand = 58, RULE_completionCommand = 59, RULE_lookupCommand = 60, RULE_inlinestatsCommand = 61, RULE_insistCommand = 62, - RULE_fuseCommand = 63, RULE_booleanExpression = 64, RULE_regexBooleanExpression = 65, - RULE_matchBooleanExpression = 66, RULE_valueExpression = 67, RULE_operatorExpression = 68, - RULE_primaryExpression = 69, RULE_functionExpression = 70, RULE_functionName = 71, - RULE_mapExpression = 72, RULE_entryExpression = 73, RULE_constant = 74, - RULE_booleanValue = 75, RULE_numericValue = 76, RULE_decimalValue = 77, - RULE_integerValue = 78, RULE_string = 79, RULE_comparisonOperator = 80, - RULE_joinCommand = 81, RULE_joinTarget = 82, RULE_joinCondition = 83, - RULE_joinPredicate = 84; + RULE_fuseCommand = 63, RULE_fuseMethod = 64, RULE_booleanExpression = 65, + RULE_regexBooleanExpression = 66, RULE_matchBooleanExpression = 67, RULE_valueExpression = 68, + RULE_operatorExpression = 69, RULE_primaryExpression = 70, RULE_functionExpression = 71, + RULE_functionName = 72, RULE_mapExpression = 73, RULE_entryExpression = 74, + RULE_mapValue = 75, RULE_constant = 76, RULE_booleanValue = 77, RULE_numericValue = 78, + RULE_decimalValue = 79, RULE_integerValue = 80, RULE_string = 81, RULE_comparisonOperator = 82, + RULE_joinCommand = 83, RULE_joinTarget = 84, RULE_joinCondition = 85, + RULE_joinPredicate = 86; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", @@ -99,11 +101,11 @@ private static String[] makeRuleNames() { "forkCommand", "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand", "rerankCommand", "completionCommand", "lookupCommand", "inlinestatsCommand", "insistCommand", "fuseCommand", - "booleanExpression", "regexBooleanExpression", "matchBooleanExpression", + "fuseMethod", "booleanExpression", "regexBooleanExpression", "matchBooleanExpression", "valueExpression", "operatorExpression", "primaryExpression", "functionExpression", - "functionName", "mapExpression", "entryExpression", "constant", "booleanValue", - "numericValue", "decimalValue", "integerValue", "string", "comparisonOperator", - "joinCommand", "joinTarget", "joinCondition", "joinPredicate" + "functionName", "mapExpression", "entryExpression", "mapValue", "constant", + "booleanValue", "numericValue", "decimalValue", "integerValue", "string", + "comparisonOperator", "joinCommand", "joinTarget", "joinCondition", "joinPredicate" }; } public static final String[] ruleNames = makeRuleNames(); @@ -122,7 +124,8 @@ private static String[] makeLiteralNames() { "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", "'??'", null, null, null, "']'", null, "')'", null, null, null, null, null, "'metadata'", null, null, - null, null, null, null, null, "'join'", "'USING'", null, null, null, + null, null, null, null, null, "'group'", "'score'", "'key'", "'rrf'", + "'linear'", null, null, null, "'join'", "'USING'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, "'as'", null, null, null, "'info'" }; @@ -150,13 +153,14 @@ private static String[] makeSymbolicNames() { "LP", "RP", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "FORK_WS", "FORK_LINE_COMMENT", - "FORK_MULTILINE_COMMENT", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", - "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", - "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", - "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", - "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", - "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", - "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" + "FORK_MULTILINE_COMMENT", "GROUP", "SCORE", "KEY", "RRF", "LINEAR", "FUSE_LINE_COMMENT", + "FUSE_MULTILINE_COMMENT", "FUSE_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", + "JOIN_MULTILINE_COMMENT", "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", + "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", + "LOOKUP_FIELD_WS", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", + "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", + "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -243,9 +247,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(170); + setState(174); query(0); - setState(171); + setState(175); match(EOF); } } @@ -341,11 +345,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(174); + setState(178); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(181); + setState(185); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -356,16 +360,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(176); + setState(180); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(177); + setState(181); match(PIPE); - setState(178); + setState(182); processingCommand(); } } } - setState(183); + setState(187); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -423,45 +427,45 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(191); + setState(195); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(184); + setState(188); fromCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(185); + setState(189); rowCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(186); + setState(190); showCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(187); + setState(191); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(188); + setState(192); timeSeriesCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(189); + setState(193); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(190); + setState(194); explainCommand(); } break; @@ -570,168 +574,168 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(219); + setState(223); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(193); + setState(197); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(194); + setState(198); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(195); + setState(199); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(196); + setState(200); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(197); + setState(201); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(198); + setState(202); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(199); + setState(203); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(200); + setState(204); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(201); + setState(205); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(202); + setState(206); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(203); + setState(207); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(204); + setState(208); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(205); + setState(209); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(206); + setState(210); changePointCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(207); + setState(211); completionCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(208); + setState(212); sampleCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(209); + setState(213); forkCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(210); + setState(214); rerankCommand(); } break; case 19: enterOuterAlt(_localctx, 19); { - setState(211); + setState(215); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(212); + setState(216); inlinestatsCommand(); } break; case 20: enterOuterAlt(_localctx, 20); { - setState(213); + setState(217); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(214); + setState(218); lookupCommand(); } break; case 21: enterOuterAlt(_localctx, 21); { - setState(215); + setState(219); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(216); + setState(220); insistCommand(); } break; case 22: enterOuterAlt(_localctx, 22); { - setState(217); + setState(221); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(218); + setState(222); fuseCommand(); } break; @@ -780,9 +784,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(221); + setState(225); match(WHERE); - setState(222); + setState(226); booleanExpression(0); } } @@ -840,7 +844,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(224); + setState(228); identifier(); } } @@ -887,9 +891,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(226); + setState(230); match(ROW); - setState(227); + setState(231); fields(); } } @@ -943,23 +947,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(229); + setState(233); field(); - setState(234); + setState(238); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,3,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(230); + setState(234); match(COMMA); - setState(231); + setState(235); field(); } } } - setState(236); + setState(240); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,3,_ctx); } @@ -1011,19 +1015,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(240); + setState(244); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) { case 1: { - setState(237); + setState(241); qualifiedName(); - setState(238); + setState(242); match(ASSIGN); } break; } - setState(242); + setState(246); booleanExpression(0); } } @@ -1077,23 +1081,23 @@ public final RerankFieldsContext rerankFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(244); + setState(248); rerankField(); - setState(249); + setState(253); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(245); + setState(249); match(COMMA); - setState(246); + setState(250); rerankField(); } } } - setState(251); + setState(255); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); } @@ -1145,16 +1149,16 @@ public final RerankFieldContext rerankField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(252); + setState(256); qualifiedName(); - setState(255); + setState(259); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: { - setState(253); + setState(257); match(ASSIGN); - setState(254); + setState(258); booleanExpression(0); } break; @@ -1204,9 +1208,9 @@ public final FromCommandContext fromCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(257); + setState(261); match(FROM); - setState(258); + setState(262); indexPatternAndMetadataFields(); } } @@ -1253,9 +1257,9 @@ public final TimeSeriesCommandContext timeSeriesCommand() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(260); + setState(264); match(DEV_TIME_SERIES); - setState(261); + setState(265); indexPatternAndMetadataFields(); } } @@ -1312,32 +1316,32 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields( int _alt; enterOuterAlt(_localctx, 1); { - setState(263); + setState(267); indexPattern(); - setState(268); + setState(272); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,7,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(264); + setState(268); match(COMMA); - setState(265); + setState(269); indexPattern(); } } } - setState(270); + setState(274); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,7,_ctx); } - setState(272); + setState(276); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) { case 1: { - setState(271); + setState(275); metadata(); } break; @@ -1395,35 +1399,35 @@ public final IndexPatternContext indexPattern() throws RecognitionException { IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); enterRule(_localctx, 28, RULE_indexPattern); try { - setState(283); + setState(287); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(274); + setState(278); clusterString(); - setState(275); + setState(279); match(COLON); - setState(276); + setState(280); unquotedIndexString(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(278); + setState(282); unquotedIndexString(); - setState(279); + setState(283); match(CAST_OP); - setState(280); + setState(284); selectorString(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(282); + setState(286); indexString(); } break; @@ -1469,7 +1473,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(285); + setState(289); match(UNQUOTED_SOURCE); } } @@ -1513,7 +1517,7 @@ public final SelectorStringContext selectorString() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(287); + setState(291); match(UNQUOTED_SOURCE); } } @@ -1557,7 +1561,7 @@ public final UnquotedIndexStringContext unquotedIndexString() throws Recognition try { enterOuterAlt(_localctx, 1); { - setState(289); + setState(293); match(UNQUOTED_SOURCE); } } @@ -1603,7 +1607,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(291); + setState(295); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1664,25 +1668,25 @@ public final MetadataContext metadata() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(293); + setState(297); match(METADATA); - setState(294); + setState(298); match(UNQUOTED_SOURCE); - setState(299); + setState(303); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,10,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(295); + setState(299); match(COMMA); - setState(296); + setState(300); match(UNQUOTED_SOURCE); } } } - setState(301); + setState(305); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,10,_ctx); } @@ -1731,9 +1735,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(302); + setState(306); match(EVAL); - setState(303); + setState(307); fields(); } } @@ -1786,26 +1790,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(305); + setState(309); match(STATS); - setState(307); + setState(311); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { case 1: { - setState(306); + setState(310); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(311); + setState(315); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: { - setState(309); + setState(313); match(BY); - setState(310); + setState(314); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -1862,23 +1866,23 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(313); + setState(317); aggField(); - setState(318); + setState(322); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,13,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(314); + setState(318); match(COMMA); - setState(315); + setState(319); aggField(); } } } - setState(320); + setState(324); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,13,_ctx); } @@ -1930,16 +1934,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(321); + setState(325); field(); - setState(324); + setState(328); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: { - setState(322); + setState(326); match(WHERE); - setState(323); + setState(327); booleanExpression(0); } break; @@ -1996,23 +2000,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(326); + setState(330); identifierOrParameter(); - setState(331); + setState(335); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,15,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(327); + setState(331); match(DOT); - setState(328); + setState(332); identifierOrParameter(); } } } - setState(333); + setState(337); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,15,_ctx); } @@ -2068,23 +2072,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(334); + setState(338); identifierPattern(); - setState(339); + setState(343); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,16,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(335); + setState(339); match(DOT); - setState(336); + setState(340); identifierPattern(); } } } - setState(341); + setState(345); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,16,_ctx); } @@ -2140,23 +2144,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(342); + setState(346); qualifiedNamePattern(); - setState(347); + setState(351); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(343); + setState(347); match(COMMA); - setState(344); + setState(348); qualifiedNamePattern(); } } } - setState(349); + setState(353); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); } @@ -2204,7 +2208,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(350); + setState(354); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -2260,13 +2264,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 56, RULE_identifierPattern); try { - setState(355); + setState(359); _errHandler.sync(this); switch (_input.LA(1)) { case ID_PATTERN: enterOuterAlt(_localctx, 1); { - setState(352); + setState(356); match(ID_PATTERN); } break; @@ -2274,7 +2278,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(353); + setState(357); parameter(); } break; @@ -2282,7 +2286,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(354); + setState(358); doubleParameter(); } break; @@ -2358,14 +2362,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 58, RULE_parameter); try { - setState(359); + setState(363); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(357); + setState(361); match(PARAM); } break; @@ -2373,7 +2377,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(358); + setState(362); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -2449,14 +2453,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState()); enterRule(_localctx, 60, RULE_doubleParameter); try { - setState(363); + setState(367); _errHandler.sync(this); switch (_input.LA(1)) { case DOUBLE_PARAMS: _localctx = new InputDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(361); + setState(365); match(DOUBLE_PARAMS); } break; @@ -2464,7 +2468,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio _localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(362); + setState(366); match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS); } break; @@ -2518,14 +2522,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 62, RULE_identifierOrParameter); try { - setState(368); + setState(372); _errHandler.sync(this); switch (_input.LA(1)) { case UNQUOTED_IDENTIFIER: case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(365); + setState(369); identifier(); } break; @@ -2533,7 +2537,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(366); + setState(370); parameter(); } break; @@ -2541,7 +2545,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_DOUBLE_PARAMS: enterOuterAlt(_localctx, 3); { - setState(367); + setState(371); doubleParameter(); } break; @@ -2592,9 +2596,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(370); + setState(374); match(LIMIT); - setState(371); + setState(375); constant(); } } @@ -2649,25 +2653,25 @@ public final SortCommandContext sortCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(373); + setState(377); match(SORT); - setState(374); + setState(378); orderExpression(); - setState(379); + setState(383); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,22,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(375); + setState(379); match(COMMA); - setState(376); + setState(380); orderExpression(); } } } - setState(381); + setState(385); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,22,_ctx); } @@ -2723,14 +2727,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(382); + setState(386); booleanExpression(0); - setState(384); + setState(388); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: { - setState(383); + setState(387); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -2744,14 +2748,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(388); + setState(392); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { case 1: { - setState(386); + setState(390); match(NULLS); - setState(387); + setState(391); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -2810,9 +2814,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(390); + setState(394); match(KEEP); - setState(391); + setState(395); qualifiedNamePatterns(); } } @@ -2859,9 +2863,9 @@ public final DropCommandContext dropCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(393); + setState(397); match(DROP); - setState(394); + setState(398); qualifiedNamePatterns(); } } @@ -2916,25 +2920,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(396); + setState(400); match(RENAME); - setState(397); + setState(401); renameClause(); - setState(402); + setState(406); _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(398); + setState(402); match(COMMA); - setState(399); + setState(403); renameClause(); } } } - setState(404); + setState(408); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } @@ -2987,28 +2991,28 @@ public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); enterRule(_localctx, 76, RULE_renameClause); try { - setState(413); + setState(417); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(405); + setState(409); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(406); + setState(410); match(AS); - setState(407); + setState(411); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(409); + setState(413); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(410); + setState(414); match(ASSIGN); - setState(411); + setState(415); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); } break; @@ -3063,18 +3067,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(415); + setState(419); match(DISSECT); - setState(416); + setState(420); primaryExpression(0); - setState(417); + setState(421); string(); - setState(419); + setState(423); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: { - setState(418); + setState(422); dissectCommandOptions(); } break; @@ -3131,23 +3135,23 @@ public final DissectCommandOptionsContext dissectCommandOptions() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(421); + setState(425); dissectCommandOption(); - setState(426); + setState(430); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,28,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(422); + setState(426); match(COMMA); - setState(423); + setState(427); dissectCommandOption(); } } } - setState(428); + setState(432); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,28,_ctx); } @@ -3199,11 +3203,11 @@ public final DissectCommandOptionContext dissectCommandOption() throws Recogniti try { enterOuterAlt(_localctx, 1); { - setState(429); + setState(433); identifier(); - setState(430); + setState(434); match(ASSIGN); - setState(431); + setState(435); constant(); } } @@ -3250,14 +3254,14 @@ public final CommandNamedParametersContext commandNamedParameters() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(435); + setState(439); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { case 1: { - setState(433); + setState(437); match(WITH); - setState(434); + setState(438); mapExpression(); } break; @@ -3310,11 +3314,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(437); + setState(441); match(GROK); - setState(438); + setState(442); primaryExpression(0); - setState(439); + setState(443); string(); } } @@ -3361,9 +3365,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(441); + setState(445); match(MV_EXPAND); - setState(442); + setState(446); qualifiedName(); } } @@ -3410,9 +3414,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(444); + setState(448); match(DEV_EXPLAIN); - setState(445); + setState(449); subqueryExpression(); } } @@ -3460,11 +3464,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(447); + setState(451); match(LP); - setState(448); + setState(452); query(0); - setState(449); + setState(453); match(RP); } } @@ -3521,9 +3525,9 @@ public final ShowCommandContext showCommand() throws RecognitionException { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(451); + setState(455); match(SHOW); - setState(452); + setState(456); match(INFO); } } @@ -3588,46 +3592,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(454); + setState(458); match(ENRICH); - setState(455); + setState(459); ((EnrichCommandContext)_localctx).policyName = enrichPolicyName(); - setState(458); + setState(462); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(456); + setState(460); match(ON); - setState(457); + setState(461); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(469); + setState(473); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { - setState(460); + setState(464); match(WITH); - setState(461); + setState(465); enrichWithClause(); - setState(466); + setState(470); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,31,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(462); + setState(466); match(COMMA); - setState(463); + setState(467); enrichWithClause(); } } } - setState(468); + setState(472); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,31,_ctx); } @@ -3678,7 +3682,7 @@ public final EnrichPolicyNameContext enrichPolicyName() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(471); + setState(475); _la = _input.LA(1); if ( !(_la==ENRICH_POLICY_NAME || _la==QUOTED_STRING) ) { _errHandler.recoverInline(this); @@ -3738,19 +3742,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(476); + setState(480); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { - setState(473); + setState(477); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(474); + setState(478); match(ASSIGN); } break; } - setState(478); + setState(482); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -3798,9 +3802,9 @@ public final SampleCommandContext sampleCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(480); + setState(484); match(SAMPLE); - setState(481); + setState(485); ((SampleCommandContext)_localctx).probability = constant(); } } @@ -3857,34 +3861,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(483); + setState(487); match(CHANGE_POINT); - setState(484); + setState(488); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(487); + setState(491); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: { - setState(485); + setState(489); match(ON); - setState(486); + setState(490); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(494); + setState(498); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(489); + setState(493); match(AS); - setState(490); + setState(494); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(491); + setState(495); match(COMMA); - setState(492); + setState(496); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -3934,9 +3938,9 @@ public final ForkCommandContext forkCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(496); + setState(500); match(FORK); - setState(497); + setState(501); forkSubQueries(); } } @@ -3986,7 +3990,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(500); + setState(504); _errHandler.sync(this); _alt = 1; do { @@ -3994,7 +3998,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException case 1: { { - setState(499); + setState(503); forkSubQuery(); } } @@ -4002,7 +4006,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException default: throw new NoViableAltException(this); } - setState(502); + setState(506); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -4052,11 +4056,11 @@ public final ForkSubQueryContext forkSubQuery() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(504); + setState(508); match(LP); - setState(505); + setState(509); forkSubQueryCommand(0); - setState(506); + setState(510); match(RP); } } @@ -4152,11 +4156,11 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio _ctx = _localctx; _prevctx = _localctx; - setState(509); + setState(513); forkSubQueryProcessingCommand(); } _ctx.stop = _input.LT(-1); - setState(516); + setState(520); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,37,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4167,16 +4171,16 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio { _localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand); - setState(511); + setState(515); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(512); + setState(516); match(PIPE); - setState(513); + setState(517); forkSubQueryProcessingCommand(); } } } - setState(518); + setState(522); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,37,_ctx); } @@ -4224,7 +4228,7 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( try { enterOuterAlt(_localctx, 1); { - setState(519); + setState(523); processingCommand(); } } @@ -4284,27 +4288,27 @@ public final RerankCommandContext rerankCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(521); - match(RERANK); setState(525); + match(RERANK); + setState(529); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { case 1: { - setState(522); + setState(526); ((RerankCommandContext)_localctx).targetField = qualifiedName(); - setState(523); + setState(527); match(ASSIGN); } break; } - setState(527); + setState(531); ((RerankCommandContext)_localctx).queryText = constant(); - setState(528); + setState(532); match(ON); - setState(529); + setState(533); rerankFields(); - setState(530); + setState(534); commandNamedParameters(); } } @@ -4360,23 +4364,23 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(532); - match(COMPLETION); setState(536); + match(COMPLETION); + setState(540); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { - setState(533); + setState(537); ((CompletionCommandContext)_localctx).targetField = qualifiedName(); - setState(534); + setState(538); match(ASSIGN); } break; } - setState(538); + setState(542); ((CompletionCommandContext)_localctx).prompt = primaryExpression(0); - setState(539); + setState(543); commandNamedParameters(); } } @@ -4429,13 +4433,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(541); + setState(545); match(DEV_LOOKUP); - setState(542); + setState(546); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(543); + setState(547); match(ON); - setState(544); + setState(548); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -4488,18 +4492,18 @@ public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(546); + setState(550); match(DEV_INLINESTATS); - setState(547); + setState(551); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(550); + setState(554); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(548); + setState(552); match(BY); - setState(549); + setState(553); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -4549,9 +4553,9 @@ public final InsistCommandContext insistCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(552); + setState(556); match(DEV_INSIST); - setState(553); + setState(557); qualifiedNamePatterns(); } } @@ -4568,7 +4572,30 @@ public final InsistCommandContext insistCommand() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class FuseCommandContext extends ParserRuleContext { + public FuseMethodContext fuseType; + public QualifiedNameContext key; + public FieldsContext group; + public QualifiedNameContext score; + public CommandNamedParametersContext fuseOptions; public TerminalNode DEV_FUSE() { return getToken(EsqlBaseParser.DEV_FUSE, 0); } + public CommandNamedParametersContext commandNamedParameters() { + return getRuleContext(CommandNamedParametersContext.class,0); + } + public TerminalNode KEY() { return getToken(EsqlBaseParser.KEY, 0); } + public TerminalNode GROUP() { return getToken(EsqlBaseParser.GROUP, 0); } + public TerminalNode SCORE() { return getToken(EsqlBaseParser.SCORE, 0); } + public FuseMethodContext fuseMethod() { + return getRuleContext(FuseMethodContext.class,0); + } + public List qualifiedName() { + return getRuleContexts(QualifiedNameContext.class); + } + public QualifiedNameContext qualifiedName(int i) { + return getRuleContext(QualifiedNameContext.class,i); + } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); + } @SuppressWarnings("this-escape") public FuseCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -4595,8 +4622,110 @@ public final FuseCommandContext fuseCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(555); + setState(559); match(DEV_FUSE); + setState(561); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { + case 1: + { + setState(560); + ((FuseCommandContext)_localctx).fuseType = fuseMethod(); + } + break; + } + setState(565); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + case 1: + { + setState(563); + match(KEY); + setState(564); + ((FuseCommandContext)_localctx).key = qualifiedName(); + } + break; + } + setState(569); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { + case 1: + { + setState(567); + match(GROUP); + setState(568); + ((FuseCommandContext)_localctx).group = fields(); + } + break; + } + setState(573); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + case 1: + { + setState(571); + match(SCORE); + setState(572); + ((FuseCommandContext)_localctx).score = qualifiedName(); + } + break; + } + setState(575); + ((FuseCommandContext)_localctx).fuseOptions = commandNamedParameters(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class FuseMethodContext extends ParserRuleContext { + public TerminalNode RRF() { return getToken(EsqlBaseParser.RRF, 0); } + public TerminalNode LINEAR() { return getToken(EsqlBaseParser.LINEAR, 0); } + @SuppressWarnings("this-escape") + public FuseMethodContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fuseMethod; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFuseMethod(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFuseMethod(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFuseMethod(this); + else return visitor.visitChildren(this); + } + } + + public final FuseMethodContext fuseMethod() throws RecognitionException { + FuseMethodContext _localctx = new FuseMethodContext(_ctx, getState()); + enterRule(_localctx, 128, RULE_fuseMethod); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(577); + _la = _input.LA(1); + if ( !(_la==RRF || _la==LINEAR) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } } } catch (RecognitionException re) { @@ -4804,25 +4933,25 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _parentState = getState(); BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState); BooleanExpressionContext _prevctx = _localctx; - int _startState = 128; - enterRecursionRule(_localctx, 128, RULE_booleanExpression, _p); + int _startState = 130; + enterRecursionRule(_localctx, 130, RULE_booleanExpression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(586); + setState(608); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { _localctx = new LogicalNotContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(558); + setState(580); match(NOT); - setState(559); + setState(581); booleanExpression(8); } break; @@ -4831,7 +4960,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(560); + setState(582); valueExpression(); } break; @@ -4840,7 +4969,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(561); + setState(583); regexBooleanExpression(); } break; @@ -4849,41 +4978,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(562); + setState(584); valueExpression(); - setState(564); + setState(586); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(563); + setState(585); match(NOT); } } - setState(566); + setState(588); match(IN); - setState(567); + setState(589); match(LP); - setState(568); + setState(590); valueExpression(); - setState(573); + setState(595); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(569); + setState(591); match(COMMA); - setState(570); + setState(592); valueExpression(); } } - setState(575); + setState(597); _errHandler.sync(this); _la = _input.LA(1); } - setState(576); + setState(598); match(RP); } break; @@ -4892,21 +5021,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(578); + setState(600); valueExpression(); - setState(579); + setState(601); match(IS); - setState(581); + setState(603); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(580); + setState(602); match(NOT); } } - setState(583); + setState(605); match(NULL); } break; @@ -4915,33 +5044,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(585); + setState(607); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(596); + setState(618); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,50,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(594); + setState(616); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: { _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(588); + setState(610); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(589); + setState(611); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(590); + setState(612); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4950,20 +5079,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(591); + setState(613); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(592); + setState(614); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(593); + setState(615); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(598); + setState(620); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,50,_ctx); } } } @@ -5117,31 +5246,31 @@ public T accept(ParseTreeVisitor visitor) { public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException { RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_regexBooleanExpression); + enterRule(_localctx, 132, RULE_regexBooleanExpression); int _la; try { - setState(645); + setState(667); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: _localctx = new LikeExpressionContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(599); + setState(621); valueExpression(); - setState(601); + setState(623); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(600); + setState(622); match(NOT); } } - setState(603); + setState(625); match(LIKE); - setState(604); + setState(626); string(); } break; @@ -5149,21 +5278,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(606); + setState(628); valueExpression(); - setState(608); + setState(630); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(607); + setState(629); match(NOT); } } - setState(610); + setState(632); match(RLIKE); - setState(611); + setState(633); string(); } break; @@ -5171,41 +5300,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new LikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(613); + setState(635); valueExpression(); - setState(615); + setState(637); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(614); + setState(636); match(NOT); } } - setState(617); + setState(639); match(LIKE); - setState(618); + setState(640); match(LP); - setState(619); + setState(641); string(); - setState(624); + setState(646); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(620); + setState(642); match(COMMA); - setState(621); + setState(643); string(); } } - setState(626); + setState(648); _errHandler.sync(this); _la = _input.LA(1); } - setState(627); + setState(649); match(RP); } break; @@ -5213,41 +5342,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(629); + setState(651); valueExpression(); - setState(631); + setState(653); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(630); + setState(652); match(NOT); } } - setState(633); + setState(655); match(RLIKE); - setState(634); + setState(656); match(LP); - setState(635); + setState(657); string(); - setState(640); + setState(662); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(636); + setState(658); match(COMMA); - setState(637); + setState(659); string(); } } - setState(642); + setState(664); _errHandler.sync(this); _la = _input.LA(1); } - setState(643); + setState(665); match(RP); } break; @@ -5302,28 +5431,28 @@ public T accept(ParseTreeVisitor visitor) { public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException { MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_matchBooleanExpression); + enterRule(_localctx, 134, RULE_matchBooleanExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(647); + setState(669); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(650); + setState(672); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(648); + setState(670); match(CAST_OP); - setState(649); + setState(671); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(652); + setState(674); match(COLON); - setState(653); + setState(675); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -5405,16 +5534,16 @@ public T accept(ParseTreeVisitor visitor) { public final ValueExpressionContext valueExpression() throws RecognitionException { ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_valueExpression); + enterRule(_localctx, 136, RULE_valueExpression); try { - setState(660); + setState(682); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(655); + setState(677); operatorExpression(0); } break; @@ -5422,11 +5551,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(656); + setState(678); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(657); + setState(679); comparisonOperator(); - setState(658); + setState(680); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -5544,23 +5673,23 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _parentState = getState(); OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState); OperatorExpressionContext _prevctx = _localctx; - int _startState = 136; - enterRecursionRule(_localctx, 136, RULE_operatorExpression, _p); + int _startState = 138; + enterRecursionRule(_localctx, 138, RULE_operatorExpression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(666); + setState(688); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: { _localctx = new OperatorExpressionDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(663); + setState(685); primaryExpression(0); } break; @@ -5569,7 +5698,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(664); + setState(686); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -5580,31 +5709,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(665); + setState(687); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(676); + setState(698); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,58,_ctx); + _alt = getInterpreter().adaptivePredict(_input,62,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(674); + setState(696); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: { _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(668); + setState(690); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(669); + setState(691); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 89)) & ~0x3f) == 0 && ((1L << (_la - 89)) & 7L) != 0)) ) { @@ -5615,7 +5744,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(670); + setState(692); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -5624,9 +5753,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(671); + setState(693); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(672); + setState(694); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -5637,16 +5766,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(673); + setState(695); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(678); + setState(700); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,58,_ctx); + _alt = getInterpreter().adaptivePredict(_input,62,_ctx); } } } @@ -5796,22 +5925,22 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _parentState = getState(); PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState); PrimaryExpressionContext _prevctx = _localctx; - int _startState = 138; - enterRecursionRule(_localctx, 138, RULE_primaryExpression, _p); + int _startState = 140; + enterRecursionRule(_localctx, 140, RULE_primaryExpression, _p); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(687); + setState(709); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: { _localctx = new ConstantDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(680); + setState(702); constant(); } break; @@ -5820,7 +5949,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(681); + setState(703); qualifiedName(); } break; @@ -5829,7 +5958,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(682); + setState(704); functionExpression(); } break; @@ -5838,19 +5967,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(683); + setState(705); match(LP); - setState(684); + setState(706); booleanExpression(0); - setState(685); + setState(707); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(694); + setState(716); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + _alt = getInterpreter().adaptivePredict(_input,64,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -5859,18 +5988,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(689); + setState(711); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(690); + setState(712); match(CAST_OP); - setState(691); + setState(713); dataType(); } } } - setState(696); + setState(718); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + _alt = getInterpreter().adaptivePredict(_input,64,_ctx); } } } @@ -5928,22 +6057,22 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionExpressionContext functionExpression() throws RecognitionException { FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_functionExpression); + enterRule(_localctx, 142, RULE_functionExpression); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(697); + setState(719); functionName(); - setState(698); + setState(720); match(LP); - setState(712); + setState(734); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(699); + setState(721); match(ASTERISK); } break; @@ -5968,34 +6097,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(700); + setState(722); booleanExpression(0); - setState(705); + setState(727); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,61,_ctx); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(701); + setState(723); match(COMMA); - setState(702); + setState(724); booleanExpression(0); } } } - setState(707); + setState(729); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,61,_ctx); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); } - setState(710); + setState(732); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(708); + setState(730); match(COMMA); - setState(709); + setState(731); mapExpression(); } } @@ -6008,7 +6137,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(714); + setState(736); match(RP); } } @@ -6052,9 +6181,9 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionNameContext functionName() throws RecognitionException { FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); - enterRule(_localctx, 142, RULE_functionName); + enterRule(_localctx, 144, RULE_functionName); try { - setState(719); + setState(741); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: @@ -6065,21 +6194,21 @@ public final FunctionNameContext functionName() throws RecognitionException { case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(716); + setState(738); identifierOrParameter(); } break; case FIRST: enterOuterAlt(_localctx, 2); { - setState(717); + setState(739); match(FIRST); } break; case LAST: enterOuterAlt(_localctx, 3); { - setState(718); + setState(740); match(LAST); } break; @@ -6134,40 +6263,40 @@ public T accept(ParseTreeVisitor visitor) { public final MapExpressionContext mapExpression() throws RecognitionException { MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_mapExpression); + enterRule(_localctx, 146, RULE_mapExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(721); + setState(743); match(LEFT_BRACES); - setState(730); + setState(752); _errHandler.sync(this); _la = _input.LA(1); if (_la==QUOTED_STRING) { { - setState(722); + setState(744); entryExpression(); - setState(727); + setState(749); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(723); + setState(745); match(COMMA); - setState(724); + setState(746); entryExpression(); } } - setState(729); + setState(751); _errHandler.sync(this); _la = _input.LA(1); } } } - setState(732); + setState(754); match(RIGHT_BRACES); } } @@ -6185,13 +6314,13 @@ public final MapExpressionContext mapExpression() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class EntryExpressionContext extends ParserRuleContext { public StringContext key; - public ConstantContext value; + public MapValueContext value; public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } public StringContext string() { return getRuleContext(StringContext.class,0); } - public ConstantContext constant() { - return getRuleContext(ConstantContext.class,0); + public MapValueContext mapValue() { + return getRuleContext(MapValueContext.class,0); } @SuppressWarnings("this-escape") public EntryExpressionContext(ParserRuleContext parent, int invokingState) { @@ -6215,16 +6344,90 @@ public T accept(ParseTreeVisitor visitor) { public final EntryExpressionContext entryExpression() throws RecognitionException { EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_entryExpression); + enterRule(_localctx, 148, RULE_entryExpression); try { enterOuterAlt(_localctx, 1); { - setState(734); + setState(756); ((EntryExpressionContext)_localctx).key = string(); - setState(735); + setState(757); match(COLON); - setState(736); - ((EntryExpressionContext)_localctx).value = constant(); + setState(758); + ((EntryExpressionContext)_localctx).value = mapValue(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class MapValueContext extends ParserRuleContext { + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); + } + public MapExpressionContext mapExpression() { + return getRuleContext(MapExpressionContext.class,0); + } + @SuppressWarnings("this-escape") + public MapValueContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_mapValue; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMapValue(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMapValue(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMapValue(this); + else return visitor.visitChildren(this); + } + } + + public final MapValueContext mapValue() throws RecognitionException { + MapValueContext _localctx = new MapValueContext(_ctx, getState()); + enterRule(_localctx, 150, RULE_mapValue); + try { + setState(762); + _errHandler.sync(this); + switch (_input.LA(1)) { + case QUOTED_STRING: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case FALSE: + case NULL: + case PARAM: + case TRUE: + case PLUS: + case MINUS: + case NAMED_OR_POSITIONAL_PARAM: + case OPENING_BRACKET: + enterOuterAlt(_localctx, 1); + { + setState(760); + constant(); + } + break; + case LEFT_BRACES: + enterOuterAlt(_localctx, 2); + { + setState(761); + mapExpression(); + } + break; + default: + throw new NoViableAltException(this); } } catch (RecognitionException re) { @@ -6491,17 +6694,17 @@ public T accept(ParseTreeVisitor visitor) { public final ConstantContext constant() throws RecognitionException { ConstantContext _localctx = new ConstantContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_constant); + enterRule(_localctx, 152, RULE_constant); int _la; try { - setState(780); + setState(806); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(738); + setState(764); match(NULL); } break; @@ -6509,9 +6712,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(739); + setState(765); integerValue(); - setState(740); + setState(766); match(UNQUOTED_IDENTIFIER); } break; @@ -6519,7 +6722,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(742); + setState(768); decimalValue(); } break; @@ -6527,7 +6730,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(743); + setState(769); integerValue(); } break; @@ -6535,7 +6738,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(744); + setState(770); booleanValue(); } break; @@ -6543,7 +6746,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(745); + setState(771); parameter(); } break; @@ -6551,7 +6754,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(746); + setState(772); string(); } break; @@ -6559,27 +6762,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(747); + setState(773); match(OPENING_BRACKET); - setState(748); + setState(774); numericValue(); - setState(753); + setState(779); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(749); + setState(775); match(COMMA); - setState(750); + setState(776); numericValue(); } } - setState(755); + setState(781); _errHandler.sync(this); _la = _input.LA(1); } - setState(756); + setState(782); match(CLOSING_BRACKET); } break; @@ -6587,27 +6790,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(758); + setState(784); match(OPENING_BRACKET); - setState(759); + setState(785); booleanValue(); - setState(764); + setState(790); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(760); + setState(786); match(COMMA); - setState(761); + setState(787); booleanValue(); } } - setState(766); + setState(792); _errHandler.sync(this); _la = _input.LA(1); } - setState(767); + setState(793); match(CLOSING_BRACKET); } break; @@ -6615,27 +6818,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(769); + setState(795); match(OPENING_BRACKET); - setState(770); + setState(796); string(); - setState(775); + setState(801); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(771); + setState(797); match(COMMA); - setState(772); + setState(798); string(); } } - setState(777); + setState(803); _errHandler.sync(this); _la = _input.LA(1); } - setState(778); + setState(804); match(CLOSING_BRACKET); } break; @@ -6678,12 +6881,12 @@ public T accept(ParseTreeVisitor visitor) { public final BooleanValueContext booleanValue() throws RecognitionException { BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_booleanValue); + enterRule(_localctx, 154, RULE_booleanValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(782); + setState(808); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -6736,22 +6939,22 @@ public T accept(ParseTreeVisitor visitor) { public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_numericValue); + enterRule(_localctx, 156, RULE_numericValue); try { - setState(786); + setState(812); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,76,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(784); + setState(810); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(785); + setState(811); integerValue(); } break; @@ -6795,17 +6998,17 @@ public T accept(ParseTreeVisitor visitor) { public final DecimalValueContext decimalValue() throws RecognitionException { DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); - enterRule(_localctx, 154, RULE_decimalValue); + enterRule(_localctx, 158, RULE_decimalValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(789); + setState(815); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(788); + setState(814); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6818,7 +7021,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(791); + setState(817); match(DECIMAL_LITERAL); } } @@ -6860,17 +7063,17 @@ public T accept(ParseTreeVisitor visitor) { public final IntegerValueContext integerValue() throws RecognitionException { IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); - enterRule(_localctx, 156, RULE_integerValue); + enterRule(_localctx, 160, RULE_integerValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(794); + setState(820); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(793); + setState(819); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6883,7 +7086,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(796); + setState(822); match(INTEGER_LITERAL); } } @@ -6923,11 +7126,11 @@ public T accept(ParseTreeVisitor visitor) { public final StringContext string() throws RecognitionException { StringContext _localctx = new StringContext(_ctx, getState()); - enterRule(_localctx, 158, RULE_string); + enterRule(_localctx, 162, RULE_string); try { enterOuterAlt(_localctx, 1); { - setState(798); + setState(824); match(QUOTED_STRING); } } @@ -6972,12 +7175,12 @@ public T accept(ParseTreeVisitor visitor) { public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 160, RULE_comparisonOperator); + enterRule(_localctx, 164, RULE_comparisonOperator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(800); + setState(826); _la = _input.LA(1); if ( !(((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -7035,12 +7238,12 @@ public T accept(ParseTreeVisitor visitor) { public final JoinCommandContext joinCommand() throws RecognitionException { JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); - enterRule(_localctx, 162, RULE_joinCommand); + enterRule(_localctx, 166, RULE_joinCommand); int _la; try { enterOuterAlt(_localctx, 1); { - setState(802); + setState(828); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 109051904L) != 0)) ) { @@ -7051,11 +7254,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(803); + setState(829); match(JOIN); - setState(804); + setState(830); joinTarget(); - setState(805); + setState(831); joinCondition(); } } @@ -7098,11 +7301,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinTargetContext joinTarget() throws RecognitionException { JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); - enterRule(_localctx, 164, RULE_joinTarget); + enterRule(_localctx, 168, RULE_joinTarget); try { enterOuterAlt(_localctx, 1); { - setState(807); + setState(833); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -7152,32 +7355,32 @@ public T accept(ParseTreeVisitor visitor) { public final JoinConditionContext joinCondition() throws RecognitionException { JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); - enterRule(_localctx, 166, RULE_joinCondition); + enterRule(_localctx, 170, RULE_joinCondition); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(809); + setState(835); match(ON); - setState(810); + setState(836); joinPredicate(); - setState(815); + setState(841); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,74,_ctx); + _alt = getInterpreter().adaptivePredict(_input,79,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(811); + setState(837); match(COMMA); - setState(812); + setState(838); joinPredicate(); } } } - setState(817); + setState(843); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,74,_ctx); + _alt = getInterpreter().adaptivePredict(_input,79,_ctx); } } } @@ -7219,11 +7422,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinPredicateContext joinPredicate() throws RecognitionException { JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); - enterRule(_localctx, 168, RULE_joinPredicate); + enterRule(_localctx, 172, RULE_joinPredicate); try { enterOuterAlt(_localctx, 1); { - setState(818); + setState(844); valueExpression(); } } @@ -7248,11 +7451,11 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return processingCommand_sempred((ProcessingCommandContext)_localctx, predIndex); case 56: return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex); - case 64: + case 65: return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex); - case 68: - return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex); case 69: + return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex); + case 70: return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex); } return true; @@ -7320,7 +7523,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u008b\u0335\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0093\u034f\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"+ @@ -7341,491 +7544,507 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+ "J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0002O\u0007"+ "O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007S\u0002T\u0007"+ - "T\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00b4\b\u0001\n\u0001"+ - "\f\u0001\u00b7\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00c0\b\u0002\u0001\u0003"+ - "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ + "T\u0002U\u0007U\u0002V\u0007V\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005"+ + "\u0001\u00b8\b\u0001\n\u0001\f\u0001\u00bb\t\u0001\u0001\u0002\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002"+ + "\u00c4\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\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0003\u0003\u00dc\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007"+ - "\u0001\u0007\u0001\u0007\u0005\u0007\u00e9\b\u0007\n\u0007\f\u0007\u00ec"+ - "\t\u0007\u0001\b\u0001\b\u0001\b\u0003\b\u00f1\b\b\u0001\b\u0001\b\u0001"+ - "\t\u0001\t\u0001\t\u0005\t\u00f8\b\t\n\t\f\t\u00fb\t\t\u0001\n\u0001\n"+ - "\u0001\n\u0003\n\u0100\b\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f"+ - "\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0005\r\u010b\b\r\n\r\f\r\u010e"+ - "\t\r\u0001\r\u0003\r\u0111\b\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001"+ - "\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0003"+ - "\u000e\u011c\b\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001"+ - "\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001"+ - "\u0013\u0001\u0013\u0005\u0013\u012a\b\u0013\n\u0013\f\u0013\u012d\t\u0013"+ - "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0003\u0015"+ - "\u0134\b\u0015\u0001\u0015\u0001\u0015\u0003\u0015\u0138\b\u0015\u0001"+ - "\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u013d\b\u0016\n\u0016\f\u0016"+ - "\u0140\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0003\u0017\u0145\b"+ - "\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018\u014a\b\u0018\n"+ - "\u0018\f\u0018\u014d\t\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0005"+ - "\u0019\u0152\b\u0019\n\u0019\f\u0019\u0155\t\u0019\u0001\u001a\u0001\u001a"+ - "\u0001\u001a\u0005\u001a\u015a\b\u001a\n\u001a\f\u001a\u015d\t\u001a\u0001"+ - "\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u0164"+ - "\b\u001c\u0001\u001d\u0001\u001d\u0003\u001d\u0168\b\u001d\u0001\u001e"+ - "\u0001\u001e\u0003\u001e\u016c\b\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+ - "\u0003\u001f\u0171\b\u001f\u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001"+ - "!\u0005!\u017a\b!\n!\f!\u017d\t!\u0001\"\u0001\"\u0003\"\u0181\b\"\u0001"+ - "\"\u0001\"\u0003\"\u0185\b\"\u0001#\u0001#\u0001#\u0001$\u0001$\u0001"+ - "$\u0001%\u0001%\u0001%\u0001%\u0005%\u0191\b%\n%\f%\u0194\t%\u0001&\u0001"+ - "&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0003&\u019e\b&\u0001\'\u0001"+ - "\'\u0001\'\u0001\'\u0003\'\u01a4\b\'\u0001(\u0001(\u0001(\u0005(\u01a9"+ - "\b(\n(\f(\u01ac\t(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0003*\u01b4"+ - "\b*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001"+ - "-\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u00010\u00010\u0001"+ - "0\u00010\u00030\u01cb\b0\u00010\u00010\u00010\u00010\u00050\u01d1\b0\n"+ - "0\f0\u01d4\t0\u00030\u01d6\b0\u00011\u00011\u00012\u00012\u00012\u0003"+ - "2\u01dd\b2\u00012\u00012\u00013\u00013\u00013\u00014\u00014\u00014\u0001"+ - "4\u00034\u01e8\b4\u00014\u00014\u00014\u00014\u00014\u00034\u01ef\b4\u0001"+ - "5\u00015\u00015\u00016\u00046\u01f5\b6\u000b6\f6\u01f6\u00017\u00017\u0001"+ - "7\u00017\u00018\u00018\u00018\u00018\u00018\u00018\u00058\u0203\b8\n8"+ - "\f8\u0206\t8\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0003:\u020e\b"+ - ":\u0001:\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0003"+ - ";\u0219\b;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001"+ - "=\u0001=\u0001=\u0001=\u0003=\u0227\b=\u0001>\u0001>\u0001>\u0001?\u0001"+ - "?\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0003@\u0235\b@\u0001"+ - "@\u0001@\u0001@\u0001@\u0001@\u0005@\u023c\b@\n@\f@\u023f\t@\u0001@\u0001"+ - "@\u0001@\u0001@\u0001@\u0003@\u0246\b@\u0001@\u0001@\u0001@\u0003@\u024b"+ - "\b@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0005@\u0253\b@\n@\f@\u0256"+ - "\t@\u0001A\u0001A\u0003A\u025a\bA\u0001A\u0001A\u0001A\u0001A\u0001A\u0003"+ - "A\u0261\bA\u0001A\u0001A\u0001A\u0001A\u0001A\u0003A\u0268\bA\u0001A\u0001"+ - "A\u0001A\u0001A\u0001A\u0005A\u026f\bA\nA\fA\u0272\tA\u0001A\u0001A\u0001"+ - "A\u0001A\u0003A\u0278\bA\u0001A\u0001A\u0001A\u0001A\u0001A\u0005A\u027f"+ - "\bA\nA\fA\u0282\tA\u0001A\u0001A\u0003A\u0286\bA\u0001B\u0001B\u0001B"+ - "\u0003B\u028b\bB\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001"+ - "C\u0003C\u0295\bC\u0001D\u0001D\u0001D\u0001D\u0003D\u029b\bD\u0001D\u0001"+ - "D\u0001D\u0001D\u0001D\u0001D\u0005D\u02a3\bD\nD\fD\u02a6\tD\u0001E\u0001"+ - "E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0003E\u02b0\bE\u0001E\u0001"+ - "E\u0001E\u0005E\u02b5\bE\nE\fE\u02b8\tE\u0001F\u0001F\u0001F\u0001F\u0001"+ - "F\u0001F\u0005F\u02c0\bF\nF\fF\u02c3\tF\u0001F\u0001F\u0003F\u02c7\bF"+ - "\u0003F\u02c9\bF\u0001F\u0001F\u0001G\u0001G\u0001G\u0003G\u02d0\bG\u0001"+ - "H\u0001H\u0001H\u0001H\u0005H\u02d6\bH\nH\fH\u02d9\tH\u0003H\u02db\bH"+ - "\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+ - "J\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0005"+ - "J\u02f0\bJ\nJ\fJ\u02f3\tJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0005"+ - "J\u02fb\bJ\nJ\fJ\u02fe\tJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0005"+ - "J\u0306\bJ\nJ\fJ\u0309\tJ\u0001J\u0001J\u0003J\u030d\bJ\u0001K\u0001K"+ - "\u0001L\u0001L\u0003L\u0313\bL\u0001M\u0003M\u0316\bM\u0001M\u0001M\u0001"+ - "N\u0003N\u031b\bN\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001"+ - "Q\u0001Q\u0001Q\u0001Q\u0001R\u0001R\u0001S\u0001S\u0001S\u0001S\u0005"+ - "S\u032e\bS\nS\fS\u0331\tS\u0001T\u0001T\u0001T\u0000\u0005\u0002p\u0080"+ - "\u0088\u008aU\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016"+ - "\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprt"+ - "vxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094"+ - "\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u0000\n\u0002"+ - "\u000055kk\u0001\u0000ef\u0002\u000099??\u0002\u0000BBEE\u0002\u0000&"+ - "&55\u0001\u0000WX\u0001\u0000Y[\u0002\u0000AANN\u0002\u0000PPRV\u0002"+ - "\u0000\u0017\u0017\u0019\u001a\u0356\u0000\u00aa\u0001\u0000\u0000\u0000"+ - "\u0002\u00ad\u0001\u0000\u0000\u0000\u0004\u00bf\u0001\u0000\u0000\u0000"+ - "\u0006\u00db\u0001\u0000\u0000\u0000\b\u00dd\u0001\u0000\u0000\u0000\n"+ - "\u00e0\u0001\u0000\u0000\u0000\f\u00e2\u0001\u0000\u0000\u0000\u000e\u00e5"+ - "\u0001\u0000\u0000\u0000\u0010\u00f0\u0001\u0000\u0000\u0000\u0012\u00f4"+ - "\u0001\u0000\u0000\u0000\u0014\u00fc\u0001\u0000\u0000\u0000\u0016\u0101"+ - "\u0001\u0000\u0000\u0000\u0018\u0104\u0001\u0000\u0000\u0000\u001a\u0107"+ - "\u0001\u0000\u0000\u0000\u001c\u011b\u0001\u0000\u0000\u0000\u001e\u011d"+ - "\u0001\u0000\u0000\u0000 \u011f\u0001\u0000\u0000\u0000\"\u0121\u0001"+ - "\u0000\u0000\u0000$\u0123\u0001\u0000\u0000\u0000&\u0125\u0001\u0000\u0000"+ - "\u0000(\u012e\u0001\u0000\u0000\u0000*\u0131\u0001\u0000\u0000\u0000,"+ - "\u0139\u0001\u0000\u0000\u0000.\u0141\u0001\u0000\u0000\u00000\u0146\u0001"+ - "\u0000\u0000\u00002\u014e\u0001\u0000\u0000\u00004\u0156\u0001\u0000\u0000"+ - "\u00006\u015e\u0001\u0000\u0000\u00008\u0163\u0001\u0000\u0000\u0000:"+ - "\u0167\u0001\u0000\u0000\u0000<\u016b\u0001\u0000\u0000\u0000>\u0170\u0001"+ - "\u0000\u0000\u0000@\u0172\u0001\u0000\u0000\u0000B\u0175\u0001\u0000\u0000"+ - "\u0000D\u017e\u0001\u0000\u0000\u0000F\u0186\u0001\u0000\u0000\u0000H"+ - "\u0189\u0001\u0000\u0000\u0000J\u018c\u0001\u0000\u0000\u0000L\u019d\u0001"+ - "\u0000\u0000\u0000N\u019f\u0001\u0000\u0000\u0000P\u01a5\u0001\u0000\u0000"+ - "\u0000R\u01ad\u0001\u0000\u0000\u0000T\u01b3\u0001\u0000\u0000\u0000V"+ - "\u01b5\u0001\u0000\u0000\u0000X\u01b9\u0001\u0000\u0000\u0000Z\u01bc\u0001"+ - "\u0000\u0000\u0000\\\u01bf\u0001\u0000\u0000\u0000^\u01c3\u0001\u0000"+ - "\u0000\u0000`\u01c6\u0001\u0000\u0000\u0000b\u01d7\u0001\u0000\u0000\u0000"+ - "d\u01dc\u0001\u0000\u0000\u0000f\u01e0\u0001\u0000\u0000\u0000h\u01e3"+ - "\u0001\u0000\u0000\u0000j\u01f0\u0001\u0000\u0000\u0000l\u01f4\u0001\u0000"+ - "\u0000\u0000n\u01f8\u0001\u0000\u0000\u0000p\u01fc\u0001\u0000\u0000\u0000"+ - "r\u0207\u0001\u0000\u0000\u0000t\u0209\u0001\u0000\u0000\u0000v\u0214"+ - "\u0001\u0000\u0000\u0000x\u021d\u0001\u0000\u0000\u0000z\u0222\u0001\u0000"+ - "\u0000\u0000|\u0228\u0001\u0000\u0000\u0000~\u022b\u0001\u0000\u0000\u0000"+ - "\u0080\u024a\u0001\u0000\u0000\u0000\u0082\u0285\u0001\u0000\u0000\u0000"+ - "\u0084\u0287\u0001\u0000\u0000\u0000\u0086\u0294\u0001\u0000\u0000\u0000"+ - "\u0088\u029a\u0001\u0000\u0000\u0000\u008a\u02af\u0001\u0000\u0000\u0000"+ - "\u008c\u02b9\u0001\u0000\u0000\u0000\u008e\u02cf\u0001\u0000\u0000\u0000"+ - "\u0090\u02d1\u0001\u0000\u0000\u0000\u0092\u02de\u0001\u0000\u0000\u0000"+ - "\u0094\u030c\u0001\u0000\u0000\u0000\u0096\u030e\u0001\u0000\u0000\u0000"+ - "\u0098\u0312\u0001\u0000\u0000\u0000\u009a\u0315\u0001\u0000\u0000\u0000"+ - "\u009c\u031a\u0001\u0000\u0000\u0000\u009e\u031e\u0001\u0000\u0000\u0000"+ - "\u00a0\u0320\u0001\u0000\u0000\u0000\u00a2\u0322\u0001\u0000\u0000\u0000"+ - "\u00a4\u0327\u0001\u0000\u0000\u0000\u00a6\u0329\u0001\u0000\u0000\u0000"+ - "\u00a8\u0332\u0001\u0000\u0000\u0000\u00aa\u00ab\u0003\u0002\u0001\u0000"+ - "\u00ab\u00ac\u0005\u0000\u0000\u0001\u00ac\u0001\u0001\u0000\u0000\u0000"+ - "\u00ad\u00ae\u0006\u0001\uffff\uffff\u0000\u00ae\u00af\u0003\u0004\u0002"+ - "\u0000\u00af\u00b5\u0001\u0000\u0000\u0000\u00b0\u00b1\n\u0001\u0000\u0000"+ - "\u00b1\u00b2\u00054\u0000\u0000\u00b2\u00b4\u0003\u0006\u0003\u0000\u00b3"+ - "\u00b0\u0001\u0000\u0000\u0000\u00b4\u00b7\u0001\u0000\u0000\u0000\u00b5"+ - "\u00b3\u0001\u0000\u0000\u0000\u00b5\u00b6\u0001\u0000\u0000\u0000\u00b6"+ - "\u0003\u0001\u0000\u0000\u0000\u00b7\u00b5\u0001\u0000\u0000\u0000\u00b8"+ - "\u00c0\u0003\u0016\u000b\u0000\u00b9\u00c0\u0003\f\u0006\u0000\u00ba\u00c0"+ - "\u0003^/\u0000\u00bb\u00bc\u0004\u0002\u0001\u0000\u00bc\u00c0\u0003\u0018"+ - "\f\u0000\u00bd\u00be\u0004\u0002\u0002\u0000\u00be\u00c0\u0003Z-\u0000"+ - "\u00bf\u00b8\u0001\u0000\u0000\u0000\u00bf\u00b9\u0001\u0000\u0000\u0000"+ - "\u00bf\u00ba\u0001\u0000\u0000\u0000\u00bf\u00bb\u0001\u0000\u0000\u0000"+ - "\u00bf\u00bd\u0001\u0000\u0000\u0000\u00c0\u0005\u0001\u0000\u0000\u0000"+ - "\u00c1\u00dc\u0003(\u0014\u0000\u00c2\u00dc\u0003\b\u0004\u0000\u00c3"+ - "\u00dc\u0003F#\u0000\u00c4\u00dc\u0003@ \u0000\u00c5\u00dc\u0003*\u0015"+ - "\u0000\u00c6\u00dc\u0003B!\u0000\u00c7\u00dc\u0003H$\u0000\u00c8\u00dc"+ - "\u0003J%\u0000\u00c9\u00dc\u0003N\'\u0000\u00ca\u00dc\u0003V+\u0000\u00cb"+ - "\u00dc\u0003`0\u0000\u00cc\u00dc\u0003X,\u0000\u00cd\u00dc\u0003\u00a2"+ - "Q\u0000\u00ce\u00dc\u0003h4\u0000\u00cf\u00dc\u0003v;\u0000\u00d0\u00dc"+ - "\u0003f3\u0000\u00d1\u00dc\u0003j5\u0000\u00d2\u00dc\u0003t:\u0000\u00d3"+ - "\u00d4\u0004\u0003\u0003\u0000\u00d4\u00dc\u0003z=\u0000\u00d5\u00d6\u0004"+ - "\u0003\u0004\u0000\u00d6\u00dc\u0003x<\u0000\u00d7\u00d8\u0004\u0003\u0005"+ - "\u0000\u00d8\u00dc\u0003|>\u0000\u00d9\u00da\u0004\u0003\u0006\u0000\u00da"+ - "\u00dc\u0003~?\u0000\u00db\u00c1\u0001\u0000\u0000\u0000\u00db\u00c2\u0001"+ - "\u0000\u0000\u0000\u00db\u00c3\u0001\u0000\u0000\u0000\u00db\u00c4\u0001"+ - "\u0000\u0000\u0000\u00db\u00c5\u0001\u0000\u0000\u0000\u00db\u00c6\u0001"+ - "\u0000\u0000\u0000\u00db\u00c7\u0001\u0000\u0000\u0000\u00db\u00c8\u0001"+ - "\u0000\u0000\u0000\u00db\u00c9\u0001\u0000\u0000\u0000\u00db\u00ca\u0001"+ - "\u0000\u0000\u0000\u00db\u00cb\u0001\u0000\u0000\u0000\u00db\u00cc\u0001"+ - "\u0000\u0000\u0000\u00db\u00cd\u0001\u0000\u0000\u0000\u00db\u00ce\u0001"+ - "\u0000\u0000\u0000\u00db\u00cf\u0001\u0000\u0000\u0000\u00db\u00d0\u0001"+ - "\u0000\u0000\u0000\u00db\u00d1\u0001\u0000\u0000\u0000\u00db\u00d2\u0001"+ - "\u0000\u0000\u0000\u00db\u00d3\u0001\u0000\u0000\u0000\u00db\u00d5\u0001"+ - "\u0000\u0000\u0000\u00db\u00d7\u0001\u0000\u0000\u0000\u00db\u00d9\u0001"+ - "\u0000\u0000\u0000\u00dc\u0007\u0001\u0000\u0000\u0000\u00dd\u00de\u0005"+ - "\u0011\u0000\u0000\u00de\u00df\u0003\u0080@\u0000\u00df\t\u0001\u0000"+ - "\u0000\u0000\u00e0\u00e1\u00036\u001b\u0000\u00e1\u000b\u0001\u0000\u0000"+ - "\u0000\u00e2\u00e3\u0005\r\u0000\u0000\u00e3\u00e4\u0003\u000e\u0007\u0000"+ - "\u00e4\r\u0001\u0000\u0000\u0000\u00e5\u00ea\u0003\u0010\b\u0000\u00e6"+ - "\u00e7\u0005>\u0000\u0000\u00e7\u00e9\u0003\u0010\b\u0000\u00e8\u00e6"+ - "\u0001\u0000\u0000\u0000\u00e9\u00ec\u0001\u0000\u0000\u0000\u00ea\u00e8"+ - "\u0001\u0000\u0000\u0000\u00ea\u00eb\u0001\u0000\u0000\u0000\u00eb\u000f"+ - "\u0001\u0000\u0000\u0000\u00ec\u00ea\u0001\u0000\u0000\u0000\u00ed\u00ee"+ - "\u00030\u0018\u0000\u00ee\u00ef\u0005:\u0000\u0000\u00ef\u00f1\u0001\u0000"+ - "\u0000\u0000\u00f0\u00ed\u0001\u0000\u0000\u0000\u00f0\u00f1\u0001\u0000"+ - "\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2\u00f3\u0003\u0080"+ - "@\u0000\u00f3\u0011\u0001\u0000\u0000\u0000\u00f4\u00f9\u0003\u0014\n"+ - "\u0000\u00f5\u00f6\u0005>\u0000\u0000\u00f6\u00f8\u0003\u0014\n\u0000"+ - "\u00f7\u00f5\u0001\u0000\u0000\u0000\u00f8\u00fb\u0001\u0000\u0000\u0000"+ - "\u00f9\u00f7\u0001\u0000\u0000\u0000\u00f9\u00fa\u0001\u0000\u0000\u0000"+ - "\u00fa\u0013\u0001\u0000\u0000\u0000\u00fb\u00f9\u0001\u0000\u0000\u0000"+ - "\u00fc\u00ff\u00030\u0018\u0000\u00fd\u00fe\u0005:\u0000\u0000\u00fe\u0100"+ - "\u0003\u0080@\u0000\u00ff\u00fd\u0001\u0000\u0000\u0000\u00ff\u0100\u0001"+ - "\u0000\u0000\u0000\u0100\u0015\u0001\u0000\u0000\u0000\u0101\u0102\u0005"+ - "\u0013\u0000\u0000\u0102\u0103\u0003\u001a\r\u0000\u0103\u0017\u0001\u0000"+ - "\u0000\u0000\u0104\u0105\u0005\u0014\u0000\u0000\u0105\u0106\u0003\u001a"+ - "\r\u0000\u0106\u0019\u0001\u0000\u0000\u0000\u0107\u010c\u0003\u001c\u000e"+ - "\u0000\u0108\u0109\u0005>\u0000\u0000\u0109\u010b\u0003\u001c\u000e\u0000"+ - "\u010a\u0108\u0001\u0000\u0000\u0000\u010b\u010e\u0001\u0000\u0000\u0000"+ - "\u010c\u010a\u0001\u0000\u0000\u0000\u010c\u010d\u0001\u0000\u0000\u0000"+ - "\u010d\u0110\u0001\u0000\u0000\u0000\u010e\u010c\u0001\u0000\u0000\u0000"+ - "\u010f\u0111\u0003&\u0013\u0000\u0110\u010f\u0001\u0000\u0000\u0000\u0110"+ - "\u0111\u0001\u0000\u0000\u0000\u0111\u001b\u0001\u0000\u0000\u0000\u0112"+ - "\u0113\u0003\u001e\u000f\u0000\u0113\u0114\u0005=\u0000\u0000\u0114\u0115"+ - "\u0003\"\u0011\u0000\u0115\u011c\u0001\u0000\u0000\u0000\u0116\u0117\u0003"+ - "\"\u0011\u0000\u0117\u0118\u0005<\u0000\u0000\u0118\u0119\u0003 \u0010"+ - "\u0000\u0119\u011c\u0001\u0000\u0000\u0000\u011a\u011c\u0003$\u0012\u0000"+ - "\u011b\u0112\u0001\u0000\u0000\u0000\u011b\u0116\u0001\u0000\u0000\u0000"+ - "\u011b\u011a\u0001\u0000\u0000\u0000\u011c\u001d\u0001\u0000\u0000\u0000"+ - "\u011d\u011e\u0005k\u0000\u0000\u011e\u001f\u0001\u0000\u0000\u0000\u011f"+ - "\u0120\u0005k\u0000\u0000\u0120!\u0001\u0000\u0000\u0000\u0121\u0122\u0005"+ - "k\u0000\u0000\u0122#\u0001\u0000\u0000\u0000\u0123\u0124\u0007\u0000\u0000"+ - "\u0000\u0124%\u0001\u0000\u0000\u0000\u0125\u0126\u0005j\u0000\u0000\u0126"+ - "\u012b\u0005k\u0000\u0000\u0127\u0128\u0005>\u0000\u0000\u0128\u012a\u0005"+ - "k\u0000\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u012a\u012d\u0001\u0000"+ - "\u0000\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012b\u012c\u0001\u0000"+ - "\u0000\u0000\u012c\'\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000"+ - "\u0000\u012e\u012f\u0005\t\u0000\u0000\u012f\u0130\u0003\u000e\u0007\u0000"+ - "\u0130)\u0001\u0000\u0000\u0000\u0131\u0133\u0005\u0010\u0000\u0000\u0132"+ - "\u0134\u0003,\u0016\u0000\u0133\u0132\u0001\u0000\u0000\u0000\u0133\u0134"+ - "\u0001\u0000\u0000\u0000\u0134\u0137\u0001\u0000\u0000\u0000\u0135\u0136"+ - "\u0005;\u0000\u0000\u0136\u0138\u0003\u000e\u0007\u0000\u0137\u0135\u0001"+ - "\u0000\u0000\u0000\u0137\u0138\u0001\u0000\u0000\u0000\u0138+\u0001\u0000"+ - "\u0000\u0000\u0139\u013e\u0003.\u0017\u0000\u013a\u013b\u0005>\u0000\u0000"+ - "\u013b\u013d\u0003.\u0017\u0000\u013c\u013a\u0001\u0000\u0000\u0000\u013d"+ - "\u0140\u0001\u0000\u0000\u0000\u013e\u013c\u0001\u0000\u0000\u0000\u013e"+ - "\u013f\u0001\u0000\u0000\u0000\u013f-\u0001\u0000\u0000\u0000\u0140\u013e"+ - "\u0001\u0000\u0000\u0000\u0141\u0144\u0003\u0010\b\u0000\u0142\u0143\u0005"+ - "\u0011\u0000\u0000\u0143\u0145\u0003\u0080@\u0000\u0144\u0142\u0001\u0000"+ - "\u0000\u0000\u0144\u0145\u0001\u0000\u0000\u0000\u0145/\u0001\u0000\u0000"+ - "\u0000\u0146\u014b\u0003>\u001f\u0000\u0147\u0148\u0005@\u0000\u0000\u0148"+ - "\u014a\u0003>\u001f\u0000\u0149\u0147\u0001\u0000\u0000\u0000\u014a\u014d"+ - "\u0001\u0000\u0000\u0000\u014b\u0149\u0001\u0000\u0000\u0000\u014b\u014c"+ - "\u0001\u0000\u0000\u0000\u014c1\u0001\u0000\u0000\u0000\u014d\u014b\u0001"+ - "\u0000\u0000\u0000\u014e\u0153\u00038\u001c\u0000\u014f\u0150\u0005@\u0000"+ - "\u0000\u0150\u0152\u00038\u001c\u0000\u0151\u014f\u0001\u0000\u0000\u0000"+ - "\u0152\u0155\u0001\u0000\u0000\u0000\u0153\u0151\u0001\u0000\u0000\u0000"+ - "\u0153\u0154\u0001\u0000\u0000\u0000\u01543\u0001\u0000\u0000\u0000\u0155"+ - "\u0153\u0001\u0000\u0000\u0000\u0156\u015b\u00032\u0019\u0000\u0157\u0158"+ - "\u0005>\u0000\u0000\u0158\u015a\u00032\u0019\u0000\u0159\u0157\u0001\u0000"+ - "\u0000\u0000\u015a\u015d\u0001\u0000\u0000\u0000\u015b\u0159\u0001\u0000"+ - "\u0000\u0000\u015b\u015c\u0001\u0000\u0000\u0000\u015c5\u0001\u0000\u0000"+ - "\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015e\u015f\u0007\u0001\u0000"+ - "\u0000\u015f7\u0001\u0000\u0000\u0000\u0160\u0164\u0005\u0080\u0000\u0000"+ - "\u0161\u0164\u0003:\u001d\u0000\u0162\u0164\u0003<\u001e\u0000\u0163\u0160"+ - "\u0001\u0000\u0000\u0000\u0163\u0161\u0001\u0000\u0000\u0000\u0163\u0162"+ - "\u0001\u0000\u0000\u0000\u01649\u0001\u0000\u0000\u0000\u0165\u0168\u0005"+ - "L\u0000\u0000\u0166\u0168\u0005_\u0000\u0000\u0167\u0165\u0001\u0000\u0000"+ - "\u0000\u0167\u0166\u0001\u0000\u0000\u0000\u0168;\u0001\u0000\u0000\u0000"+ - "\u0169\u016c\u0005^\u0000\u0000\u016a\u016c\u0005`\u0000\u0000\u016b\u0169"+ - "\u0001\u0000\u0000\u0000\u016b\u016a\u0001\u0000\u0000\u0000\u016c=\u0001"+ - "\u0000\u0000\u0000\u016d\u0171\u00036\u001b\u0000\u016e\u0171\u0003:\u001d"+ - "\u0000\u016f\u0171\u0003<\u001e\u0000\u0170\u016d\u0001\u0000\u0000\u0000"+ - "\u0170\u016e\u0001\u0000\u0000\u0000\u0170\u016f\u0001\u0000\u0000\u0000"+ - "\u0171?\u0001\u0000\u0000\u0000\u0172\u0173\u0005\u000b\u0000\u0000\u0173"+ - "\u0174\u0003\u0094J\u0000\u0174A\u0001\u0000\u0000\u0000\u0175\u0176\u0005"+ - "\u000f\u0000\u0000\u0176\u017b\u0003D\"\u0000\u0177\u0178\u0005>\u0000"+ - "\u0000\u0178\u017a\u0003D\"\u0000\u0179\u0177\u0001\u0000\u0000\u0000"+ - "\u017a\u017d\u0001\u0000\u0000\u0000\u017b\u0179\u0001\u0000\u0000\u0000"+ - "\u017b\u017c\u0001\u0000\u0000\u0000\u017cC\u0001\u0000\u0000\u0000\u017d"+ - "\u017b\u0001\u0000\u0000\u0000\u017e\u0180\u0003\u0080@\u0000\u017f\u0181"+ - "\u0007\u0002\u0000\u0000\u0180\u017f\u0001\u0000\u0000\u0000\u0180\u0181"+ - "\u0001\u0000\u0000\u0000\u0181\u0184\u0001\u0000\u0000\u0000\u0182\u0183"+ - "\u0005I\u0000\u0000\u0183\u0185\u0007\u0003\u0000\u0000\u0184\u0182\u0001"+ - "\u0000\u0000\u0000\u0184\u0185\u0001\u0000\u0000\u0000\u0185E\u0001\u0000"+ - "\u0000\u0000\u0186\u0187\u0005\u001e\u0000\u0000\u0187\u0188\u00034\u001a"+ - "\u0000\u0188G\u0001\u0000\u0000\u0000\u0189\u018a\u0005\u001d\u0000\u0000"+ - "\u018a\u018b\u00034\u001a\u0000\u018bI\u0001\u0000\u0000\u0000\u018c\u018d"+ - "\u0005 \u0000\u0000\u018d\u0192\u0003L&\u0000\u018e\u018f\u0005>\u0000"+ - "\u0000\u018f\u0191\u0003L&\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\u0193K\u0001\u0000\u0000\u0000\u0194\u0192"+ - "\u0001\u0000\u0000\u0000\u0195\u0196\u00032\u0019\u0000\u0196\u0197\u0005"+ - "\u0084\u0000\u0000\u0197\u0198\u00032\u0019\u0000\u0198\u019e\u0001\u0000"+ - "\u0000\u0000\u0199\u019a\u00032\u0019\u0000\u019a\u019b\u0005:\u0000\u0000"+ - "\u019b\u019c\u00032\u0019\u0000\u019c\u019e\u0001\u0000\u0000\u0000\u019d"+ - "\u0195\u0001\u0000\u0000\u0000\u019d\u0199\u0001\u0000\u0000\u0000\u019e"+ - "M\u0001\u0000\u0000\u0000\u019f\u01a0\u0005\b\u0000\u0000\u01a0\u01a1"+ - "\u0003\u008aE\u0000\u01a1\u01a3\u0003\u009eO\u0000\u01a2\u01a4\u0003P"+ - "(\u0000\u01a3\u01a2\u0001\u0000\u0000\u0000\u01a3\u01a4\u0001\u0000\u0000"+ - "\u0000\u01a4O\u0001\u0000\u0000\u0000\u01a5\u01aa\u0003R)\u0000\u01a6"+ - "\u01a7\u0005>\u0000\u0000\u01a7\u01a9\u0003R)\u0000\u01a8\u01a6\u0001"+ - "\u0000\u0000\u0000\u01a9\u01ac\u0001\u0000\u0000\u0000\u01aa\u01a8\u0001"+ - "\u0000\u0000\u0000\u01aa\u01ab\u0001\u0000\u0000\u0000\u01abQ\u0001\u0000"+ - "\u0000\u0000\u01ac\u01aa\u0001\u0000\u0000\u0000\u01ad\u01ae\u00036\u001b"+ - "\u0000\u01ae\u01af\u0005:\u0000\u0000\u01af\u01b0\u0003\u0094J\u0000\u01b0"+ - "S\u0001\u0000\u0000\u0000\u01b1\u01b2\u0005O\u0000\u0000\u01b2\u01b4\u0003"+ - "\u0090H\u0000\u01b3\u01b1\u0001\u0000\u0000\u0000\u01b3\u01b4\u0001\u0000"+ - "\u0000\u0000\u01b4U\u0001\u0000\u0000\u0000\u01b5\u01b6\u0005\n\u0000"+ - "\u0000\u01b6\u01b7\u0003\u008aE\u0000\u01b7\u01b8\u0003\u009eO\u0000\u01b8"+ - "W\u0001\u0000\u0000\u0000\u01b9\u01ba\u0005\u001c\u0000\u0000\u01ba\u01bb"+ - "\u00030\u0018\u0000\u01bbY\u0001\u0000\u0000\u0000\u01bc\u01bd\u0005\u0006"+ - "\u0000\u0000\u01bd\u01be\u0003\\.\u0000\u01be[\u0001\u0000\u0000\u0000"+ - "\u01bf\u01c0\u0005c\u0000\u0000\u01c0\u01c1\u0003\u0002\u0001\u0000\u01c1"+ - "\u01c2\u0005d\u0000\u0000\u01c2]\u0001\u0000\u0000\u0000\u01c3\u01c4\u0005"+ - "!\u0000\u0000\u01c4\u01c5\u0005\u0088\u0000\u0000\u01c5_\u0001\u0000\u0000"+ - "\u0000\u01c6\u01c7\u0005\u0005\u0000\u0000\u01c7\u01ca\u0003b1\u0000\u01c8"+ - "\u01c9\u0005J\u0000\u0000\u01c9\u01cb\u00032\u0019\u0000\u01ca\u01c8\u0001"+ - "\u0000\u0000\u0000\u01ca\u01cb\u0001\u0000\u0000\u0000\u01cb\u01d5\u0001"+ - "\u0000\u0000\u0000\u01cc\u01cd\u0005O\u0000\u0000\u01cd\u01d2\u0003d2"+ - "\u0000\u01ce\u01cf\u0005>\u0000\u0000\u01cf\u01d1\u0003d2\u0000\u01d0"+ - "\u01ce\u0001\u0000\u0000\u0000\u01d1\u01d4\u0001\u0000\u0000\u0000\u01d2"+ - "\u01d0\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3"+ - "\u01d6\u0001\u0000\u0000\u0000\u01d4\u01d2\u0001\u0000\u0000\u0000\u01d5"+ - "\u01cc\u0001\u0000\u0000\u0000\u01d5\u01d6\u0001\u0000\u0000\u0000\u01d6"+ - "a\u0001\u0000\u0000\u0000\u01d7\u01d8\u0007\u0004\u0000\u0000\u01d8c\u0001"+ - "\u0000\u0000\u0000\u01d9\u01da\u00032\u0019\u0000\u01da\u01db\u0005:\u0000"+ - "\u0000\u01db\u01dd\u0001\u0000\u0000\u0000\u01dc\u01d9\u0001\u0000\u0000"+ - "\u0000\u01dc\u01dd\u0001\u0000\u0000\u0000\u01dd\u01de\u0001\u0000\u0000"+ - "\u0000\u01de\u01df\u00032\u0019\u0000\u01dfe\u0001\u0000\u0000\u0000\u01e0"+ - "\u01e1\u0005\u000e\u0000\u0000\u01e1\u01e2\u0003\u0094J\u0000\u01e2g\u0001"+ - "\u0000\u0000\u0000\u01e3\u01e4\u0005\u0004\u0000\u0000\u01e4\u01e7\u0003"+ - "0\u0018\u0000\u01e5\u01e6\u0005J\u0000\u0000\u01e6\u01e8\u00030\u0018"+ - "\u0000\u01e7\u01e5\u0001\u0000\u0000\u0000\u01e7\u01e8\u0001\u0000\u0000"+ - "\u0000\u01e8\u01ee\u0001\u0000\u0000\u0000\u01e9\u01ea\u0005\u0084\u0000"+ - "\u0000\u01ea\u01eb\u00030\u0018\u0000\u01eb\u01ec\u0005>\u0000\u0000\u01ec"+ - "\u01ed\u00030\u0018\u0000\u01ed\u01ef\u0001\u0000\u0000\u0000\u01ee\u01e9"+ - "\u0001\u0000\u0000\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01efi\u0001"+ - "\u0000\u0000\u0000\u01f0\u01f1\u0005\u0015\u0000\u0000\u01f1\u01f2\u0003"+ - "l6\u0000\u01f2k\u0001\u0000\u0000\u0000\u01f3\u01f5\u0003n7\u0000\u01f4"+ - "\u01f3\u0001\u0000\u0000\u0000\u01f5\u01f6\u0001\u0000\u0000\u0000\u01f6"+ - "\u01f4\u0001\u0000\u0000\u0000\u01f6\u01f7\u0001\u0000\u0000\u0000\u01f7"+ - "m\u0001\u0000\u0000\u0000\u01f8\u01f9\u0005c\u0000\u0000\u01f9\u01fa\u0003"+ - "p8\u0000\u01fa\u01fb\u0005d\u0000\u0000\u01fbo\u0001\u0000\u0000\u0000"+ - "\u01fc\u01fd\u00068\uffff\uffff\u0000\u01fd\u01fe\u0003r9\u0000\u01fe"+ - "\u0204\u0001\u0000\u0000\u0000\u01ff\u0200\n\u0001\u0000\u0000\u0200\u0201"+ - "\u00054\u0000\u0000\u0201\u0203\u0003r9\u0000\u0202\u01ff\u0001\u0000"+ - "\u0000\u0000\u0203\u0206\u0001\u0000\u0000\u0000\u0204\u0202\u0001\u0000"+ - "\u0000\u0000\u0204\u0205\u0001\u0000\u0000\u0000\u0205q\u0001\u0000\u0000"+ - "\u0000\u0206\u0204\u0001\u0000\u0000\u0000\u0207\u0208\u0003\u0006\u0003"+ - "\u0000\u0208s\u0001\u0000\u0000\u0000\u0209\u020d\u0005\f\u0000\u0000"+ - "\u020a\u020b\u00030\u0018\u0000\u020b\u020c\u0005:\u0000\u0000\u020c\u020e"+ - "\u0001\u0000\u0000\u0000\u020d\u020a\u0001\u0000\u0000\u0000\u020d\u020e"+ - "\u0001\u0000\u0000\u0000\u020e\u020f\u0001\u0000\u0000\u0000\u020f\u0210"+ - "\u0003\u0094J\u0000\u0210\u0211\u0005J\u0000\u0000\u0211\u0212\u0003\u0012"+ - "\t\u0000\u0212\u0213\u0003T*\u0000\u0213u\u0001\u0000\u0000\u0000\u0214"+ - "\u0218\u0005\u0007\u0000\u0000\u0215\u0216\u00030\u0018\u0000\u0216\u0217"+ - "\u0005:\u0000\u0000\u0217\u0219\u0001\u0000\u0000\u0000\u0218\u0215\u0001"+ - "\u0000\u0000\u0000\u0218\u0219\u0001\u0000\u0000\u0000\u0219\u021a\u0001"+ - "\u0000\u0000\u0000\u021a\u021b\u0003\u008aE\u0000\u021b\u021c\u0003T*"+ - "\u0000\u021cw\u0001\u0000\u0000\u0000\u021d\u021e\u0005\u001b\u0000\u0000"+ - "\u021e\u021f\u0003\u001c\u000e\u0000\u021f\u0220\u0005J\u0000\u0000\u0220"+ - "\u0221\u00034\u001a\u0000\u0221y\u0001\u0000\u0000\u0000\u0222\u0223\u0005"+ - "\u0012\u0000\u0000\u0223\u0226\u0003,\u0016\u0000\u0224\u0225\u0005;\u0000"+ - "\u0000\u0225\u0227\u0003\u000e\u0007\u0000\u0226\u0224\u0001\u0000\u0000"+ - "\u0000\u0226\u0227\u0001\u0000\u0000\u0000\u0227{\u0001\u0000\u0000\u0000"+ - "\u0228\u0229\u0005\u001f\u0000\u0000\u0229\u022a\u00034\u001a\u0000\u022a"+ - "}\u0001\u0000\u0000\u0000\u022b\u022c\u0005\u0016\u0000\u0000\u022c\u007f"+ - "\u0001\u0000\u0000\u0000\u022d\u022e\u0006@\uffff\uffff\u0000\u022e\u022f"+ - "\u0005G\u0000\u0000\u022f\u024b\u0003\u0080@\b\u0230\u024b\u0003\u0086"+ - "C\u0000\u0231\u024b\u0003\u0082A\u0000\u0232\u0234\u0003\u0086C\u0000"+ - "\u0233\u0235\u0005G\u0000\u0000\u0234\u0233\u0001\u0000\u0000\u0000\u0234"+ - "\u0235\u0001\u0000\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236"+ - "\u0237\u0005C\u0000\u0000\u0237\u0238\u0005c\u0000\u0000\u0238\u023d\u0003"+ - "\u0086C\u0000\u0239\u023a\u0005>\u0000\u0000\u023a\u023c\u0003\u0086C"+ - "\u0000\u023b\u0239\u0001\u0000\u0000\u0000\u023c\u023f\u0001\u0000\u0000"+ - "\u0000\u023d\u023b\u0001\u0000\u0000\u0000\u023d\u023e\u0001\u0000\u0000"+ - "\u0000\u023e\u0240\u0001\u0000\u0000\u0000\u023f\u023d\u0001\u0000\u0000"+ - "\u0000\u0240\u0241\u0005d\u0000\u0000\u0241\u024b\u0001\u0000\u0000\u0000"+ - "\u0242\u0243\u0003\u0086C\u0000\u0243\u0245\u0005D\u0000\u0000\u0244\u0246"+ - "\u0005G\u0000\u0000\u0245\u0244\u0001\u0000\u0000\u0000\u0245\u0246\u0001"+ - "\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000\u0000\u0247\u0248\u0005"+ - "H\u0000\u0000\u0248\u024b\u0001\u0000\u0000\u0000\u0249\u024b\u0003\u0084"+ - "B\u0000\u024a\u022d\u0001\u0000\u0000\u0000\u024a\u0230\u0001\u0000\u0000"+ - "\u0000\u024a\u0231\u0001\u0000\u0000\u0000\u024a\u0232\u0001\u0000\u0000"+ - "\u0000\u024a\u0242\u0001\u0000\u0000\u0000\u024a\u0249\u0001\u0000\u0000"+ - "\u0000\u024b\u0254\u0001\u0000\u0000\u0000\u024c\u024d\n\u0005\u0000\u0000"+ - "\u024d\u024e\u00058\u0000\u0000\u024e\u0253\u0003\u0080@\u0006\u024f\u0250"+ - "\n\u0004\u0000\u0000\u0250\u0251\u0005K\u0000\u0000\u0251\u0253\u0003"+ - "\u0080@\u0005\u0252\u024c\u0001\u0000\u0000\u0000\u0252\u024f\u0001\u0000"+ - "\u0000\u0000\u0253\u0256\u0001\u0000\u0000\u0000\u0254\u0252\u0001\u0000"+ - "\u0000\u0000\u0254\u0255\u0001\u0000\u0000\u0000\u0255\u0081\u0001\u0000"+ - "\u0000\u0000\u0256\u0254\u0001\u0000\u0000\u0000\u0257\u0259\u0003\u0086"+ - "C\u0000\u0258\u025a\u0005G\u0000\u0000\u0259\u0258\u0001\u0000\u0000\u0000"+ - "\u0259\u025a\u0001\u0000\u0000\u0000\u025a\u025b\u0001\u0000\u0000\u0000"+ - "\u025b\u025c\u0005F\u0000\u0000\u025c\u025d\u0003\u009eO\u0000\u025d\u0286"+ - "\u0001\u0000\u0000\u0000\u025e\u0260\u0003\u0086C\u0000\u025f\u0261\u0005"+ - "G\u0000\u0000\u0260\u025f\u0001\u0000\u0000\u0000\u0260\u0261\u0001\u0000"+ - "\u0000\u0000\u0261\u0262\u0001\u0000\u0000\u0000\u0262\u0263\u0005M\u0000"+ - "\u0000\u0263\u0264\u0003\u009eO\u0000\u0264\u0286\u0001\u0000\u0000\u0000"+ - "\u0265\u0267\u0003\u0086C\u0000\u0266\u0268\u0005G\u0000\u0000\u0267\u0266"+ - "\u0001\u0000\u0000\u0000\u0267\u0268\u0001\u0000\u0000\u0000\u0268\u0269"+ - "\u0001\u0000\u0000\u0000\u0269\u026a\u0005F\u0000\u0000\u026a\u026b\u0005"+ - "c\u0000\u0000\u026b\u0270\u0003\u009eO\u0000\u026c\u026d\u0005>\u0000"+ - "\u0000\u026d\u026f\u0003\u009eO\u0000\u026e\u026c\u0001\u0000\u0000\u0000"+ - "\u026f\u0272\u0001\u0000\u0000\u0000\u0270\u026e\u0001\u0000\u0000\u0000"+ - "\u0270\u0271\u0001\u0000\u0000\u0000\u0271\u0273\u0001\u0000\u0000\u0000"+ - "\u0272\u0270\u0001\u0000\u0000\u0000\u0273\u0274\u0005d\u0000\u0000\u0274"+ - "\u0286\u0001\u0000\u0000\u0000\u0275\u0277\u0003\u0086C\u0000\u0276\u0278"+ - "\u0005G\u0000\u0000\u0277\u0276\u0001\u0000\u0000\u0000\u0277\u0278\u0001"+ - "\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000\u0000\u0279\u027a\u0005"+ - "M\u0000\u0000\u027a\u027b\u0005c\u0000\u0000\u027b\u0280\u0003\u009eO"+ - "\u0000\u027c\u027d\u0005>\u0000\u0000\u027d\u027f\u0003\u009eO\u0000\u027e"+ - "\u027c\u0001\u0000\u0000\u0000\u027f\u0282\u0001\u0000\u0000\u0000\u0280"+ - "\u027e\u0001\u0000\u0000\u0000\u0280\u0281\u0001\u0000\u0000\u0000\u0281"+ - "\u0283\u0001\u0000\u0000\u0000\u0282\u0280\u0001\u0000\u0000\u0000\u0283"+ - "\u0284\u0005d\u0000\u0000\u0284\u0286\u0001\u0000\u0000\u0000\u0285\u0257"+ - "\u0001\u0000\u0000\u0000\u0285\u025e\u0001\u0000\u0000\u0000\u0285\u0265"+ - "\u0001\u0000\u0000\u0000\u0285\u0275\u0001\u0000\u0000\u0000\u0286\u0083"+ - "\u0001\u0000\u0000\u0000\u0287\u028a\u00030\u0018\u0000\u0288\u0289\u0005"+ - "<\u0000\u0000\u0289\u028b\u0003\n\u0005\u0000\u028a\u0288\u0001\u0000"+ - "\u0000\u0000\u028a\u028b\u0001\u0000\u0000\u0000\u028b\u028c\u0001\u0000"+ - "\u0000\u0000\u028c\u028d\u0005=\u0000\u0000\u028d\u028e\u0003\u0094J\u0000"+ - "\u028e\u0085\u0001\u0000\u0000\u0000\u028f\u0295\u0003\u0088D\u0000\u0290"+ - "\u0291\u0003\u0088D\u0000\u0291\u0292\u0003\u00a0P\u0000\u0292\u0293\u0003"+ - "\u0088D\u0000\u0293\u0295\u0001\u0000\u0000\u0000\u0294\u028f\u0001\u0000"+ - "\u0000\u0000\u0294\u0290\u0001\u0000\u0000\u0000\u0295\u0087\u0001\u0000"+ - "\u0000\u0000\u0296\u0297\u0006D\uffff\uffff\u0000\u0297\u029b\u0003\u008a"+ - "E\u0000\u0298\u0299\u0007\u0005\u0000\u0000\u0299\u029b\u0003\u0088D\u0003"+ - "\u029a\u0296\u0001\u0000\u0000\u0000\u029a\u0298\u0001\u0000\u0000\u0000"+ - "\u029b\u02a4\u0001\u0000\u0000\u0000\u029c\u029d\n\u0002\u0000\u0000\u029d"+ - "\u029e\u0007\u0006\u0000\u0000\u029e\u02a3\u0003\u0088D\u0003\u029f\u02a0"+ - "\n\u0001\u0000\u0000\u02a0\u02a1\u0007\u0005\u0000\u0000\u02a1\u02a3\u0003"+ - "\u0088D\u0002\u02a2\u029c\u0001\u0000\u0000\u0000\u02a2\u029f\u0001\u0000"+ - "\u0000\u0000\u02a3\u02a6\u0001\u0000\u0000\u0000\u02a4\u02a2\u0001\u0000"+ - "\u0000\u0000\u02a4\u02a5\u0001\u0000\u0000\u0000\u02a5\u0089\u0001\u0000"+ - "\u0000\u0000\u02a6\u02a4\u0001\u0000\u0000\u0000\u02a7\u02a8\u0006E\uffff"+ - "\uffff\u0000\u02a8\u02b0\u0003\u0094J\u0000\u02a9\u02b0\u00030\u0018\u0000"+ - "\u02aa\u02b0\u0003\u008cF\u0000\u02ab\u02ac\u0005c\u0000\u0000\u02ac\u02ad"+ - "\u0003\u0080@\u0000\u02ad\u02ae\u0005d\u0000\u0000\u02ae\u02b0\u0001\u0000"+ - "\u0000\u0000\u02af\u02a7\u0001\u0000\u0000\u0000\u02af\u02a9\u0001\u0000"+ - "\u0000\u0000\u02af\u02aa\u0001\u0000\u0000\u0000\u02af\u02ab\u0001\u0000"+ - "\u0000\u0000\u02b0\u02b6\u0001\u0000\u0000\u0000\u02b1\u02b2\n\u0001\u0000"+ - "\u0000\u02b2\u02b3\u0005<\u0000\u0000\u02b3\u02b5\u0003\n\u0005\u0000"+ - "\u02b4\u02b1\u0001\u0000\u0000\u0000\u02b5\u02b8\u0001\u0000\u0000\u0000"+ - "\u02b6\u02b4\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000\u0000\u0000"+ - "\u02b7\u008b\u0001\u0000\u0000\u0000\u02b8\u02b6\u0001\u0000\u0000\u0000"+ - "\u02b9\u02ba\u0003\u008eG\u0000\u02ba\u02c8\u0005c\u0000\u0000\u02bb\u02c9"+ - "\u0005Y\u0000\u0000\u02bc\u02c1\u0003\u0080@\u0000\u02bd\u02be\u0005>"+ - "\u0000\u0000\u02be\u02c0\u0003\u0080@\u0000\u02bf\u02bd\u0001\u0000\u0000"+ - "\u0000\u02c0\u02c3\u0001\u0000\u0000\u0000\u02c1\u02bf\u0001\u0000\u0000"+ - "\u0000\u02c1\u02c2\u0001\u0000\u0000\u0000\u02c2\u02c6\u0001\u0000\u0000"+ - "\u0000\u02c3\u02c1\u0001\u0000\u0000\u0000\u02c4\u02c5\u0005>\u0000\u0000"+ - "\u02c5\u02c7\u0003\u0090H\u0000\u02c6\u02c4\u0001\u0000\u0000\u0000\u02c6"+ - "\u02c7\u0001\u0000\u0000\u0000\u02c7\u02c9\u0001\u0000\u0000\u0000\u02c8"+ - "\u02bb\u0001\u0000\u0000\u0000\u02c8\u02bc\u0001\u0000\u0000\u0000\u02c8"+ - "\u02c9\u0001\u0000\u0000\u0000\u02c9\u02ca\u0001\u0000\u0000\u0000\u02ca"+ - "\u02cb\u0005d\u0000\u0000\u02cb\u008d\u0001\u0000\u0000\u0000\u02cc\u02d0"+ - "\u0003>\u001f\u0000\u02cd\u02d0\u0005B\u0000\u0000\u02ce\u02d0\u0005E"+ - "\u0000\u0000\u02cf\u02cc\u0001\u0000\u0000\u0000\u02cf\u02cd\u0001\u0000"+ - "\u0000\u0000\u02cf\u02ce\u0001\u0000\u0000\u0000\u02d0\u008f\u0001\u0000"+ - "\u0000\u0000\u02d1\u02da\u0005\\\u0000\u0000\u02d2\u02d7\u0003\u0092I"+ - "\u0000\u02d3\u02d4\u0005>\u0000\u0000\u02d4\u02d6\u0003\u0092I\u0000\u02d5"+ - "\u02d3\u0001\u0000\u0000\u0000\u02d6\u02d9\u0001\u0000\u0000\u0000\u02d7"+ - "\u02d5\u0001\u0000\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8"+ - "\u02db\u0001\u0000\u0000\u0000\u02d9\u02d7\u0001\u0000\u0000\u0000\u02da"+ - "\u02d2\u0001\u0000\u0000\u0000\u02da\u02db\u0001\u0000\u0000\u0000\u02db"+ - "\u02dc\u0001\u0000\u0000\u0000\u02dc\u02dd\u0005]\u0000\u0000\u02dd\u0091"+ - "\u0001\u0000\u0000\u0000\u02de\u02df\u0003\u009eO\u0000\u02df\u02e0\u0005"+ - "=\u0000\u0000\u02e0\u02e1\u0003\u0094J\u0000\u02e1\u0093\u0001\u0000\u0000"+ - "\u0000\u02e2\u030d\u0005H\u0000\u0000\u02e3\u02e4\u0003\u009cN\u0000\u02e4"+ - "\u02e5\u0005e\u0000\u0000\u02e5\u030d\u0001\u0000\u0000\u0000\u02e6\u030d"+ - "\u0003\u009aM\u0000\u02e7\u030d\u0003\u009cN\u0000\u02e8\u030d\u0003\u0096"+ - "K\u0000\u02e9\u030d\u0003:\u001d\u0000\u02ea\u030d\u0003\u009eO\u0000"+ - "\u02eb\u02ec\u0005a\u0000\u0000\u02ec\u02f1\u0003\u0098L\u0000\u02ed\u02ee"+ - "\u0005>\u0000\u0000\u02ee\u02f0\u0003\u0098L\u0000\u02ef\u02ed\u0001\u0000"+ - "\u0000\u0000\u02f0\u02f3\u0001\u0000\u0000\u0000\u02f1\u02ef\u0001\u0000"+ - "\u0000\u0000\u02f1\u02f2\u0001\u0000\u0000\u0000\u02f2\u02f4\u0001\u0000"+ - "\u0000\u0000\u02f3\u02f1\u0001\u0000\u0000\u0000\u02f4\u02f5\u0005b\u0000"+ - "\u0000\u02f5\u030d\u0001\u0000\u0000\u0000\u02f6\u02f7\u0005a\u0000\u0000"+ - "\u02f7\u02fc\u0003\u0096K\u0000\u02f8\u02f9\u0005>\u0000\u0000\u02f9\u02fb"+ - "\u0003\u0096K\u0000\u02fa\u02f8\u0001\u0000\u0000\u0000\u02fb\u02fe\u0001"+ - "\u0000\u0000\u0000\u02fc\u02fa\u0001\u0000\u0000\u0000\u02fc\u02fd\u0001"+ - "\u0000\u0000\u0000\u02fd\u02ff\u0001\u0000\u0000\u0000\u02fe\u02fc\u0001"+ - "\u0000\u0000\u0000\u02ff\u0300\u0005b\u0000\u0000\u0300\u030d\u0001\u0000"+ - "\u0000\u0000\u0301\u0302\u0005a\u0000\u0000\u0302\u0307\u0003\u009eO\u0000"+ - "\u0303\u0304\u0005>\u0000\u0000\u0304\u0306\u0003\u009eO\u0000\u0305\u0303"+ - "\u0001\u0000\u0000\u0000\u0306\u0309\u0001\u0000\u0000\u0000\u0307\u0305"+ - "\u0001\u0000\u0000\u0000\u0307\u0308\u0001\u0000\u0000\u0000\u0308\u030a"+ - "\u0001\u0000\u0000\u0000\u0309\u0307\u0001\u0000\u0000\u0000\u030a\u030b"+ - "\u0005b\u0000\u0000\u030b\u030d\u0001\u0000\u0000\u0000\u030c\u02e2\u0001"+ - "\u0000\u0000\u0000\u030c\u02e3\u0001\u0000\u0000\u0000\u030c\u02e6\u0001"+ - "\u0000\u0000\u0000\u030c\u02e7\u0001\u0000\u0000\u0000\u030c\u02e8\u0001"+ - "\u0000\u0000\u0000\u030c\u02e9\u0001\u0000\u0000\u0000\u030c\u02ea\u0001"+ - "\u0000\u0000\u0000\u030c\u02eb\u0001\u0000\u0000\u0000\u030c\u02f6\u0001"+ - "\u0000\u0000\u0000\u030c\u0301\u0001\u0000\u0000\u0000\u030d\u0095\u0001"+ - "\u0000\u0000\u0000\u030e\u030f\u0007\u0007\u0000\u0000\u030f\u0097\u0001"+ - "\u0000\u0000\u0000\u0310\u0313\u0003\u009aM\u0000\u0311\u0313\u0003\u009c"+ - "N\u0000\u0312\u0310\u0001\u0000\u0000\u0000\u0312\u0311\u0001\u0000\u0000"+ - "\u0000\u0313\u0099\u0001\u0000\u0000\u0000\u0314\u0316\u0007\u0005\u0000"+ - "\u0000\u0315\u0314\u0001\u0000\u0000\u0000\u0315\u0316\u0001\u0000\u0000"+ - "\u0000\u0316\u0317\u0001\u0000\u0000\u0000\u0317\u0318\u00057\u0000\u0000"+ - "\u0318\u009b\u0001\u0000\u0000\u0000\u0319\u031b\u0007\u0005\u0000\u0000"+ - "\u031a\u0319\u0001\u0000\u0000\u0000\u031a\u031b\u0001\u0000\u0000\u0000"+ - "\u031b\u031c\u0001\u0000\u0000\u0000\u031c\u031d\u00056\u0000\u0000\u031d"+ - "\u009d\u0001\u0000\u0000\u0000\u031e\u031f\u00055\u0000\u0000\u031f\u009f"+ - "\u0001\u0000\u0000\u0000\u0320\u0321\u0007\b\u0000\u0000\u0321\u00a1\u0001"+ - "\u0000\u0000\u0000\u0322\u0323\u0007\t\u0000\u0000\u0323\u0324\u0005r"+ - "\u0000\u0000\u0324\u0325\u0003\u00a4R\u0000\u0325\u0326\u0003\u00a6S\u0000"+ - "\u0326\u00a3\u0001\u0000\u0000\u0000\u0327\u0328\u0003\u001c\u000e\u0000"+ - "\u0328\u00a5\u0001\u0000\u0000\u0000\u0329\u032a\u0005J\u0000\u0000\u032a"+ - "\u032f\u0003\u00a8T\u0000\u032b\u032c\u0005>\u0000\u0000\u032c\u032e\u0003"+ - "\u00a8T\u0000\u032d\u032b\u0001\u0000\u0000\u0000\u032e\u0331\u0001\u0000"+ - "\u0000\u0000\u032f\u032d\u0001\u0000\u0000\u0000\u032f\u0330\u0001\u0000"+ - "\u0000\u0000\u0330\u00a7\u0001\u0000\u0000\u0000\u0331\u032f\u0001\u0000"+ - "\u0000\u0000\u0332\u0333\u0003\u0086C\u0000\u0333\u00a9\u0001\u0000\u0000"+ - "\u0000K\u00b5\u00bf\u00db\u00ea\u00f0\u00f9\u00ff\u010c\u0110\u011b\u012b"+ - "\u0133\u0137\u013e\u0144\u014b\u0153\u015b\u0163\u0167\u016b\u0170\u017b"+ - "\u0180\u0184\u0192\u019d\u01a3\u01aa\u01b3\u01ca\u01d2\u01d5\u01dc\u01e7"+ - "\u01ee\u01f6\u0204\u020d\u0218\u0226\u0234\u023d\u0245\u024a\u0252\u0254"+ - "\u0259\u0260\u0267\u0270\u0277\u0280\u0285\u028a\u0294\u029a\u02a2\u02a4"+ - "\u02af\u02b6\u02c1\u02c6\u02c8\u02cf\u02d7\u02da\u02f1\u02fc\u0307\u030c"+ - "\u0312\u0315\u031a\u032f"; + "\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003\u00e0\b\u0003\u0001\u0004"+ + "\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006"+ + "\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0005\u0007\u00ed\b\u0007"+ + "\n\u0007\f\u0007\u00f0\t\u0007\u0001\b\u0001\b\u0001\b\u0003\b\u00f5\b"+ + "\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0005\t\u00fc\b\t\n\t\f\t\u00ff"+ + "\t\t\u0001\n\u0001\n\u0001\n\u0003\n\u0104\b\n\u0001\u000b\u0001\u000b"+ + "\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0005\r\u010f"+ + "\b\r\n\r\f\r\u0112\t\r\u0001\r\u0003\r\u0115\b\r\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0003\u000e\u0120\b\u000e\u0001\u000f\u0001\u000f\u0001\u0010"+ + "\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0013"+ + "\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u012e\b\u0013\n\u0013"+ + "\f\u0013\u0131\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015"+ + "\u0001\u0015\u0003\u0015\u0138\b\u0015\u0001\u0015\u0001\u0015\u0003\u0015"+ + "\u013c\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u0141\b"+ + "\u0016\n\u0016\f\u0016\u0144\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017"+ + "\u0003\u0017\u0149\b\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018"+ + "\u014e\b\u0018\n\u0018\f\u0018\u0151\t\u0018\u0001\u0019\u0001\u0019\u0001"+ + "\u0019\u0005\u0019\u0156\b\u0019\n\u0019\f\u0019\u0159\t\u0019\u0001\u001a"+ + "\u0001\u001a\u0001\u001a\u0005\u001a\u015e\b\u001a\n\u001a\f\u001a\u0161"+ + "\t\u001a\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0003"+ + "\u001c\u0168\b\u001c\u0001\u001d\u0001\u001d\u0003\u001d\u016c\b\u001d"+ + "\u0001\u001e\u0001\u001e\u0003\u001e\u0170\b\u001e\u0001\u001f\u0001\u001f"+ + "\u0001\u001f\u0003\u001f\u0175\b\u001f\u0001 \u0001 \u0001 \u0001!\u0001"+ + "!\u0001!\u0001!\u0005!\u017e\b!\n!\f!\u0181\t!\u0001\"\u0001\"\u0003\""+ + "\u0185\b\"\u0001\"\u0001\"\u0003\"\u0189\b\"\u0001#\u0001#\u0001#\u0001"+ + "$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001%\u0005%\u0195\b%\n%\f%\u0198"+ + "\t%\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0003&\u01a2"+ + "\b&\u0001\'\u0001\'\u0001\'\u0001\'\u0003\'\u01a8\b\'\u0001(\u0001(\u0001"+ + "(\u0005(\u01ad\b(\n(\f(\u01b0\t(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001"+ + "*\u0003*\u01b8\b*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001"+ + "-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001"+ + "0\u00010\u00010\u00010\u00030\u01cf\b0\u00010\u00010\u00010\u00010\u0005"+ + "0\u01d5\b0\n0\f0\u01d8\t0\u00030\u01da\b0\u00011\u00011\u00012\u00012"+ + "\u00012\u00032\u01e1\b2\u00012\u00012\u00013\u00013\u00013\u00014\u0001"+ + "4\u00014\u00014\u00034\u01ec\b4\u00014\u00014\u00014\u00014\u00014\u0003"+ + "4\u01f3\b4\u00015\u00015\u00015\u00016\u00046\u01f9\b6\u000b6\f6\u01fa"+ + "\u00017\u00017\u00017\u00017\u00018\u00018\u00018\u00018\u00018\u0001"+ + "8\u00058\u0207\b8\n8\f8\u020a\t8\u00019\u00019\u0001:\u0001:\u0001:\u0001"+ + ":\u0003:\u0212\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001"+ + ";\u0001;\u0003;\u021d\b;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+ + "<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=\u022b\b=\u0001>\u0001>\u0001"+ + ">\u0001?\u0001?\u0003?\u0232\b?\u0001?\u0001?\u0003?\u0236\b?\u0001?\u0001"+ + "?\u0003?\u023a\b?\u0001?\u0001?\u0003?\u023e\b?\u0001?\u0001?\u0001@\u0001"+ + "@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0003A\u024b\bA\u0001"+ + "A\u0001A\u0001A\u0001A\u0001A\u0005A\u0252\bA\nA\fA\u0255\tA\u0001A\u0001"+ + "A\u0001A\u0001A\u0001A\u0003A\u025c\bA\u0001A\u0001A\u0001A\u0003A\u0261"+ + "\bA\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0005A\u0269\bA\nA\fA\u026c"+ + "\tA\u0001B\u0001B\u0003B\u0270\bB\u0001B\u0001B\u0001B\u0001B\u0001B\u0003"+ + "B\u0277\bB\u0001B\u0001B\u0001B\u0001B\u0001B\u0003B\u027e\bB\u0001B\u0001"+ + "B\u0001B\u0001B\u0001B\u0005B\u0285\bB\nB\fB\u0288\tB\u0001B\u0001B\u0001"+ + "B\u0001B\u0003B\u028e\bB\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u0295"+ + "\bB\nB\fB\u0298\tB\u0001B\u0001B\u0003B\u029c\bB\u0001C\u0001C\u0001C"+ + "\u0003C\u02a1\bC\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+ + "D\u0003D\u02ab\bD\u0001E\u0001E\u0001E\u0001E\u0003E\u02b1\bE\u0001E\u0001"+ + "E\u0001E\u0001E\u0001E\u0001E\u0005E\u02b9\bE\nE\fE\u02bc\tE\u0001F\u0001"+ + "F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0003F\u02c6\bF\u0001F\u0001"+ + "F\u0001F\u0005F\u02cb\bF\nF\fF\u02ce\tF\u0001G\u0001G\u0001G\u0001G\u0001"+ + "G\u0001G\u0005G\u02d6\bG\nG\fG\u02d9\tG\u0001G\u0001G\u0003G\u02dd\bG"+ + "\u0003G\u02df\bG\u0001G\u0001G\u0001H\u0001H\u0001H\u0003H\u02e6\bH\u0001"+ + "I\u0001I\u0001I\u0001I\u0005I\u02ec\bI\nI\fI\u02ef\tI\u0003I\u02f1\bI"+ + "\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0003K\u02fb"+ + "\bK\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0001"+ + "L\u0001L\u0001L\u0001L\u0005L\u030a\bL\nL\fL\u030d\tL\u0001L\u0001L\u0001"+ + "L\u0001L\u0001L\u0001L\u0005L\u0315\bL\nL\fL\u0318\tL\u0001L\u0001L\u0001"+ + "L\u0001L\u0001L\u0001L\u0005L\u0320\bL\nL\fL\u0323\tL\u0001L\u0001L\u0003"+ + "L\u0327\bL\u0001M\u0001M\u0001N\u0001N\u0003N\u032d\bN\u0001O\u0003O\u0330"+ + "\bO\u0001O\u0001O\u0001P\u0003P\u0335\bP\u0001P\u0001P\u0001Q\u0001Q\u0001"+ + "R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0001U\u0001"+ + "U\u0001U\u0001U\u0005U\u0348\bU\nU\fU\u034b\tU\u0001V\u0001V\u0001V\u0000"+ + "\u0005\u0002p\u0082\u008a\u008cW\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+ + "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+ + "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+ + "\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6"+ + "\u00a8\u00aa\u00ac\u0000\u000b\u0002\u000055kk\u0001\u0000ef\u0002\u0000"+ + "99??\u0002\u0000BBEE\u0002\u0000&&55\u0001\u0000uv\u0001\u0000WX\u0001"+ + "\u0000Y[\u0002\u0000AANN\u0002\u0000PPRV\u0002\u0000\u0017\u0017\u0019"+ + "\u001a\u0373\u0000\u00ae\u0001\u0000\u0000\u0000\u0002\u00b1\u0001\u0000"+ + "\u0000\u0000\u0004\u00c3\u0001\u0000\u0000\u0000\u0006\u00df\u0001\u0000"+ + "\u0000\u0000\b\u00e1\u0001\u0000\u0000\u0000\n\u00e4\u0001\u0000\u0000"+ + "\u0000\f\u00e6\u0001\u0000\u0000\u0000\u000e\u00e9\u0001\u0000\u0000\u0000"+ + "\u0010\u00f4\u0001\u0000\u0000\u0000\u0012\u00f8\u0001\u0000\u0000\u0000"+ + "\u0014\u0100\u0001\u0000\u0000\u0000\u0016\u0105\u0001\u0000\u0000\u0000"+ + "\u0018\u0108\u0001\u0000\u0000\u0000\u001a\u010b\u0001\u0000\u0000\u0000"+ + "\u001c\u011f\u0001\u0000\u0000\u0000\u001e\u0121\u0001\u0000\u0000\u0000"+ + " \u0123\u0001\u0000\u0000\u0000\"\u0125\u0001\u0000\u0000\u0000$\u0127"+ + "\u0001\u0000\u0000\u0000&\u0129\u0001\u0000\u0000\u0000(\u0132\u0001\u0000"+ + "\u0000\u0000*\u0135\u0001\u0000\u0000\u0000,\u013d\u0001\u0000\u0000\u0000"+ + ".\u0145\u0001\u0000\u0000\u00000\u014a\u0001\u0000\u0000\u00002\u0152"+ + "\u0001\u0000\u0000\u00004\u015a\u0001\u0000\u0000\u00006\u0162\u0001\u0000"+ + "\u0000\u00008\u0167\u0001\u0000\u0000\u0000:\u016b\u0001\u0000\u0000\u0000"+ + "<\u016f\u0001\u0000\u0000\u0000>\u0174\u0001\u0000\u0000\u0000@\u0176"+ + "\u0001\u0000\u0000\u0000B\u0179\u0001\u0000\u0000\u0000D\u0182\u0001\u0000"+ + "\u0000\u0000F\u018a\u0001\u0000\u0000\u0000H\u018d\u0001\u0000\u0000\u0000"+ + "J\u0190\u0001\u0000\u0000\u0000L\u01a1\u0001\u0000\u0000\u0000N\u01a3"+ + "\u0001\u0000\u0000\u0000P\u01a9\u0001\u0000\u0000\u0000R\u01b1\u0001\u0000"+ + "\u0000\u0000T\u01b7\u0001\u0000\u0000\u0000V\u01b9\u0001\u0000\u0000\u0000"+ + "X\u01bd\u0001\u0000\u0000\u0000Z\u01c0\u0001\u0000\u0000\u0000\\\u01c3"+ + "\u0001\u0000\u0000\u0000^\u01c7\u0001\u0000\u0000\u0000`\u01ca\u0001\u0000"+ + "\u0000\u0000b\u01db\u0001\u0000\u0000\u0000d\u01e0\u0001\u0000\u0000\u0000"+ + "f\u01e4\u0001\u0000\u0000\u0000h\u01e7\u0001\u0000\u0000\u0000j\u01f4"+ + "\u0001\u0000\u0000\u0000l\u01f8\u0001\u0000\u0000\u0000n\u01fc\u0001\u0000"+ + "\u0000\u0000p\u0200\u0001\u0000\u0000\u0000r\u020b\u0001\u0000\u0000\u0000"+ + "t\u020d\u0001\u0000\u0000\u0000v\u0218\u0001\u0000\u0000\u0000x\u0221"+ + "\u0001\u0000\u0000\u0000z\u0226\u0001\u0000\u0000\u0000|\u022c\u0001\u0000"+ + "\u0000\u0000~\u022f\u0001\u0000\u0000\u0000\u0080\u0241\u0001\u0000\u0000"+ + "\u0000\u0082\u0260\u0001\u0000\u0000\u0000\u0084\u029b\u0001\u0000\u0000"+ + "\u0000\u0086\u029d\u0001\u0000\u0000\u0000\u0088\u02aa\u0001\u0000\u0000"+ + "\u0000\u008a\u02b0\u0001\u0000\u0000\u0000\u008c\u02c5\u0001\u0000\u0000"+ + "\u0000\u008e\u02cf\u0001\u0000\u0000\u0000\u0090\u02e5\u0001\u0000\u0000"+ + "\u0000\u0092\u02e7\u0001\u0000\u0000\u0000\u0094\u02f4\u0001\u0000\u0000"+ + "\u0000\u0096\u02fa\u0001\u0000\u0000\u0000\u0098\u0326\u0001\u0000\u0000"+ + "\u0000\u009a\u0328\u0001\u0000\u0000\u0000\u009c\u032c\u0001\u0000\u0000"+ + "\u0000\u009e\u032f\u0001\u0000\u0000\u0000\u00a0\u0334\u0001\u0000\u0000"+ + "\u0000\u00a2\u0338\u0001\u0000\u0000\u0000\u00a4\u033a\u0001\u0000\u0000"+ + "\u0000\u00a6\u033c\u0001\u0000\u0000\u0000\u00a8\u0341\u0001\u0000\u0000"+ + "\u0000\u00aa\u0343\u0001\u0000\u0000\u0000\u00ac\u034c\u0001\u0000\u0000"+ + "\u0000\u00ae\u00af\u0003\u0002\u0001\u0000\u00af\u00b0\u0005\u0000\u0000"+ + "\u0001\u00b0\u0001\u0001\u0000\u0000\u0000\u00b1\u00b2\u0006\u0001\uffff"+ + "\uffff\u0000\u00b2\u00b3\u0003\u0004\u0002\u0000\u00b3\u00b9\u0001\u0000"+ + "\u0000\u0000\u00b4\u00b5\n\u0001\u0000\u0000\u00b5\u00b6\u00054\u0000"+ + "\u0000\u00b6\u00b8\u0003\u0006\u0003\u0000\u00b7\u00b4\u0001\u0000\u0000"+ + "\u0000\u00b8\u00bb\u0001\u0000\u0000\u0000\u00b9\u00b7\u0001\u0000\u0000"+ + "\u0000\u00b9\u00ba\u0001\u0000\u0000\u0000\u00ba\u0003\u0001\u0000\u0000"+ + "\u0000\u00bb\u00b9\u0001\u0000\u0000\u0000\u00bc\u00c4\u0003\u0016\u000b"+ + "\u0000\u00bd\u00c4\u0003\f\u0006\u0000\u00be\u00c4\u0003^/\u0000\u00bf"+ + "\u00c0\u0004\u0002\u0001\u0000\u00c0\u00c4\u0003\u0018\f\u0000\u00c1\u00c2"+ + "\u0004\u0002\u0002\u0000\u00c2\u00c4\u0003Z-\u0000\u00c3\u00bc\u0001\u0000"+ + "\u0000\u0000\u00c3\u00bd\u0001\u0000\u0000\u0000\u00c3\u00be\u0001\u0000"+ + "\u0000\u0000\u00c3\u00bf\u0001\u0000\u0000\u0000\u00c3\u00c1\u0001\u0000"+ + "\u0000\u0000\u00c4\u0005\u0001\u0000\u0000\u0000\u00c5\u00e0\u0003(\u0014"+ + "\u0000\u00c6\u00e0\u0003\b\u0004\u0000\u00c7\u00e0\u0003F#\u0000\u00c8"+ + "\u00e0\u0003@ \u0000\u00c9\u00e0\u0003*\u0015\u0000\u00ca\u00e0\u0003"+ + "B!\u0000\u00cb\u00e0\u0003H$\u0000\u00cc\u00e0\u0003J%\u0000\u00cd\u00e0"+ + "\u0003N\'\u0000\u00ce\u00e0\u0003V+\u0000\u00cf\u00e0\u0003`0\u0000\u00d0"+ + "\u00e0\u0003X,\u0000\u00d1\u00e0\u0003\u00a6S\u0000\u00d2\u00e0\u0003"+ + "h4\u0000\u00d3\u00e0\u0003v;\u0000\u00d4\u00e0\u0003f3\u0000\u00d5\u00e0"+ + "\u0003j5\u0000\u00d6\u00e0\u0003t:\u0000\u00d7\u00d8\u0004\u0003\u0003"+ + "\u0000\u00d8\u00e0\u0003z=\u0000\u00d9\u00da\u0004\u0003\u0004\u0000\u00da"+ + "\u00e0\u0003x<\u0000\u00db\u00dc\u0004\u0003\u0005\u0000\u00dc\u00e0\u0003"+ + "|>\u0000\u00dd\u00de\u0004\u0003\u0006\u0000\u00de\u00e0\u0003~?\u0000"+ + "\u00df\u00c5\u0001\u0000\u0000\u0000\u00df\u00c6\u0001\u0000\u0000\u0000"+ + "\u00df\u00c7\u0001\u0000\u0000\u0000\u00df\u00c8\u0001\u0000\u0000\u0000"+ + "\u00df\u00c9\u0001\u0000\u0000\u0000\u00df\u00ca\u0001\u0000\u0000\u0000"+ + "\u00df\u00cb\u0001\u0000\u0000\u0000\u00df\u00cc\u0001\u0000\u0000\u0000"+ + "\u00df\u00cd\u0001\u0000\u0000\u0000\u00df\u00ce\u0001\u0000\u0000\u0000"+ + "\u00df\u00cf\u0001\u0000\u0000\u0000\u00df\u00d0\u0001\u0000\u0000\u0000"+ + "\u00df\u00d1\u0001\u0000\u0000\u0000\u00df\u00d2\u0001\u0000\u0000\u0000"+ + "\u00df\u00d3\u0001\u0000\u0000\u0000\u00df\u00d4\u0001\u0000\u0000\u0000"+ + "\u00df\u00d5\u0001\u0000\u0000\u0000\u00df\u00d6\u0001\u0000\u0000\u0000"+ + "\u00df\u00d7\u0001\u0000\u0000\u0000\u00df\u00d9\u0001\u0000\u0000\u0000"+ + "\u00df\u00db\u0001\u0000\u0000\u0000\u00df\u00dd\u0001\u0000\u0000\u0000"+ + "\u00e0\u0007\u0001\u0000\u0000\u0000\u00e1\u00e2\u0005\u0011\u0000\u0000"+ + "\u00e2\u00e3\u0003\u0082A\u0000\u00e3\t\u0001\u0000\u0000\u0000\u00e4"+ + "\u00e5\u00036\u001b\u0000\u00e5\u000b\u0001\u0000\u0000\u0000\u00e6\u00e7"+ + "\u0005\r\u0000\u0000\u00e7\u00e8\u0003\u000e\u0007\u0000\u00e8\r\u0001"+ + "\u0000\u0000\u0000\u00e9\u00ee\u0003\u0010\b\u0000\u00ea\u00eb\u0005>"+ + "\u0000\u0000\u00eb\u00ed\u0003\u0010\b\u0000\u00ec\u00ea\u0001\u0000\u0000"+ + "\u0000\u00ed\u00f0\u0001\u0000\u0000\u0000\u00ee\u00ec\u0001\u0000\u0000"+ + "\u0000\u00ee\u00ef\u0001\u0000\u0000\u0000\u00ef\u000f\u0001\u0000\u0000"+ + "\u0000\u00f0\u00ee\u0001\u0000\u0000\u0000\u00f1\u00f2\u00030\u0018\u0000"+ + "\u00f2\u00f3\u0005:\u0000\u0000\u00f3\u00f5\u0001\u0000\u0000\u0000\u00f4"+ + "\u00f1\u0001\u0000\u0000\u0000\u00f4\u00f5\u0001\u0000\u0000\u0000\u00f5"+ + "\u00f6\u0001\u0000\u0000\u0000\u00f6\u00f7\u0003\u0082A\u0000\u00f7\u0011"+ + "\u0001\u0000\u0000\u0000\u00f8\u00fd\u0003\u0014\n\u0000\u00f9\u00fa\u0005"+ + ">\u0000\u0000\u00fa\u00fc\u0003\u0014\n\u0000\u00fb\u00f9\u0001\u0000"+ + "\u0000\u0000\u00fc\u00ff\u0001\u0000\u0000\u0000\u00fd\u00fb\u0001\u0000"+ + "\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0013\u0001\u0000"+ + "\u0000\u0000\u00ff\u00fd\u0001\u0000\u0000\u0000\u0100\u0103\u00030\u0018"+ + "\u0000\u0101\u0102\u0005:\u0000\u0000\u0102\u0104\u0003\u0082A\u0000\u0103"+ + "\u0101\u0001\u0000\u0000\u0000\u0103\u0104\u0001\u0000\u0000\u0000\u0104"+ + "\u0015\u0001\u0000\u0000\u0000\u0105\u0106\u0005\u0013\u0000\u0000\u0106"+ + "\u0107\u0003\u001a\r\u0000\u0107\u0017\u0001\u0000\u0000\u0000\u0108\u0109"+ + "\u0005\u0014\u0000\u0000\u0109\u010a\u0003\u001a\r\u0000\u010a\u0019\u0001"+ + "\u0000\u0000\u0000\u010b\u0110\u0003\u001c\u000e\u0000\u010c\u010d\u0005"+ + ">\u0000\u0000\u010d\u010f\u0003\u001c\u000e\u0000\u010e\u010c\u0001\u0000"+ + "\u0000\u0000\u010f\u0112\u0001\u0000\u0000\u0000\u0110\u010e\u0001\u0000"+ + "\u0000\u0000\u0110\u0111\u0001\u0000\u0000\u0000\u0111\u0114\u0001\u0000"+ + "\u0000\u0000\u0112\u0110\u0001\u0000\u0000\u0000\u0113\u0115\u0003&\u0013"+ + "\u0000\u0114\u0113\u0001\u0000\u0000\u0000\u0114\u0115\u0001\u0000\u0000"+ + "\u0000\u0115\u001b\u0001\u0000\u0000\u0000\u0116\u0117\u0003\u001e\u000f"+ + "\u0000\u0117\u0118\u0005=\u0000\u0000\u0118\u0119\u0003\"\u0011\u0000"+ + "\u0119\u0120\u0001\u0000\u0000\u0000\u011a\u011b\u0003\"\u0011\u0000\u011b"+ + "\u011c\u0005<\u0000\u0000\u011c\u011d\u0003 \u0010\u0000\u011d\u0120\u0001"+ + "\u0000\u0000\u0000\u011e\u0120\u0003$\u0012\u0000\u011f\u0116\u0001\u0000"+ + "\u0000\u0000\u011f\u011a\u0001\u0000\u0000\u0000\u011f\u011e\u0001\u0000"+ + "\u0000\u0000\u0120\u001d\u0001\u0000\u0000\u0000\u0121\u0122\u0005k\u0000"+ + "\u0000\u0122\u001f\u0001\u0000\u0000\u0000\u0123\u0124\u0005k\u0000\u0000"+ + "\u0124!\u0001\u0000\u0000\u0000\u0125\u0126\u0005k\u0000\u0000\u0126#"+ + "\u0001\u0000\u0000\u0000\u0127\u0128\u0007\u0000\u0000\u0000\u0128%\u0001"+ + "\u0000\u0000\u0000\u0129\u012a\u0005j\u0000\u0000\u012a\u012f\u0005k\u0000"+ + "\u0000\u012b\u012c\u0005>\u0000\u0000\u012c\u012e\u0005k\u0000\u0000\u012d"+ + "\u012b\u0001\u0000\u0000\u0000\u012e\u0131\u0001\u0000\u0000\u0000\u012f"+ + "\u012d\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130"+ + "\'\u0001\u0000\u0000\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132\u0133"+ + "\u0005\t\u0000\u0000\u0133\u0134\u0003\u000e\u0007\u0000\u0134)\u0001"+ + "\u0000\u0000\u0000\u0135\u0137\u0005\u0010\u0000\u0000\u0136\u0138\u0003"+ + ",\u0016\u0000\u0137\u0136\u0001\u0000\u0000\u0000\u0137\u0138\u0001\u0000"+ + "\u0000\u0000\u0138\u013b\u0001\u0000\u0000\u0000\u0139\u013a\u0005;\u0000"+ + "\u0000\u013a\u013c\u0003\u000e\u0007\u0000\u013b\u0139\u0001\u0000\u0000"+ + "\u0000\u013b\u013c\u0001\u0000\u0000\u0000\u013c+\u0001\u0000\u0000\u0000"+ + "\u013d\u0142\u0003.\u0017\u0000\u013e\u013f\u0005>\u0000\u0000\u013f\u0141"+ + "\u0003.\u0017\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0141\u0144\u0001"+ + "\u0000\u0000\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0142\u0143\u0001"+ + "\u0000\u0000\u0000\u0143-\u0001\u0000\u0000\u0000\u0144\u0142\u0001\u0000"+ + "\u0000\u0000\u0145\u0148\u0003\u0010\b\u0000\u0146\u0147\u0005\u0011\u0000"+ + "\u0000\u0147\u0149\u0003\u0082A\u0000\u0148\u0146\u0001\u0000\u0000\u0000"+ + "\u0148\u0149\u0001\u0000\u0000\u0000\u0149/\u0001\u0000\u0000\u0000\u014a"+ + "\u014f\u0003>\u001f\u0000\u014b\u014c\u0005@\u0000\u0000\u014c\u014e\u0003"+ + ">\u001f\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\u01501\u0001\u0000\u0000\u0000\u0151\u014f\u0001\u0000\u0000"+ + "\u0000\u0152\u0157\u00038\u001c\u0000\u0153\u0154\u0005@\u0000\u0000\u0154"+ + "\u0156\u00038\u001c\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0156\u0159"+ + "\u0001\u0000\u0000\u0000\u0157\u0155\u0001\u0000\u0000\u0000\u0157\u0158"+ + "\u0001\u0000\u0000\u0000\u01583\u0001\u0000\u0000\u0000\u0159\u0157\u0001"+ + "\u0000\u0000\u0000\u015a\u015f\u00032\u0019\u0000\u015b\u015c\u0005>\u0000"+ + "\u0000\u015c\u015e\u00032\u0019\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\u01605\u0001\u0000\u0000\u0000\u0161"+ + "\u015f\u0001\u0000\u0000\u0000\u0162\u0163\u0007\u0001\u0000\u0000\u0163"+ + "7\u0001\u0000\u0000\u0000\u0164\u0168\u0005\u0088\u0000\u0000\u0165\u0168"+ + "\u0003:\u001d\u0000\u0166\u0168\u0003<\u001e\u0000\u0167\u0164\u0001\u0000"+ + "\u0000\u0000\u0167\u0165\u0001\u0000\u0000\u0000\u0167\u0166\u0001\u0000"+ + "\u0000\u0000\u01689\u0001\u0000\u0000\u0000\u0169\u016c\u0005L\u0000\u0000"+ + "\u016a\u016c\u0005_\u0000\u0000\u016b\u0169\u0001\u0000\u0000\u0000\u016b"+ + "\u016a\u0001\u0000\u0000\u0000\u016c;\u0001\u0000\u0000\u0000\u016d\u0170"+ + "\u0005^\u0000\u0000\u016e\u0170\u0005`\u0000\u0000\u016f\u016d\u0001\u0000"+ + "\u0000\u0000\u016f\u016e\u0001\u0000\u0000\u0000\u0170=\u0001\u0000\u0000"+ + "\u0000\u0171\u0175\u00036\u001b\u0000\u0172\u0175\u0003:\u001d\u0000\u0173"+ + "\u0175\u0003<\u001e\u0000\u0174\u0171\u0001\u0000\u0000\u0000\u0174\u0172"+ + "\u0001\u0000\u0000\u0000\u0174\u0173\u0001\u0000\u0000\u0000\u0175?\u0001"+ + "\u0000\u0000\u0000\u0176\u0177\u0005\u000b\u0000\u0000\u0177\u0178\u0003"+ + "\u0098L\u0000\u0178A\u0001\u0000\u0000\u0000\u0179\u017a\u0005\u000f\u0000"+ + "\u0000\u017a\u017f\u0003D\"\u0000\u017b\u017c\u0005>\u0000\u0000\u017c"+ + "\u017e\u0003D\"\u0000\u017d\u017b\u0001\u0000\u0000\u0000\u017e\u0181"+ + "\u0001\u0000\u0000\u0000\u017f\u017d\u0001\u0000\u0000\u0000\u017f\u0180"+ + "\u0001\u0000\u0000\u0000\u0180C\u0001\u0000\u0000\u0000\u0181\u017f\u0001"+ + "\u0000\u0000\u0000\u0182\u0184\u0003\u0082A\u0000\u0183\u0185\u0007\u0002"+ + "\u0000\u0000\u0184\u0183\u0001\u0000\u0000\u0000\u0184\u0185\u0001\u0000"+ + "\u0000\u0000\u0185\u0188\u0001\u0000\u0000\u0000\u0186\u0187\u0005I\u0000"+ + "\u0000\u0187\u0189\u0007\u0003\u0000\u0000\u0188\u0186\u0001\u0000\u0000"+ + "\u0000\u0188\u0189\u0001\u0000\u0000\u0000\u0189E\u0001\u0000\u0000\u0000"+ + "\u018a\u018b\u0005\u001e\u0000\u0000\u018b\u018c\u00034\u001a\u0000\u018c"+ + "G\u0001\u0000\u0000\u0000\u018d\u018e\u0005\u001d\u0000\u0000\u018e\u018f"+ + "\u00034\u001a\u0000\u018fI\u0001\u0000\u0000\u0000\u0190\u0191\u0005 "+ + "\u0000\u0000\u0191\u0196\u0003L&\u0000\u0192\u0193\u0005>\u0000\u0000"+ + "\u0193\u0195\u0003L&\u0000\u0194\u0192\u0001\u0000\u0000\u0000\u0195\u0198"+ + "\u0001\u0000\u0000\u0000\u0196\u0194\u0001\u0000\u0000\u0000\u0196\u0197"+ + "\u0001\u0000\u0000\u0000\u0197K\u0001\u0000\u0000\u0000\u0198\u0196\u0001"+ + "\u0000\u0000\u0000\u0199\u019a\u00032\u0019\u0000\u019a\u019b\u0005\u008c"+ + "\u0000\u0000\u019b\u019c\u00032\u0019\u0000\u019c\u01a2\u0001\u0000\u0000"+ + "\u0000\u019d\u019e\u00032\u0019\u0000\u019e\u019f\u0005:\u0000\u0000\u019f"+ + "\u01a0\u00032\u0019\u0000\u01a0\u01a2\u0001\u0000\u0000\u0000\u01a1\u0199"+ + "\u0001\u0000\u0000\u0000\u01a1\u019d\u0001\u0000\u0000\u0000\u01a2M\u0001"+ + "\u0000\u0000\u0000\u01a3\u01a4\u0005\b\u0000\u0000\u01a4\u01a5\u0003\u008c"+ + "F\u0000\u01a5\u01a7\u0003\u00a2Q\u0000\u01a6\u01a8\u0003P(\u0000\u01a7"+ + "\u01a6\u0001\u0000\u0000\u0000\u01a7\u01a8\u0001\u0000\u0000\u0000\u01a8"+ + "O\u0001\u0000\u0000\u0000\u01a9\u01ae\u0003R)\u0000\u01aa\u01ab\u0005"+ + ">\u0000\u0000\u01ab\u01ad\u0003R)\u0000\u01ac\u01aa\u0001\u0000\u0000"+ + "\u0000\u01ad\u01b0\u0001\u0000\u0000\u0000\u01ae\u01ac\u0001\u0000\u0000"+ + "\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01afQ\u0001\u0000\u0000\u0000"+ + "\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b1\u01b2\u00036\u001b\u0000\u01b2"+ + "\u01b3\u0005:\u0000\u0000\u01b3\u01b4\u0003\u0098L\u0000\u01b4S\u0001"+ + "\u0000\u0000\u0000\u01b5\u01b6\u0005O\u0000\u0000\u01b6\u01b8\u0003\u0092"+ + "I\u0000\u01b7\u01b5\u0001\u0000\u0000\u0000\u01b7\u01b8\u0001\u0000\u0000"+ + "\u0000\u01b8U\u0001\u0000\u0000\u0000\u01b9\u01ba\u0005\n\u0000\u0000"+ + "\u01ba\u01bb\u0003\u008cF\u0000\u01bb\u01bc\u0003\u00a2Q\u0000\u01bcW"+ + "\u0001\u0000\u0000\u0000\u01bd\u01be\u0005\u001c\u0000\u0000\u01be\u01bf"+ + "\u00030\u0018\u0000\u01bfY\u0001\u0000\u0000\u0000\u01c0\u01c1\u0005\u0006"+ + "\u0000\u0000\u01c1\u01c2\u0003\\.\u0000\u01c2[\u0001\u0000\u0000\u0000"+ + "\u01c3\u01c4\u0005c\u0000\u0000\u01c4\u01c5\u0003\u0002\u0001\u0000\u01c5"+ + "\u01c6\u0005d\u0000\u0000\u01c6]\u0001\u0000\u0000\u0000\u01c7\u01c8\u0005"+ + "!\u0000\u0000\u01c8\u01c9\u0005\u0090\u0000\u0000\u01c9_\u0001\u0000\u0000"+ + "\u0000\u01ca\u01cb\u0005\u0005\u0000\u0000\u01cb\u01ce\u0003b1\u0000\u01cc"+ + "\u01cd\u0005J\u0000\u0000\u01cd\u01cf\u00032\u0019\u0000\u01ce\u01cc\u0001"+ + "\u0000\u0000\u0000\u01ce\u01cf\u0001\u0000\u0000\u0000\u01cf\u01d9\u0001"+ + "\u0000\u0000\u0000\u01d0\u01d1\u0005O\u0000\u0000\u01d1\u01d6\u0003d2"+ + "\u0000\u01d2\u01d3\u0005>\u0000\u0000\u01d3\u01d5\u0003d2\u0000\u01d4"+ + "\u01d2\u0001\u0000\u0000\u0000\u01d5\u01d8\u0001\u0000\u0000\u0000\u01d6"+ + "\u01d4\u0001\u0000\u0000\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7"+ + "\u01da\u0001\u0000\u0000\u0000\u01d8\u01d6\u0001\u0000\u0000\u0000\u01d9"+ + "\u01d0\u0001\u0000\u0000\u0000\u01d9\u01da\u0001\u0000\u0000\u0000\u01da"+ + "a\u0001\u0000\u0000\u0000\u01db\u01dc\u0007\u0004\u0000\u0000\u01dcc\u0001"+ + "\u0000\u0000\u0000\u01dd\u01de\u00032\u0019\u0000\u01de\u01df\u0005:\u0000"+ + "\u0000\u01df\u01e1\u0001\u0000\u0000\u0000\u01e0\u01dd\u0001\u0000\u0000"+ + "\u0000\u01e0\u01e1\u0001\u0000\u0000\u0000\u01e1\u01e2\u0001\u0000\u0000"+ + "\u0000\u01e2\u01e3\u00032\u0019\u0000\u01e3e\u0001\u0000\u0000\u0000\u01e4"+ + "\u01e5\u0005\u000e\u0000\u0000\u01e5\u01e6\u0003\u0098L\u0000\u01e6g\u0001"+ + "\u0000\u0000\u0000\u01e7\u01e8\u0005\u0004\u0000\u0000\u01e8\u01eb\u0003"+ + "0\u0018\u0000\u01e9\u01ea\u0005J\u0000\u0000\u01ea\u01ec\u00030\u0018"+ + "\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01eb\u01ec\u0001\u0000\u0000"+ + "\u0000\u01ec\u01f2\u0001\u0000\u0000\u0000\u01ed\u01ee\u0005\u008c\u0000"+ + "\u0000\u01ee\u01ef\u00030\u0018\u0000\u01ef\u01f0\u0005>\u0000\u0000\u01f0"+ + "\u01f1\u00030\u0018\u0000\u01f1\u01f3\u0001\u0000\u0000\u0000\u01f2\u01ed"+ + "\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001\u0000\u0000\u0000\u01f3i\u0001"+ + "\u0000\u0000\u0000\u01f4\u01f5\u0005\u0015\u0000\u0000\u01f5\u01f6\u0003"+ + "l6\u0000\u01f6k\u0001\u0000\u0000\u0000\u01f7\u01f9\u0003n7\u0000\u01f8"+ + "\u01f7\u0001\u0000\u0000\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000\u01fa"+ + "\u01f8\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000\u0000\u01fb"+ + "m\u0001\u0000\u0000\u0000\u01fc\u01fd\u0005c\u0000\u0000\u01fd\u01fe\u0003"+ + "p8\u0000\u01fe\u01ff\u0005d\u0000\u0000\u01ffo\u0001\u0000\u0000\u0000"+ + "\u0200\u0201\u00068\uffff\uffff\u0000\u0201\u0202\u0003r9\u0000\u0202"+ + "\u0208\u0001\u0000\u0000\u0000\u0203\u0204\n\u0001\u0000\u0000\u0204\u0205"+ + "\u00054\u0000\u0000\u0205\u0207\u0003r9\u0000\u0206\u0203\u0001\u0000"+ + "\u0000\u0000\u0207\u020a\u0001\u0000\u0000\u0000\u0208\u0206\u0001\u0000"+ + "\u0000\u0000\u0208\u0209\u0001\u0000\u0000\u0000\u0209q\u0001\u0000\u0000"+ + "\u0000\u020a\u0208\u0001\u0000\u0000\u0000\u020b\u020c\u0003\u0006\u0003"+ + "\u0000\u020cs\u0001\u0000\u0000\u0000\u020d\u0211\u0005\f\u0000\u0000"+ + "\u020e\u020f\u00030\u0018\u0000\u020f\u0210\u0005:\u0000\u0000\u0210\u0212"+ + "\u0001\u0000\u0000\u0000\u0211\u020e\u0001\u0000\u0000\u0000\u0211\u0212"+ + "\u0001\u0000\u0000\u0000\u0212\u0213\u0001\u0000\u0000\u0000\u0213\u0214"+ + "\u0003\u0098L\u0000\u0214\u0215\u0005J\u0000\u0000\u0215\u0216\u0003\u0012"+ + "\t\u0000\u0216\u0217\u0003T*\u0000\u0217u\u0001\u0000\u0000\u0000\u0218"+ + "\u021c\u0005\u0007\u0000\u0000\u0219\u021a\u00030\u0018\u0000\u021a\u021b"+ + "\u0005:\u0000\u0000\u021b\u021d\u0001\u0000\u0000\u0000\u021c\u0219\u0001"+ + "\u0000\u0000\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d\u021e\u0001"+ + "\u0000\u0000\u0000\u021e\u021f\u0003\u008cF\u0000\u021f\u0220\u0003T*"+ + "\u0000\u0220w\u0001\u0000\u0000\u0000\u0221\u0222\u0005\u001b\u0000\u0000"+ + "\u0222\u0223\u0003\u001c\u000e\u0000\u0223\u0224\u0005J\u0000\u0000\u0224"+ + "\u0225\u00034\u001a\u0000\u0225y\u0001\u0000\u0000\u0000\u0226\u0227\u0005"+ + "\u0012\u0000\u0000\u0227\u022a\u0003,\u0016\u0000\u0228\u0229\u0005;\u0000"+ + "\u0000\u0229\u022b\u0003\u000e\u0007\u0000\u022a\u0228\u0001\u0000\u0000"+ + "\u0000\u022a\u022b\u0001\u0000\u0000\u0000\u022b{\u0001\u0000\u0000\u0000"+ + "\u022c\u022d\u0005\u001f\u0000\u0000\u022d\u022e\u00034\u001a\u0000\u022e"+ + "}\u0001\u0000\u0000\u0000\u022f\u0231\u0005\u0016\u0000\u0000\u0230\u0232"+ + "\u0003\u0080@\u0000\u0231\u0230\u0001\u0000\u0000\u0000\u0231\u0232\u0001"+ + "\u0000\u0000\u0000\u0232\u0235\u0001\u0000\u0000\u0000\u0233\u0234\u0005"+ + "t\u0000\u0000\u0234\u0236\u00030\u0018\u0000\u0235\u0233\u0001\u0000\u0000"+ + "\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0239\u0001\u0000\u0000"+ + "\u0000\u0237\u0238\u0005r\u0000\u0000\u0238\u023a\u0003\u000e\u0007\u0000"+ + "\u0239\u0237\u0001\u0000\u0000\u0000\u0239\u023a\u0001\u0000\u0000\u0000"+ + "\u023a\u023d\u0001\u0000\u0000\u0000\u023b\u023c\u0005s\u0000\u0000\u023c"+ + "\u023e\u00030\u0018\u0000\u023d\u023b\u0001\u0000\u0000\u0000\u023d\u023e"+ + "\u0001\u0000\u0000\u0000\u023e\u023f\u0001\u0000\u0000\u0000\u023f\u0240"+ + "\u0003T*\u0000\u0240\u007f\u0001\u0000\u0000\u0000\u0241\u0242\u0007\u0005"+ + "\u0000\u0000\u0242\u0081\u0001\u0000\u0000\u0000\u0243\u0244\u0006A\uffff"+ + "\uffff\u0000\u0244\u0245\u0005G\u0000\u0000\u0245\u0261\u0003\u0082A\b"+ + "\u0246\u0261\u0003\u0088D\u0000\u0247\u0261\u0003\u0084B\u0000\u0248\u024a"+ + "\u0003\u0088D\u0000\u0249\u024b\u0005G\u0000\u0000\u024a\u0249\u0001\u0000"+ + "\u0000\u0000\u024a\u024b\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000"+ + "\u0000\u0000\u024c\u024d\u0005C\u0000\u0000\u024d\u024e\u0005c\u0000\u0000"+ + "\u024e\u0253\u0003\u0088D\u0000\u024f\u0250\u0005>\u0000\u0000\u0250\u0252"+ + "\u0003\u0088D\u0000\u0251\u024f\u0001\u0000\u0000\u0000\u0252\u0255\u0001"+ + "\u0000\u0000\u0000\u0253\u0251\u0001\u0000\u0000\u0000\u0253\u0254\u0001"+ + "\u0000\u0000\u0000\u0254\u0256\u0001\u0000\u0000\u0000\u0255\u0253\u0001"+ + "\u0000\u0000\u0000\u0256\u0257\u0005d\u0000\u0000\u0257\u0261\u0001\u0000"+ + "\u0000\u0000\u0258\u0259\u0003\u0088D\u0000\u0259\u025b\u0005D\u0000\u0000"+ + "\u025a\u025c\u0005G\u0000\u0000\u025b\u025a\u0001\u0000\u0000\u0000\u025b"+ + "\u025c\u0001\u0000\u0000\u0000\u025c\u025d\u0001\u0000\u0000\u0000\u025d"+ + "\u025e\u0005H\u0000\u0000\u025e\u0261\u0001\u0000\u0000\u0000\u025f\u0261"+ + "\u0003\u0086C\u0000\u0260\u0243\u0001\u0000\u0000\u0000\u0260\u0246\u0001"+ + "\u0000\u0000\u0000\u0260\u0247\u0001\u0000\u0000\u0000\u0260\u0248\u0001"+ + "\u0000\u0000\u0000\u0260\u0258\u0001\u0000\u0000\u0000\u0260\u025f\u0001"+ + "\u0000\u0000\u0000\u0261\u026a\u0001\u0000\u0000\u0000\u0262\u0263\n\u0005"+ + "\u0000\u0000\u0263\u0264\u00058\u0000\u0000\u0264\u0269\u0003\u0082A\u0006"+ + "\u0265\u0266\n\u0004\u0000\u0000\u0266\u0267\u0005K\u0000\u0000\u0267"+ + "\u0269\u0003\u0082A\u0005\u0268\u0262\u0001\u0000\u0000\u0000\u0268\u0265"+ + "\u0001\u0000\u0000\u0000\u0269\u026c\u0001\u0000\u0000\u0000\u026a\u0268"+ + "\u0001\u0000\u0000\u0000\u026a\u026b\u0001\u0000\u0000\u0000\u026b\u0083"+ + "\u0001\u0000\u0000\u0000\u026c\u026a\u0001\u0000\u0000\u0000\u026d\u026f"+ + "\u0003\u0088D\u0000\u026e\u0270\u0005G\u0000\u0000\u026f\u026e\u0001\u0000"+ + "\u0000\u0000\u026f\u0270\u0001\u0000\u0000\u0000\u0270\u0271\u0001\u0000"+ + "\u0000\u0000\u0271\u0272\u0005F\u0000\u0000\u0272\u0273\u0003\u00a2Q\u0000"+ + "\u0273\u029c\u0001\u0000\u0000\u0000\u0274\u0276\u0003\u0088D\u0000\u0275"+ + "\u0277\u0005G\u0000\u0000\u0276\u0275\u0001\u0000\u0000\u0000\u0276\u0277"+ + "\u0001\u0000\u0000\u0000\u0277\u0278\u0001\u0000\u0000\u0000\u0278\u0279"+ + "\u0005M\u0000\u0000\u0279\u027a\u0003\u00a2Q\u0000\u027a\u029c\u0001\u0000"+ + "\u0000\u0000\u027b\u027d\u0003\u0088D\u0000\u027c\u027e\u0005G\u0000\u0000"+ + "\u027d\u027c\u0001\u0000\u0000\u0000\u027d\u027e\u0001\u0000\u0000\u0000"+ + "\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280\u0005F\u0000\u0000\u0280"+ + "\u0281\u0005c\u0000\u0000\u0281\u0286\u0003\u00a2Q\u0000\u0282\u0283\u0005"+ + ">\u0000\u0000\u0283\u0285\u0003\u00a2Q\u0000\u0284\u0282\u0001\u0000\u0000"+ + "\u0000\u0285\u0288\u0001\u0000\u0000\u0000\u0286\u0284\u0001\u0000\u0000"+ + "\u0000\u0286\u0287\u0001\u0000\u0000\u0000\u0287\u0289\u0001\u0000\u0000"+ + "\u0000\u0288\u0286\u0001\u0000\u0000\u0000\u0289\u028a\u0005d\u0000\u0000"+ + "\u028a\u029c\u0001\u0000\u0000\u0000\u028b\u028d\u0003\u0088D\u0000\u028c"+ + "\u028e\u0005G\u0000\u0000\u028d\u028c\u0001\u0000\u0000\u0000\u028d\u028e"+ + "\u0001\u0000\u0000\u0000\u028e\u028f\u0001\u0000\u0000\u0000\u028f\u0290"+ + "\u0005M\u0000\u0000\u0290\u0291\u0005c\u0000\u0000\u0291\u0296\u0003\u00a2"+ + "Q\u0000\u0292\u0293\u0005>\u0000\u0000\u0293\u0295\u0003\u00a2Q\u0000"+ + "\u0294\u0292\u0001\u0000\u0000\u0000\u0295\u0298\u0001\u0000\u0000\u0000"+ + "\u0296\u0294\u0001\u0000\u0000\u0000\u0296\u0297\u0001\u0000\u0000\u0000"+ + "\u0297\u0299\u0001\u0000\u0000\u0000\u0298\u0296\u0001\u0000\u0000\u0000"+ + "\u0299\u029a\u0005d\u0000\u0000\u029a\u029c\u0001\u0000\u0000\u0000\u029b"+ + "\u026d\u0001\u0000\u0000\u0000\u029b\u0274\u0001\u0000\u0000\u0000\u029b"+ + "\u027b\u0001\u0000\u0000\u0000\u029b\u028b\u0001\u0000\u0000\u0000\u029c"+ + "\u0085\u0001\u0000\u0000\u0000\u029d\u02a0\u00030\u0018\u0000\u029e\u029f"+ + "\u0005<\u0000\u0000\u029f\u02a1\u0003\n\u0005\u0000\u02a0\u029e\u0001"+ + "\u0000\u0000\u0000\u02a0\u02a1\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001"+ + "\u0000\u0000\u0000\u02a2\u02a3\u0005=\u0000\u0000\u02a3\u02a4\u0003\u0098"+ + "L\u0000\u02a4\u0087\u0001\u0000\u0000\u0000\u02a5\u02ab\u0003\u008aE\u0000"+ + "\u02a6\u02a7\u0003\u008aE\u0000\u02a7\u02a8\u0003\u00a4R\u0000\u02a8\u02a9"+ + "\u0003\u008aE\u0000\u02a9\u02ab\u0001\u0000\u0000\u0000\u02aa\u02a5\u0001"+ + "\u0000\u0000\u0000\u02aa\u02a6\u0001\u0000\u0000\u0000\u02ab\u0089\u0001"+ + "\u0000\u0000\u0000\u02ac\u02ad\u0006E\uffff\uffff\u0000\u02ad\u02b1\u0003"+ + "\u008cF\u0000\u02ae\u02af\u0007\u0006\u0000\u0000\u02af\u02b1\u0003\u008a"+ + "E\u0003\u02b0\u02ac\u0001\u0000\u0000\u0000\u02b0\u02ae\u0001\u0000\u0000"+ + "\u0000\u02b1\u02ba\u0001\u0000\u0000\u0000\u02b2\u02b3\n\u0002\u0000\u0000"+ + "\u02b3\u02b4\u0007\u0007\u0000\u0000\u02b4\u02b9\u0003\u008aE\u0003\u02b5"+ + "\u02b6\n\u0001\u0000\u0000\u02b6\u02b7\u0007\u0006\u0000\u0000\u02b7\u02b9"+ + "\u0003\u008aE\u0002\u02b8\u02b2\u0001\u0000\u0000\u0000\u02b8\u02b5\u0001"+ + "\u0000\u0000\u0000\u02b9\u02bc\u0001\u0000\u0000\u0000\u02ba\u02b8\u0001"+ + "\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb\u008b\u0001"+ + "\u0000\u0000\u0000\u02bc\u02ba\u0001\u0000\u0000\u0000\u02bd\u02be\u0006"+ + "F\uffff\uffff\u0000\u02be\u02c6\u0003\u0098L\u0000\u02bf\u02c6\u00030"+ + "\u0018\u0000\u02c0\u02c6\u0003\u008eG\u0000\u02c1\u02c2\u0005c\u0000\u0000"+ + "\u02c2\u02c3\u0003\u0082A\u0000\u02c3\u02c4\u0005d\u0000\u0000\u02c4\u02c6"+ + "\u0001\u0000\u0000\u0000\u02c5\u02bd\u0001\u0000\u0000\u0000\u02c5\u02bf"+ + "\u0001\u0000\u0000\u0000\u02c5\u02c0\u0001\u0000\u0000\u0000\u02c5\u02c1"+ + "\u0001\u0000\u0000\u0000\u02c6\u02cc\u0001\u0000\u0000\u0000\u02c7\u02c8"+ + "\n\u0001\u0000\u0000\u02c8\u02c9\u0005<\u0000\u0000\u02c9\u02cb\u0003"+ + "\n\u0005\u0000\u02ca\u02c7\u0001\u0000\u0000\u0000\u02cb\u02ce\u0001\u0000"+ + "\u0000\u0000\u02cc\u02ca\u0001\u0000\u0000\u0000\u02cc\u02cd\u0001\u0000"+ + "\u0000\u0000\u02cd\u008d\u0001\u0000\u0000\u0000\u02ce\u02cc\u0001\u0000"+ + "\u0000\u0000\u02cf\u02d0\u0003\u0090H\u0000\u02d0\u02de\u0005c\u0000\u0000"+ + "\u02d1\u02df\u0005Y\u0000\u0000\u02d2\u02d7\u0003\u0082A\u0000\u02d3\u02d4"+ + "\u0005>\u0000\u0000\u02d4\u02d6\u0003\u0082A\u0000\u02d5\u02d3\u0001\u0000"+ + "\u0000\u0000\u02d6\u02d9\u0001\u0000\u0000\u0000\u02d7\u02d5\u0001\u0000"+ + "\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02dc\u0001\u0000"+ + "\u0000\u0000\u02d9\u02d7\u0001\u0000\u0000\u0000\u02da\u02db\u0005>\u0000"+ + "\u0000\u02db\u02dd\u0003\u0092I\u0000\u02dc\u02da\u0001\u0000\u0000\u0000"+ + "\u02dc\u02dd\u0001\u0000\u0000\u0000\u02dd\u02df\u0001\u0000\u0000\u0000"+ + "\u02de\u02d1\u0001\u0000\u0000\u0000\u02de\u02d2\u0001\u0000\u0000\u0000"+ + "\u02de\u02df\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000"+ + "\u02e0\u02e1\u0005d\u0000\u0000\u02e1\u008f\u0001\u0000\u0000\u0000\u02e2"+ + "\u02e6\u0003>\u001f\u0000\u02e3\u02e6\u0005B\u0000\u0000\u02e4\u02e6\u0005"+ + "E\u0000\u0000\u02e5\u02e2\u0001\u0000\u0000\u0000\u02e5\u02e3\u0001\u0000"+ + "\u0000\u0000\u02e5\u02e4\u0001\u0000\u0000\u0000\u02e6\u0091\u0001\u0000"+ + "\u0000\u0000\u02e7\u02f0\u0005\\\u0000\u0000\u02e8\u02ed\u0003\u0094J"+ + "\u0000\u02e9\u02ea\u0005>\u0000\u0000\u02ea\u02ec\u0003\u0094J\u0000\u02eb"+ + "\u02e9\u0001\u0000\u0000\u0000\u02ec\u02ef\u0001\u0000\u0000\u0000\u02ed"+ + "\u02eb\u0001\u0000\u0000\u0000\u02ed\u02ee\u0001\u0000\u0000\u0000\u02ee"+ + "\u02f1\u0001\u0000\u0000\u0000\u02ef\u02ed\u0001\u0000\u0000\u0000\u02f0"+ + "\u02e8\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1"+ + "\u02f2\u0001\u0000\u0000\u0000\u02f2\u02f3\u0005]\u0000\u0000\u02f3\u0093"+ + "\u0001\u0000\u0000\u0000\u02f4\u02f5\u0003\u00a2Q\u0000\u02f5\u02f6\u0005"+ + "=\u0000\u0000\u02f6\u02f7\u0003\u0096K\u0000\u02f7\u0095\u0001\u0000\u0000"+ + "\u0000\u02f8\u02fb\u0003\u0098L\u0000\u02f9\u02fb\u0003\u0092I\u0000\u02fa"+ + "\u02f8\u0001\u0000\u0000\u0000\u02fa\u02f9\u0001\u0000\u0000\u0000\u02fb"+ + "\u0097\u0001\u0000\u0000\u0000\u02fc\u0327\u0005H\u0000\u0000\u02fd\u02fe"+ + "\u0003\u00a0P\u0000\u02fe\u02ff\u0005e\u0000\u0000\u02ff\u0327\u0001\u0000"+ + "\u0000\u0000\u0300\u0327\u0003\u009eO\u0000\u0301\u0327\u0003\u00a0P\u0000"+ + "\u0302\u0327\u0003\u009aM\u0000\u0303\u0327\u0003:\u001d\u0000\u0304\u0327"+ + "\u0003\u00a2Q\u0000\u0305\u0306\u0005a\u0000\u0000\u0306\u030b\u0003\u009c"+ + "N\u0000\u0307\u0308\u0005>\u0000\u0000\u0308\u030a\u0003\u009cN\u0000"+ + "\u0309\u0307\u0001\u0000\u0000\u0000\u030a\u030d\u0001\u0000\u0000\u0000"+ + "\u030b\u0309\u0001\u0000\u0000\u0000\u030b\u030c\u0001\u0000\u0000\u0000"+ + "\u030c\u030e\u0001\u0000\u0000\u0000\u030d\u030b\u0001\u0000\u0000\u0000"+ + "\u030e\u030f\u0005b\u0000\u0000\u030f\u0327\u0001\u0000\u0000\u0000\u0310"+ + "\u0311\u0005a\u0000\u0000\u0311\u0316\u0003\u009aM\u0000\u0312\u0313\u0005"+ + ">\u0000\u0000\u0313\u0315\u0003\u009aM\u0000\u0314\u0312\u0001\u0000\u0000"+ + "\u0000\u0315\u0318\u0001\u0000\u0000\u0000\u0316\u0314\u0001\u0000\u0000"+ + "\u0000\u0316\u0317\u0001\u0000\u0000\u0000\u0317\u0319\u0001\u0000\u0000"+ + "\u0000\u0318\u0316\u0001\u0000\u0000\u0000\u0319\u031a\u0005b\u0000\u0000"+ + "\u031a\u0327\u0001\u0000\u0000\u0000\u031b\u031c\u0005a\u0000\u0000\u031c"+ + "\u0321\u0003\u00a2Q\u0000\u031d\u031e\u0005>\u0000\u0000\u031e\u0320\u0003"+ + "\u00a2Q\u0000\u031f\u031d\u0001\u0000\u0000\u0000\u0320\u0323\u0001\u0000"+ + "\u0000\u0000\u0321\u031f\u0001\u0000\u0000\u0000\u0321\u0322\u0001\u0000"+ + "\u0000\u0000\u0322\u0324\u0001\u0000\u0000\u0000\u0323\u0321\u0001\u0000"+ + "\u0000\u0000\u0324\u0325\u0005b\u0000\u0000\u0325\u0327\u0001\u0000\u0000"+ + "\u0000\u0326\u02fc\u0001\u0000\u0000\u0000\u0326\u02fd\u0001\u0000\u0000"+ + "\u0000\u0326\u0300\u0001\u0000\u0000\u0000\u0326\u0301\u0001\u0000\u0000"+ + "\u0000\u0326\u0302\u0001\u0000\u0000\u0000\u0326\u0303\u0001\u0000\u0000"+ + "\u0000\u0326\u0304\u0001\u0000\u0000\u0000\u0326\u0305\u0001\u0000\u0000"+ + "\u0000\u0326\u0310\u0001\u0000\u0000\u0000\u0326\u031b\u0001\u0000\u0000"+ + "\u0000\u0327\u0099\u0001\u0000\u0000\u0000\u0328\u0329\u0007\b\u0000\u0000"+ + "\u0329\u009b\u0001\u0000\u0000\u0000\u032a\u032d\u0003\u009eO\u0000\u032b"+ + "\u032d\u0003\u00a0P\u0000\u032c\u032a\u0001\u0000\u0000\u0000\u032c\u032b"+ + "\u0001\u0000\u0000\u0000\u032d\u009d\u0001\u0000\u0000\u0000\u032e\u0330"+ + "\u0007\u0006\u0000\u0000\u032f\u032e\u0001\u0000\u0000\u0000\u032f\u0330"+ + "\u0001\u0000\u0000\u0000\u0330\u0331\u0001\u0000\u0000\u0000\u0331\u0332"+ + "\u00057\u0000\u0000\u0332\u009f\u0001\u0000\u0000\u0000\u0333\u0335\u0007"+ + "\u0006\u0000\u0000\u0334\u0333\u0001\u0000\u0000\u0000\u0334\u0335\u0001"+ + "\u0000\u0000\u0000\u0335\u0336\u0001\u0000\u0000\u0000\u0336\u0337\u0005"+ + "6\u0000\u0000\u0337\u00a1\u0001\u0000\u0000\u0000\u0338\u0339\u00055\u0000"+ + "\u0000\u0339\u00a3\u0001\u0000\u0000\u0000\u033a\u033b\u0007\t\u0000\u0000"+ + "\u033b\u00a5\u0001\u0000\u0000\u0000\u033c\u033d\u0007\n\u0000\u0000\u033d"+ + "\u033e\u0005z\u0000\u0000\u033e\u033f\u0003\u00a8T\u0000\u033f\u0340\u0003"+ + "\u00aaU\u0000\u0340\u00a7\u0001\u0000\u0000\u0000\u0341\u0342\u0003\u001c"+ + "\u000e\u0000\u0342\u00a9\u0001\u0000\u0000\u0000\u0343\u0344\u0005J\u0000"+ + "\u0000\u0344\u0349\u0003\u00acV\u0000\u0345\u0346\u0005>\u0000\u0000\u0346"+ + "\u0348\u0003\u00acV\u0000\u0347\u0345\u0001\u0000\u0000\u0000\u0348\u034b"+ + "\u0001\u0000\u0000\u0000\u0349\u0347\u0001\u0000\u0000\u0000\u0349\u034a"+ + "\u0001\u0000\u0000\u0000\u034a\u00ab\u0001\u0000\u0000\u0000\u034b\u0349"+ + "\u0001\u0000\u0000\u0000\u034c\u034d\u0003\u0088D\u0000\u034d\u00ad\u0001"+ + "\u0000\u0000\u0000P\u00b9\u00c3\u00df\u00ee\u00f4\u00fd\u0103\u0110\u0114"+ + "\u011f\u012f\u0137\u013b\u0142\u0148\u014f\u0157\u015f\u0167\u016b\u016f"+ + "\u0174\u017f\u0184\u0188\u0196\u01a1\u01a7\u01ae\u01b7\u01ce\u01d6\u01d9"+ + "\u01e0\u01eb\u01f2\u01fa\u0208\u0211\u021c\u022a\u0231\u0235\u0239\u023d"+ + "\u024a\u0253\u025b\u0260\u0268\u026a\u026f\u0276\u027d\u0286\u028d\u0296"+ + "\u029b\u02a0\u02aa\u02b0\u02b8\u02ba\u02c5\u02cc\u02d7\u02dc\u02de\u02e5"+ + "\u02ed\u02f0\u02fa\u030b\u0316\u0321\u0326\u032c\u032f\u0334\u0349"; 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 b09a6b50091a8..aa1d8e91c20a1 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 @@ -836,6 +836,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

*/ @Override public void exitFuseCommand(EsqlBaseParser.FuseCommandContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFuseMethod(EsqlBaseParser.FuseMethodContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFuseMethod(EsqlBaseParser.FuseMethodContext ctx) { } /** * {@inheritDoc} * @@ -1148,6 +1160,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

*/ @Override public void exitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterMapValue(EsqlBaseParser.MapValueContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitMapValue(EsqlBaseParser.MapValueContext 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 cff8592d5de05..0db0d720f9853 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 @@ -496,6 +496,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitFuseCommand(EsqlBaseParser.FuseCommandContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitFuseMethod(EsqlBaseParser.FuseMethodContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -678,6 +685,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitMapValue(EsqlBaseParser.MapValueContext 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 b7756fa31b827..77071c4be4e95 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 @@ -715,6 +715,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitFuseCommand(EsqlBaseParser.FuseCommandContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#fuseMethod}. + * @param ctx the parse tree + */ + void enterFuseMethod(EsqlBaseParser.FuseMethodContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#fuseMethod}. + * @param ctx the parse tree + */ + void exitFuseMethod(EsqlBaseParser.FuseMethodContext ctx); /** * Enter a parse tree produced by the {@code matchExpression} * labeled alternative in {@link EsqlBaseParser#booleanExpression}. @@ -1017,6 +1027,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#mapValue}. + * @param ctx the parse tree + */ + void enterMapValue(EsqlBaseParser.MapValueContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#mapValue}. + * @param ctx the parse tree + */ + void exitMapValue(EsqlBaseParser.MapValueContext ctx); /** * Enter a parse tree produced by the {@code nullLiteral} * labeled alternative in {@link EsqlBaseParser#constant}. 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 1d3f200ddf740..0d4ab71a703ce 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 @@ -436,6 +436,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitFuseCommand(EsqlBaseParser.FuseCommandContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#fuseMethod}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitFuseMethod(EsqlBaseParser.FuseMethodContext ctx); /** * Visit a parse tree produced by the {@code matchExpression} * labeled alternative in {@link EsqlBaseParser#booleanExpression}. @@ -613,6 +619,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#mapValue}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitMapValue(EsqlBaseParser.MapValueContext ctx); /** * Visit a parse tree produced by the {@code nullLiteral} * labeled alternative in {@link EsqlBaseParser#constant}. diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java index 7d9fc42a84b04..3ed25490d0050 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java @@ -615,7 +615,7 @@ public UnresolvedAttribute visitDereference(EsqlBaseParser.DereferenceContext ct @Override public Expression visitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { String name = visitFunctionName(ctx.functionName()); - List args = expressions(ctx.booleanExpression()); + List args = new ArrayList<>(expressions(ctx.booleanExpression())); if (ctx.mapExpression() != null) { MapExpression mapArg = visitMapExpression(ctx.mapExpression()); args.add(mapArg); @@ -672,7 +672,7 @@ public MapExpression visitMapExpression(EsqlBaseParser.MapExpressionContext ctx) if (names.contains(key)) { throw new ParsingException(source(ctx), "Duplicated named parameters with the same name [{}] is not supported", key); } - Expression value = expression(entry.constant()); + Expression value = expression(entry.value.constant() != null ? entry.value.constant() : entry.value.mapExpression()); String entryText = entry.getText(); if (value instanceof Literal l) { if (l.dataType() == NULL) { @@ -681,6 +681,9 @@ public MapExpression visitMapExpression(EsqlBaseParser.MapExpressionContext ctx) namedArgs.add(Literal.keyword(source(stringCtx), key)); namedArgs.add(l); names.add(key); + } else if (value instanceof MapExpression) { + namedArgs.add(Literal.keyword(source(stringCtx), key)); + namedArgs.add(value); } else { throw new ParsingException(source(ctx), "Invalid named parameter [{}], only constant value is supported", entryText); } 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 0b9b4d557cec6..ddfcbd3b5f185 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 @@ -44,12 +44,9 @@ import org.elasticsearch.xpack.esql.expression.Order; import org.elasticsearch.xpack.esql.expression.UnresolvedNamePattern; import org.elasticsearch.xpack.esql.expression.function.UnresolvedFunction; -import org.elasticsearch.xpack.esql.expression.function.aggregate.Sum; -import org.elasticsearch.xpack.esql.expression.function.aggregate.SummationMode; import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; import org.elasticsearch.xpack.esql.plan.logical.ChangePoint; -import org.elasticsearch.xpack.esql.plan.logical.Dedup; import org.elasticsearch.xpack.esql.plan.logical.Dissect; import org.elasticsearch.xpack.esql.plan.logical.Drop; import org.elasticsearch.xpack.esql.plan.logical.Enrich; @@ -68,10 +65,10 @@ 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.RrfScoreEval; import org.elasticsearch.xpack.esql.plan.logical.Sample; import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; @@ -749,20 +746,17 @@ public PlanFactory visitCompositeForkSubQuery(EsqlBaseParser.CompositeForkSubQue public PlanFactory visitFuseCommand(EsqlBaseParser.FuseCommandContext ctx) { Source source = source(ctx); return input -> { - Attribute scoreAttr = new UnresolvedAttribute(source, MetadataAttribute.SCORE); - Attribute forkAttr = new UnresolvedAttribute(source, Fork.FORK_FIELD); + Attribute scoreAttr = ctx.score == null + ? new UnresolvedAttribute(source, MetadataAttribute.SCORE) + : visitQualifiedName(ctx.score); + Attribute discriminatorAttr = ctx.key == null ? new UnresolvedAttribute(source, Fork.FORK_FIELD) : visitQualifiedName(ctx.key); Attribute idAttr = new UnresolvedAttribute(source, IdFieldMapper.NAME); Attribute indexAttr = new UnresolvedAttribute(source, MetadataAttribute.INDEX); - List aggregates = List.of( - new Alias( - source, - MetadataAttribute.SCORE, - new Sum(source, scoreAttr, new Literal(source, true, DataType.BOOLEAN), SummationMode.COMPENSATED_LITERAL) - ) - ); - List groupings = List.of(idAttr, indexAttr); + List groupings = ctx.group == null ? List.of(idAttr, indexAttr) : visitGrouping(ctx.group); + MapExpression options = ctx.fuseOptions == null ? null : visitCommandNamedParameters(ctx.fuseOptions); + Fuse.FuseType fuseType = ctx.fuseType != null && ctx.fuseType.LINEAR() != null ? Fuse.FuseType.LINEAR : Fuse.FuseType.RRF; - return new Dedup(source, new RrfScoreEval(source, input, scoreAttr, forkAttr), aggregates, groupings); + return new Fuse(source, input, scoreAttr, discriminatorAttr, groupings, fuseType, options); }; } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Dedup.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Dedup.java deleted file mode 100644 index d4474e1dd15a9..0000000000000 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/Dedup.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one - * or more contributor license agreements. Licensed under the Elastic License - * 2.0; you may not use this file except in compliance with the Elastic License - * 2.0. - */ - -package org.elasticsearch.xpack.esql.plan.logical; - -import org.elasticsearch.common.io.stream.StreamOutput; -import org.elasticsearch.xpack.esql.core.capabilities.Resolvables; -import org.elasticsearch.xpack.esql.core.expression.Alias; -import org.elasticsearch.xpack.esql.core.expression.Attribute; -import org.elasticsearch.xpack.esql.core.expression.Expression; -import org.elasticsearch.xpack.esql.core.expression.Literal; -import org.elasticsearch.xpack.esql.core.expression.NamedExpression; -import org.elasticsearch.xpack.esql.core.tree.NodeInfo; -import org.elasticsearch.xpack.esql.core.tree.Source; -import org.elasticsearch.xpack.esql.core.type.DataType; -import org.elasticsearch.xpack.esql.expression.NamedExpressions; -import org.elasticsearch.xpack.esql.expression.function.aggregate.Values; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -/** - * Removes the rows that contain the same values for a list specified fields. - * Dedup also receives a list of aggregates similar to {@link Aggregate STATS}. - * In the current implementation Dedup implements {@link SurrogateLogicalPlan} and actually expands to {@link Aggregate STATS}. - * At the moment this is only used in the planning of the RRF command, but could evolve as a standalone command. - */ -public class Dedup extends UnaryPlan implements SurrogateLogicalPlan { - private final List aggregates; - private final List groupings; - private List lazyOutput; - private List lazyFinalAggs; - - public Dedup(Source source, LogicalPlan child, List aggregates, List groupings) { - super(source, child); - this.aggregates = aggregates; - this.groupings = groupings; - } - - @Override - public String getWriteableName() { - throw new UnsupportedOperationException("not serialized"); - } - - @Override - public void writeTo(StreamOutput out) throws IOException { - throw new UnsupportedOperationException("not serialized"); - } - - @Override - protected NodeInfo info() { - return NodeInfo.create(this, Dedup::new, child(), aggregates, groupings); - } - - @Override - public boolean expressionsResolved() { - return Resolvables.resolved(aggregates) && Resolvables.resolved(groupings); - } - - @Override - public UnaryPlan replaceChild(LogicalPlan newChild) { - return new Dedup(source(), newChild, aggregates, groupings); - } - - @Override - public LogicalPlan surrogate() { - return new Aggregate(source(), child(), new ArrayList<>(groupings), finalAggs()); - } - - public List aggregates() { - return aggregates; - } - - public List groupings() { - return groupings; - } - - public List finalAggs() { - if (lazyFinalAggs == null) { - lazyFinalAggs = new ArrayList<>(aggregates); - - Set names = new HashSet<>(aggregates.stream().map(att -> att.name()).toList()); - Expression aggFilter = new Literal(source(), true, DataType.BOOLEAN); - - for (Attribute attr : child().output()) { - if (names.contains(attr.name())) { - continue; - } - - lazyFinalAggs.add(new Alias(source(), attr.name(), new Values(source(), attr, aggFilter))); - } - } - - return lazyFinalAggs; - } - - @Override - public List output() { - if (lazyOutput == null) { - lazyOutput = NamedExpressions.mergeOutputAttributes(finalAggs(), child().output()); - } - return lazyOutput; - } -} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/Fuse.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/Fuse.java new file mode 100644 index 0000000000000..4c5978583742e --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/Fuse.java @@ -0,0 +1,98 @@ +/* + * 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.fuse; + +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.xpack.esql.capabilities.TelemetryAware; +import org.elasticsearch.xpack.esql.core.expression.Attribute; +import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.expression.MapExpression; +import org.elasticsearch.xpack.esql.core.expression.NamedExpression; +import org.elasticsearch.xpack.esql.core.tree.NodeInfo; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; + +import java.io.IOException; +import java.util.List; + +public class Fuse extends UnaryPlan implements TelemetryAware { + private final Attribute score; + private final Attribute discriminator; + private final List groupings; + private final FuseType fuseType; + private final MapExpression fuseOptions; + + public enum FuseType { + RRF, + LINEAR + }; + + public Fuse( + Source source, + LogicalPlan child, + Attribute score, + Attribute discriminator, + List groupings, + FuseType fuseType, + MapExpression options + ) { + super(source, child); + this.score = score; + this.discriminator = discriminator; + this.groupings = groupings; + this.fuseType = fuseType; + this.fuseOptions = options; + + } + + @Override + public String getWriteableName() { + throw new UnsupportedOperationException("not serialized"); + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + throw new UnsupportedOperationException("not serialized"); + } + + @Override + protected NodeInfo info() { + return NodeInfo.create(this, Fuse::new, child(), score, discriminator, groupings, fuseType, fuseOptions); + } + + @Override + public UnaryPlan replaceChild(LogicalPlan newChild) { + return new Fuse(source(), newChild, score, discriminator, groupings, fuseType, fuseOptions); + } + + public List groupings() { + return groupings; + } + + public Attribute discriminator() { + return discriminator; + } + + public Attribute score() { + return score; + } + + public FuseType fuseType() { + return fuseType; + } + + public MapExpression fuseOptions() { + return fuseOptions; + } + + @Override + public boolean expressionsResolved() { + return score.resolved() && discriminator.resolved() && groupings.stream().allMatch(Expression::resolved); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/FuseConfig.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/FuseConfig.java new file mode 100644 index 0000000000000..8e86772675896 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/FuseConfig.java @@ -0,0 +1,61 @@ +/* + * 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.fuse; + +import org.apache.lucene.util.BytesRef; +import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.expression.FoldContext; +import org.elasticsearch.xpack.esql.core.expression.MapExpression; + +import java.util.HashMap; +import java.util.Map; + +public record FuseConfig(Fuse.FuseType fuseType, MapExpression options) { + private static final double RANK_CONSTANT = 60; + + public double rankConstant() { + if (options == null) { + return RANK_CONSTANT; + } + + Expression rankConstant = options.get("rank_constant"); + if (rankConstant == null) { + return RANK_CONSTANT; + } + return (Integer) rankConstant.fold(FoldContext.small()); + } + + public String normalizer() { + if (options == null) { + return "none"; + } + + Expression normalizer = options.get("normalizer"); + if (normalizer == null) { + return "none"; + } + BytesRef normalizerBytes = (BytesRef) normalizer.fold(FoldContext.small()); + + return normalizerBytes.utf8ToString(); + } + + public Map weights() { + Map result = new HashMap<>(); + if (options == null) { + return result; + } + + MapExpression weights = (MapExpression) options.get("weights"); + if (weights == null) { + return result; + } + + weights.keyFoldedMap().forEach((k, v) -> { result.put(k, (double) v.fold(FoldContext.small())); }); + return result; + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/RrfScoreEval.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/FuseScoreEval.java similarity index 52% rename from x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/RrfScoreEval.java rename to x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/FuseScoreEval.java index 9fc16ac615231..f9e4b7e7e5037 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/RrfScoreEval.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/fuse/FuseScoreEval.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.esql.plan.logical; +package org.elasticsearch.xpack.esql.plan.logical.fuse; import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.license.License; @@ -14,73 +14,64 @@ import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import java.io.IOException; -import java.util.Objects; -public class RrfScoreEval extends UnaryPlan implements LicenseAware { - private final Attribute forkAttr; - private final Attribute scoreAttr; +public class FuseScoreEval extends UnaryPlan implements LicenseAware { - public RrfScoreEval(Source source, LogicalPlan child, Attribute scoreAttr, Attribute forkAttr) { + private final Attribute discriminator; + private final Attribute score; + private final FuseConfig config; + + public FuseScoreEval(Source source, LogicalPlan child, Attribute score, Attribute discriminator, FuseConfig config) { super(source, child); - this.scoreAttr = scoreAttr; - this.forkAttr = forkAttr; - } - @Override - public void writeTo(StreamOutput out) throws IOException { - throw new UnsupportedOperationException("not serialized"); + this.discriminator = discriminator; + this.score = score; + this.config = config; } @Override - public String getWriteableName() { - throw new UnsupportedOperationException("not serialized"); + public UnaryPlan replaceChild(LogicalPlan newChild) { + return new FuseScoreEval(source(), newChild, score, discriminator, config); } @Override protected NodeInfo info() { - return NodeInfo.create(this, RrfScoreEval::new, child(), scoreAttr, forkAttr); + return NodeInfo.create(this, FuseScoreEval::new, child(), score, discriminator, config); } @Override - public boolean expressionsResolved() { - return scoreAttr.resolved() && forkAttr.resolved(); + public String getWriteableName() { + throw new UnsupportedOperationException("not serialized"); } @Override - public UnaryPlan replaceChild(LogicalPlan newChild) { - return new RrfScoreEval(source(), newChild, scoreAttr, forkAttr); + public void writeTo(StreamOutput out) throws IOException { + throw new UnsupportedOperationException("not serialized"); } - public Attribute scoreAttribute() { - return scoreAttr; + @Override + public boolean expressionsResolved() { + return score.resolved() && discriminator.resolved(); } - public Attribute forkAttribute() { - return forkAttr; + @Override + public boolean licenseCheck(XPackLicenseState state) { + return state.isAllowedByLicense(License.OperationMode.ENTERPRISE); } - @Override - public int hashCode() { - return Objects.hash(super.hashCode(), scoreAttr, forkAttr); + public Attribute discriminator() { + return discriminator; } - @Override - public boolean equals(Object obj) { - if (this == obj) { - return true; - } - if (obj == null || getClass() != obj.getClass()) { - return false; - } - - RrfScoreEval rrf = (RrfScoreEval) obj; - return child().equals(rrf.child()) && scoreAttr.equals(rrf.scoreAttribute()) && forkAttr.equals(forkAttribute()); + public Attribute score() { + return score; } - @Override - public boolean licenseCheck(XPackLicenseState state) { - return state.isAllowedByLicense(License.OperationMode.ENTERPRISE); + public FuseConfig config() { + return config; } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/RrfScoreEvalExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/FuseScoreEvalExec.java similarity index 55% rename from x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/RrfScoreEvalExec.java rename to x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/FuseScoreEvalExec.java index 8b9b203af1715..ad996cf5b73b1 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/RrfScoreEvalExec.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/FuseScoreEvalExec.java @@ -9,20 +9,32 @@ import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.xpack.esql.core.expression.Attribute; -import org.elasticsearch.xpack.esql.core.expression.AttributeSet; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseConfig; import java.io.IOException; -public class RrfScoreEvalExec extends UnaryExec { - private final Attribute scoreAttr; - private final Attribute forkAttr; +public class FuseScoreEvalExec extends UnaryExec { + private final Attribute score; + private final Attribute discriminator; + private final FuseConfig config; - public RrfScoreEvalExec(Source source, PhysicalPlan child, Attribute scoreAttr, Attribute forkAttr) { + public FuseScoreEvalExec(Source source, PhysicalPlan child, Attribute score, Attribute discriminator, FuseConfig config) { super(source, child); - this.scoreAttr = scoreAttr; - this.forkAttr = forkAttr; + this.score = score; + this.discriminator = discriminator; + this.config = config; + } + + @Override + public UnaryExec replaceChild(PhysicalPlan newChild) { + return new FuseScoreEvalExec(source(), newChild, score, discriminator, config); + } + + @Override + protected NodeInfo info() { + return NodeInfo.create(this, FuseScoreEvalExec::new, child(), score, discriminator, config); } @Override @@ -35,18 +47,15 @@ public void writeTo(StreamOutput out) throws IOException { throw new UnsupportedOperationException("not serialized"); } - @Override - protected NodeInfo info() { - return NodeInfo.create(this, RrfScoreEvalExec::new, child(), scoreAttr, forkAttr); + public Attribute score() { + return score; } - @Override - public UnaryExec replaceChild(PhysicalPlan newChild) { - return new RrfScoreEvalExec(source(), newChild, scoreAttr, forkAttr); + public Attribute discriminator() { + return discriminator; } - @Override - protected AttributeSet computeReferences() { - return AttributeSet.of(scoreAttr, forkAttr); + public FuseConfig config() { + return config; } } 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 5ae15f4c0e844..329d739adc4eb 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 @@ -31,6 +31,7 @@ import org.elasticsearch.compute.operator.EvalOperator.EvalOperatorFactory; import org.elasticsearch.compute.operator.FilterOperator.FilterOperatorFactory; import org.elasticsearch.compute.operator.LimitOperator; +import org.elasticsearch.compute.operator.LinearScoreEvalOperator; import org.elasticsearch.compute.operator.LocalSourceOperator; import org.elasticsearch.compute.operator.LocalSourceOperator.LocalSourceFactory; import org.elasticsearch.compute.operator.MvExpandOperator; @@ -92,7 +93,7 @@ import org.elasticsearch.xpack.esql.inference.XContentRowEncoder; import org.elasticsearch.xpack.esql.inference.completion.CompletionOperator; import org.elasticsearch.xpack.esql.inference.rerank.RerankOperator; -import org.elasticsearch.xpack.esql.plan.logical.Fork; +import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse; import org.elasticsearch.xpack.esql.plan.physical.AggregateExec; import org.elasticsearch.xpack.esql.plan.physical.ChangePointExec; import org.elasticsearch.xpack.esql.plan.physical.DissectExec; @@ -105,6 +106,7 @@ import org.elasticsearch.xpack.esql.plan.physical.ExchangeSourceExec; import org.elasticsearch.xpack.esql.plan.physical.FieldExtractExec; import org.elasticsearch.xpack.esql.plan.physical.FilterExec; +import org.elasticsearch.xpack.esql.plan.physical.FuseScoreEvalExec; import org.elasticsearch.xpack.esql.plan.physical.GrokExec; import org.elasticsearch.xpack.esql.plan.physical.HashJoinExec; import org.elasticsearch.xpack.esql.plan.physical.LimitExec; @@ -115,7 +117,6 @@ import org.elasticsearch.xpack.esql.plan.physical.ParallelExec; import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.ProjectExec; -import org.elasticsearch.xpack.esql.plan.physical.RrfScoreEvalExec; import org.elasticsearch.xpack.esql.plan.physical.SampleExec; import org.elasticsearch.xpack.esql.plan.physical.ShowExec; import org.elasticsearch.xpack.esql.plan.physical.TimeSeriesAggregateExec; @@ -310,8 +311,8 @@ else if (node instanceof OutputExec outputExec) { return planOutput(outputExec, context); } else if (node instanceof ExchangeSinkExec exchangeSink) { return planExchangeSink(exchangeSink, context); - } else if (node instanceof RrfScoreEvalExec rrf) { - return planRrfScoreEvalExec(rrf, context); + } else if (node instanceof FuseScoreEvalExec linear) { + return planFuseScoreEvalExec(linear, context); } throw new EsqlIllegalArgumentException("unknown physical plan node [" + node.nodeName() + "]"); @@ -330,17 +331,18 @@ private PhysicalOperation planCompletion(CompletionExec completion, LocalExecuti return source.with(new CompletionOperator.Factory(inferenceService, inferenceId, promptEvaluatorFactory), outputLayout); } - private PhysicalOperation planRrfScoreEvalExec(RrfScoreEvalExec rrf, LocalExecutionPlannerContext context) { - PhysicalOperation source = plan(rrf.child(), context); + private PhysicalOperation planFuseScoreEvalExec(FuseScoreEvalExec fuse, LocalExecutionPlannerContext context) { + PhysicalOperation source = plan(fuse.child(), context); int scorePosition = -1; - int forkPosition = -1; + int discriminatorPosition = -1; int pos = 0; - for (Attribute attr : rrf.child().output()) { - if (attr.name().equals(Fork.FORK_FIELD)) { - forkPosition = pos; + + for (Attribute attr : fuse.child().output()) { + if (attr.name().equals(fuse.discriminator().name())) { + discriminatorPosition = pos; } - if (attr.name().equals(MetadataAttribute.SCORE)) { + if (attr.name().equals(fuse.score().name())) { scorePosition = pos; } @@ -348,13 +350,24 @@ private PhysicalOperation planRrfScoreEvalExec(RrfScoreEvalExec rrf, LocalExecut } if (scorePosition == -1) { - throw new IllegalStateException("can't find _score attribute position"); + throw new IllegalStateException("can't find score attribute position"); + } + if (discriminatorPosition == -1) { + throw new IllegalStateException("can'find discriminator attribute position"); } - if (forkPosition == -1) { - throw new IllegalStateException("can'find _fork attribute position"); + + var config = fuse.config(); + if (config.fuseType() == Fuse.FuseType.LINEAR) { + return source.with( + new LinearScoreEvalOperator.Factory(scorePosition, discriminatorPosition, config.weights(), config.normalizer()), + source.layout + ); } - return source.with(new RrfScoreEvalOperator.Factory(forkPosition, scorePosition), source.layout); + return source.with( + new RrfScoreEvalOperator.Factory(discriminatorPosition, scorePosition, config.rankConstant(), config.weights()), + source.layout + ); } private PhysicalOperation planAggregation(AggregateExec aggregate, LocalExecutionPlannerContext context) { 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 5cbf8f4844b2d..4f0ebd8dd3fc7 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 @@ -22,10 +22,10 @@ import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.MvExpand; import org.elasticsearch.xpack.esql.plan.logical.Project; -import org.elasticsearch.xpack.esql.plan.logical.RrfScoreEval; import org.elasticsearch.xpack.esql.plan.logical.Sample; import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.local.LocalRelation; @@ -36,12 +36,12 @@ import org.elasticsearch.xpack.esql.plan.physical.EnrichExec; import org.elasticsearch.xpack.esql.plan.physical.EvalExec; import org.elasticsearch.xpack.esql.plan.physical.FilterExec; +import org.elasticsearch.xpack.esql.plan.physical.FuseScoreEvalExec; import org.elasticsearch.xpack.esql.plan.physical.GrokExec; import org.elasticsearch.xpack.esql.plan.physical.LocalSourceExec; import org.elasticsearch.xpack.esql.plan.physical.MvExpandExec; import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.ProjectExec; -import org.elasticsearch.xpack.esql.plan.physical.RrfScoreEvalExec; import org.elasticsearch.xpack.esql.plan.physical.SampleExec; import org.elasticsearch.xpack.esql.plan.physical.ShowExec; import org.elasticsearch.xpack.esql.plan.physical.TimeSeriesAggregateExec; @@ -135,8 +135,14 @@ static PhysicalPlan mapUnary(UnaryPlan p, PhysicalPlan child) { ); } - if (p instanceof RrfScoreEval rrf) { - return new RrfScoreEvalExec(rrf.source(), child, rrf.scoreAttribute(), rrf.forkAttribute()); + if (p instanceof FuseScoreEval fuseScoreEval) { + return new FuseScoreEvalExec( + fuseScoreEval.source(), + child, + fuseScoreEval.score(), + fuseScoreEval.discriminator(), + fuseScoreEval.config() + ); } if (p instanceof Sample sample) { 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 639a48d8b54da..d67bfe36e8fc3 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 @@ -10,7 +10,6 @@ import org.elasticsearch.xpack.esql.EsqlIllegalArgumentException; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; import org.elasticsearch.xpack.esql.plan.logical.ChangePoint; -import org.elasticsearch.xpack.esql.plan.logical.Dedup; import org.elasticsearch.xpack.esql.plan.logical.Dissect; import org.elasticsearch.xpack.esql.plan.logical.Drop; import org.elasticsearch.xpack.esql.plan.logical.Enrich; @@ -31,9 +30,10 @@ 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.RrfScoreEval; import org.elasticsearch.xpack.esql.plan.logical.Sample; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin; @@ -67,10 +67,9 @@ public enum FeatureMetric { CHANGE_POINT(ChangePoint.class::isInstance), INLINESTATS(InlineStats.class::isInstance), RERANK(Rerank.class::isInstance), - DEDUP(Dedup.class::isInstance), + FUSE(Fuse.class::isInstance), INSIST(Insist.class::isInstance), FORK(Fork.class::isInstance), - RRF(RrfScoreEval.class::isInstance), COMPLETION(Completion.class::isInstance), SAMPLE(Sample.class::isInstance); @@ -81,6 +80,7 @@ public enum FeatureMetric { UnresolvedRelation.class, EsqlProject.class, Project.class, + FuseScoreEval.class, Limit.class // LIMIT is managed in another way, see above ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 7307285ec37a7..6bdff0c8d697a 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -70,7 +70,6 @@ import org.elasticsearch.xpack.esql.parser.QueryParams; import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; -import org.elasticsearch.xpack.esql.plan.logical.Dedup; import org.elasticsearch.xpack.esql.plan.logical.Dissect; import org.elasticsearch.xpack.esql.plan.logical.Enrich; import org.elasticsearch.xpack.esql.plan.logical.EsRelation; @@ -84,8 +83,8 @@ 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.RrfScoreEval; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseScoreEval; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject; @@ -3453,8 +3452,7 @@ public void testForkError() { } public void testValidFuse() { - assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE.isEnabled()); - + assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); LogicalPlan plan = analyze(""" from test metadata _id, _index, _score | fork ( where first_name:"foo" ) @@ -3464,21 +3462,20 @@ public void testValidFuse() { Limit limit = as(plan, Limit.class); - Dedup dedup = as(limit.child(), Dedup.class); - assertThat(dedup.groupings().size(), equalTo(2)); - assertThat(dedup.aggregates().size(), equalTo(15)); + Aggregate aggregate = as(limit.child(), Aggregate.class); + assertThat(aggregate.groupings().size(), equalTo(2)); - RrfScoreEval rrf = as(dedup.child(), RrfScoreEval.class); - assertThat(rrf.scoreAttribute(), instanceOf(ReferenceAttribute.class)); - assertThat(rrf.scoreAttribute().name(), equalTo("_score")); - assertThat(rrf.forkAttribute(), instanceOf(ReferenceAttribute.class)); - assertThat(rrf.forkAttribute().name(), equalTo("_fork")); + FuseScoreEval scoreEval = as(aggregate.child(), FuseScoreEval.class); + assertThat(scoreEval.score(), instanceOf(ReferenceAttribute.class)); + assertThat(scoreEval.score().name(), equalTo("_score")); + assertThat(scoreEval.discriminator(), instanceOf(ReferenceAttribute.class)); + assertThat(scoreEval.discriminator().name(), equalTo("_fork")); - assertThat(rrf.child(), instanceOf(Fork.class)); + assertThat(scoreEval.child(), instanceOf(Fork.class)); } public void testFuseError() { - assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("requires FUSE capability", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); var e = expectThrows(VerificationException.class, () -> analyze(""" from test diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index eca570616ded2..9231387a514b0 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 @@ -45,7 +45,6 @@ import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.LessThanOrEqual; import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; -import org.elasticsearch.xpack.esql.plan.logical.Dedup; import org.elasticsearch.xpack.esql.plan.logical.Dissect; import org.elasticsearch.xpack.esql.plan.logical.Drop; import org.elasticsearch.xpack.esql.plan.logical.Enrich; @@ -64,9 +63,9 @@ 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.RrfScoreEval; import org.elasticsearch.xpack.esql.plan.logical.TimeSeriesAggregate; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse; import org.elasticsearch.xpack.esql.plan.logical.inference.Completion; import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes; @@ -3963,7 +3962,7 @@ static Alias alias(String name, Expression value) { } public void testValidFuse() { - assumeTrue("FUSE requires corresponding capability", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE requires corresponding capability", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); LogicalPlan plan = statement(""" FROM foo* METADATA _id, _index, _score @@ -3972,22 +3971,14 @@ public void testValidFuse() { | FUSE """); - var dedup = as(plan, Dedup.class); - assertThat(dedup.groupings().size(), equalTo(2)); - assertThat(dedup.groupings().get(0), instanceOf(UnresolvedAttribute.class)); - assertThat(dedup.groupings().get(0).name(), equalTo("_id")); - assertThat(dedup.groupings().get(1), instanceOf(UnresolvedAttribute.class)); - assertThat(dedup.groupings().get(1).name(), equalTo("_index")); - assertThat(dedup.aggregates().size(), equalTo(1)); - assertThat(dedup.aggregates().get(0), instanceOf(Alias.class)); - - var rrfScoreEval = as(dedup.child(), RrfScoreEval.class); - assertThat(rrfScoreEval.scoreAttribute(), instanceOf(UnresolvedAttribute.class)); - assertThat(rrfScoreEval.scoreAttribute().name(), equalTo("_score")); - assertThat(rrfScoreEval.forkAttribute(), instanceOf(UnresolvedAttribute.class)); - assertThat(rrfScoreEval.forkAttribute().name(), equalTo("_fork")); - - assertThat(rrfScoreEval.child(), instanceOf(Fork.class)); + var fuse = as(plan, Fuse.class); + assertThat(fuse.groupings().size(), equalTo(2)); + assertThat(fuse.groupings().get(0), instanceOf(UnresolvedAttribute.class)); + assertThat(fuse.groupings().get(0).name(), equalTo("_id")); + assertThat(fuse.groupings().get(1), instanceOf(UnresolvedAttribute.class)); + assertThat(fuse.groupings().get(1).name(), equalTo("_index")); + + assertThat(fuse.child(), instanceOf(Fork.class)); } public void testDoubleParamsForIdentifier() { diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/session/FieldNameUtilsTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/session/FieldNameUtilsTests.java index 58934fe68f8cb..d42ef18bf8699 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/session/FieldNameUtilsTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/session/FieldNameUtilsTests.java @@ -2243,7 +2243,7 @@ public void testForkRef4() { } public void testRerankerAfterFuse() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM books METADATA _id, _index, _score @@ -2258,7 +2258,7 @@ public void testRerankerAfterFuse() { } public void testSimpleFuse() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM employees METADATA _id, _index, _score @@ -2271,7 +2271,7 @@ public void testSimpleFuse() { } public void testFuseWithMatchAndScore() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM books METADATA _id, _index, _score @@ -2285,7 +2285,7 @@ public void testFuseWithMatchAndScore() { } public void testFuseWithDisjunctionAndPostFilter() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM books METADATA _id, _index, _score @@ -2300,7 +2300,7 @@ public void testFuseWithDisjunctionAndPostFilter() { } public void testFuseWithStats() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM books METADATA _id, _index, _score @@ -2313,7 +2313,7 @@ public void testFuseWithStats() { } public void testFuseWithMultipleForkBranches() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM books METADATA _id, _index, _score @@ -2330,7 +2330,7 @@ public void testFuseWithMultipleForkBranches() { } public void testFuseWithSemanticSearch() { - assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE.isEnabled()); + assumeTrue("FUSE required", EsqlCapabilities.Cap.FUSE_V2.isEnabled()); assertTrue("FORK required", EsqlCapabilities.Cap.FORK_V9.isEnabled()); assertFieldNames(""" FROM semantic_text METADATA _id, _score, _index diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java index e24e6adc2becb..ec77587093cf3 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/tree/EsqlNodeSubclassTests.java @@ -47,6 +47,8 @@ import org.elasticsearch.xpack.esql.plan.logical.Fork; import org.elasticsearch.xpack.esql.plan.logical.Grok; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.fuse.Fuse; +import org.elasticsearch.xpack.esql.plan.logical.fuse.FuseConfig; import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig; import org.elasticsearch.xpack.esql.plan.logical.join.JoinType; import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes; @@ -518,6 +520,10 @@ public void accept(Page page) { ); } + if (argClass == FuseConfig.class) { + return new FuseConfig(randomFrom(Fuse.FuseType.RRF, Fuse.FuseType.LINEAR), null); + } + try { return mock(argClass); } catch (MockitoException e) {