From c3f556f0dcc21befdfa2d488691cbb77a0c57118 Mon Sep 17 00:00:00 2001 From: rob bygrave Date: Thu, 15 Aug 2019 23:40:19 +1200 Subject: [PATCH] #1794 - Extend EQL to support inOrEmpty, eqOrNull, gtOrNull, ltOrNull --- .../server/grammer/EqlOperator.java | 3 + .../server/grammer/EqlWhereListener.java | 70 +- .../server/grammer/OperatorMapping.java | 7 +- .../server/grammer/antlr/EQL.interp | 11 +- .../server/grammer/antlr/EQL.tokens | 108 +-- .../server/grammer/antlr/EQLBaseListener.java | 12 + .../server/grammer/antlr/EQLLexer.interp | 14 +- .../server/grammer/antlr/EQLLexer.java | 420 ++++----- .../server/grammer/antlr/EQLLexer.tokens | 108 +-- .../server/grammer/antlr/EQLListener.java | 10 + .../server/grammer/antlr/EQLParser.java | 798 ++++++++++-------- .../server/grammer/EqlParserTest.java | 115 +++ src/test/resources/EQL.g4 | 6 + 13 files changed, 994 insertions(+), 688 deletions(-) diff --git a/src/main/java/io/ebeaninternal/server/grammer/EqlOperator.java b/src/main/java/io/ebeaninternal/server/grammer/EqlOperator.java index 809413fd2..b47b84998 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/EqlOperator.java +++ b/src/main/java/io/ebeaninternal/server/grammer/EqlOperator.java @@ -10,6 +10,9 @@ enum EqlOperator { LTE, GT, GTE, + EQORNULL, + LTORNULL, + GTORNULL, CONTAINS, STARTS_WITH, ENDS_WITH, diff --git a/src/main/java/io/ebeaninternal/server/grammer/EqlWhereListener.java b/src/main/java/io/ebeaninternal/server/grammer/EqlWhereListener.java index 2c623125b..9394918ca 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/EqlWhereListener.java +++ b/src/main/java/io/ebeaninternal/server/grammer/EqlWhereListener.java @@ -15,6 +15,7 @@ import org.antlr.v4.runtime.tree.TerminalNode; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; +import java.util.Set; abstract class EqlWhereListener extends EQLBaseListener { @@ -26,6 +27,8 @@ abstract class EqlWhereListener extends EQLBaseListener { boolean textMode; + private boolean inWithEmpty; + private List inValues; private String inPropertyName; @@ -102,6 +105,13 @@ abstract class EqlWhereListener extends EQLBaseListener { addBetweenProperty(rawValue, child(ctx, 2), child(ctx, 4)); } + @Override + public void enterInOrEmpty_expression(EQLParser.InOrEmpty_expressionContext ctx) { + this.inWithEmpty = true; + this.inValues = new ArrayList<>(); + this.inPropertyName = getLeftHandSidePath(ctx); + } + @Override public void enterIn_expression(EQLParser.In_expressionContext ctx) { this.inValues = new ArrayList<>(); @@ -113,12 +123,42 @@ abstract class EqlWhereListener extends EQLBaseListener { int childCount = ctx.getChildCount(); for (int i = 0; i < childCount; i++) { String text = child(ctx, i); - if (isValue(text)) { - inValues.add(bind(text)); + if (text.startsWith("?")) { + inValues = toList(getBindValue(EqlValueType.POS_PARAM, text)); + } else { + if (inWithEmpty) { + throw new IllegalArgumentException("Sorry, can only use inOrEmpty with positioned parameters"); + } + if (isValue(text)) { + inValues.add(bind(text)); + } } } } + @SuppressWarnings("unchecked") + private List toList(Object value) { + if (value == null) return null; + if (value instanceof List) { + return (List)value; + } + if (value instanceof Set) { + return new ArrayList<>((Set)value); + } + throw new IllegalArgumentException("Expected List of Set but got " + value); + } + + @Override + public void exitIn_expression(EQLParser.In_expressionContext ctx) { + peekExprList().in(inPropertyName, inValues); + } + + @Override + public void exitInOrEmpty_expression(EQLParser.InOrEmpty_expressionContext ctx) { + inWithEmpty = false; + peekExprList().inOrEmpty(inPropertyName, inValues); + } + String child(ParserRuleContext ctx, int position) { ParseTree child = ctx.getChild(position); return child.getText(); @@ -128,11 +168,6 @@ abstract class EqlWhereListener extends EQLBaseListener { return text.length() != 1 || (!text.equals("(") && !text.equals(")") && !text.equals(",")); } - @Override - public void exitIn_expression(EQLParser.In_expressionContext ctx) { - addIn(inPropertyName, inValues); - } - @Override public void enterIsNull_expression(EQLParser.IsNull_expressionContext ctx) { String path = getLeftHandSidePath(ctx); @@ -210,6 +245,12 @@ abstract class EqlWhereListener extends EQLBaseListener { return EqlOperator.LT; case GTE: return EqlOperator.LTE; + case EQORNULL: + return EqlOperator.EQORNULL; + case GTORNULL: + return EqlOperator.LTORNULL; + case LTORNULL: + return EqlOperator.GTORNULL; default: throw new IllegalStateException("Can not invert operator " + op); } @@ -322,12 +363,7 @@ abstract class EqlWhereListener extends EQLBaseListener { peekExprList().inRange(path, bind(value1), bind(value2)); } - private void addIn(String path, List inValues) { - peekExprList().in(path, inValues); - } - private void addExpression(String path, EqlOperator op, String value) { - switch (op) { case EQ: peekExprList().eq(path, bind(value)); @@ -377,6 +413,16 @@ abstract class EqlWhereListener extends EQLBaseListener { case IENDS_WITH: addLike(true, LikeType.ENDS_WITH, path, bind(value)); break; + case EQORNULL: + peekExprList().eqOrNull(path, bind(value)); + break; + case GTORNULL: + peekExprList().gtOrNull(path, bind(value)); + break; + case LTORNULL: + peekExprList().ltOrNull(path, bind(value)); + break; + default: throw new IllegalStateException("Unhandled operator " + op); } diff --git a/src/main/java/io/ebeaninternal/server/grammer/OperatorMapping.java b/src/main/java/io/ebeaninternal/server/grammer/OperatorMapping.java index f00a52868..e0e197a49 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/OperatorMapping.java +++ b/src/main/java/io/ebeaninternal/server/grammer/OperatorMapping.java @@ -5,9 +5,9 @@ import java.util.Map; class OperatorMapping { - final Map map = new HashMap<>(); + private final Map map = new HashMap<>(); - public OperatorMapping() { + OperatorMapping() { map.put("eq", EqlOperator.EQ); map.put("=", EqlOperator.EQ); map.put("ieq", EqlOperator.IEQ); @@ -43,6 +43,9 @@ class OperatorMapping { map.put("inrange", EqlOperator.INRANGE); map.put("between", EqlOperator.BETWEEN); + map.put("eqOrNull", EqlOperator.EQORNULL); + map.put("gtOrNull", EqlOperator.GTORNULL); + map.put("ltOrNull", EqlOperator.LTORNULL); } public EqlOperator get(String key) { diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.interp b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.interp index cbba0145d..507556a81 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.interp +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.interp @@ -22,6 +22,7 @@ null 'or' 'and' 'not' +'inOrEmpty' 'in' 'between' 'inrange' @@ -60,6 +61,9 @@ null 'ne' 'ieq' 'ine' +'eqOrNull' +'gtOrNull' +'ltOrNull' null null null @@ -134,6 +138,10 @@ null null null null +null +null +null +null INPUT_VARIABLE PATH_VARIABLE QUOTED_PATH_VARIABLE @@ -175,6 +183,7 @@ conditional_term conditional_factor conditional_primary any_expression +inOrEmpty_expression in_expression in_value between_expression @@ -193,4 +202,4 @@ literal atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 73, 350, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 3, 2, 5, 2, 90, 10, 2, 3, 2, 7, 2, 93, 10, 2, 12, 2, 14, 2, 96, 11, 2, 3, 2, 5, 2, 99, 10, 2, 3, 2, 5, 2, 102, 10, 2, 3, 2, 5, 2, 105, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 114, 10, 3, 3, 4, 3, 4, 5, 4, 118, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 134, 10, 8, 12, 8, 14, 8, 137, 11, 8, 3, 9, 3, 9, 5, 9, 141, 10, 9, 3, 9, 5, 9, 144, 10, 9, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 150, 10, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 5, 12, 157, 10, 12, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 5, 14, 164, 10, 14, 3, 14, 3, 14, 5, 14, 168, 10, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 7, 16, 177, 10, 16, 12, 16, 14, 16, 180, 11, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 188, 10, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 198, 10, 21, 3, 22, 3, 22, 5, 22, 202, 10, 22, 3, 23, 3, 23, 5, 23, 206, 10, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 7, 25, 215, 10, 25, 12, 25, 14, 25, 218, 11, 25, 3, 26, 3, 26, 3, 26, 7, 26, 223, 10, 26, 12, 26, 14, 26, 226, 11, 26, 3, 27, 5, 27, 229, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 238, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 254, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 265, 10, 31, 12, 31, 14, 31, 268, 11, 31, 3, 31, 3, 31, 5, 31, 272, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 297, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 307, 10, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 314, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 324, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 340, 10, 41, 3, 42, 3, 42, 3, 43, 3, 43, 5, 43, 346, 10, 43, 3, 44, 3, 44, 3, 44, 2, 2, 45, 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, 2, 7, 3, 2, 14, 15, 3, 2, 64, 65, 3, 2, 38, 45, 3, 2, 46, 62, 4, 2, 67, 68, 72, 72, 2, 351, 2, 89, 3, 2, 2, 2, 4, 113, 3, 2, 2, 2, 6, 115, 3, 2, 2, 2, 8, 121, 3, 2, 2, 2, 10, 123, 3, 2, 2, 2, 12, 125, 3, 2, 2, 2, 14, 128, 3, 2, 2, 2, 16, 138, 3, 2, 2, 2, 18, 149, 3, 2, 2, 2, 20, 151, 3, 2, 2, 2, 22, 153, 3, 2, 2, 2, 24, 158, 3, 2, 2, 2, 26, 161, 3, 2, 2, 2, 28, 169, 3, 2, 2, 2, 30, 173, 3, 2, 2, 2, 32, 181, 3, 2, 2, 2, 34, 187, 3, 2, 2, 2, 36, 189, 3, 2, 2, 2, 38, 192, 3, 2, 2, 2, 40, 197, 3, 2, 2, 2, 42, 199, 3, 2, 2, 2, 44, 203, 3, 2, 2, 2, 46, 207, 3, 2, 2, 2, 48, 211, 3, 2, 2, 2, 50, 219, 3, 2, 2, 2, 52, 228, 3, 2, 2, 2, 54, 237, 3, 2, 2, 2, 56, 253, 3, 2, 2, 2, 58, 255, 3, 2, 2, 2, 60, 271, 3, 2, 2, 2, 62, 273, 3, 2, 2, 2, 64, 279, 3, 2, 2, 2, 66, 285, 3, 2, 2, 2, 68, 296, 3, 2, 2, 2, 70, 306, 3, 2, 2, 2, 72, 313, 3, 2, 2, 2, 74, 323, 3, 2, 2, 2, 76, 325, 3, 2, 2, 2, 78, 329, 3, 2, 2, 2, 80, 339, 3, 2, 2, 2, 82, 341, 3, 2, 2, 2, 84, 345, 3, 2, 2, 2, 86, 347, 3, 2, 2, 2, 88, 90, 5, 6, 4, 2, 89, 88, 3, 2, 2, 2, 89, 90, 3, 2, 2, 2, 90, 94, 3, 2, 2, 2, 91, 93, 5, 10, 6, 2, 92, 91, 3, 2, 2, 2, 93, 96, 3, 2, 2, 2, 94, 92, 3, 2, 2, 2, 94, 95, 3, 2, 2, 2, 95, 98, 3, 2, 2, 2, 96, 94, 3, 2, 2, 2, 97, 99, 5, 12, 7, 2, 98, 97, 3, 2, 2, 2, 98, 99, 3, 2, 2, 2, 99, 101, 3, 2, 2, 2, 100, 102, 5, 14, 8, 2, 101, 100, 3, 2, 2, 2, 101, 102, 3, 2, 2, 2, 102, 104, 3, 2, 2, 2, 103, 105, 5, 22, 12, 2, 104, 103, 3, 2, 2, 2, 104, 105, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 107, 7, 2, 2, 3, 107, 3, 3, 2, 2, 2, 108, 109, 7, 3, 2, 2, 109, 110, 5, 30, 16, 2, 110, 111, 7, 4, 2, 2, 111, 114, 3, 2, 2, 2, 112, 114, 5, 30, 16, 2, 113, 108, 3, 2, 2, 2, 113, 112, 3, 2, 2, 2, 114, 5, 3, 2, 2, 2, 115, 117, 7, 5, 2, 2, 116, 118, 5, 8, 5, 2, 117, 116, 3, 2, 2, 2, 117, 118, 3, 2, 2, 2, 118, 119, 3, 2, 2, 2, 119, 120, 5, 4, 3, 2, 120, 7, 3, 2, 2, 2, 121, 122, 7, 6, 2, 2, 122, 9, 3, 2, 2, 2, 123, 124, 5, 26, 14, 2, 124, 11, 3, 2, 2, 2, 125, 126, 7, 7, 2, 2, 126, 127, 5, 48, 25, 2, 127, 13, 3, 2, 2, 2, 128, 129, 7, 8, 2, 2, 129, 130, 7, 9, 2, 2, 130, 135, 5, 16, 9, 2, 131, 132, 7, 10, 2, 2, 132, 134, 5, 16, 9, 2, 133, 131, 3, 2, 2, 2, 134, 137, 3, 2, 2, 2, 135, 133, 3, 2, 2, 2, 135, 136, 3, 2, 2, 2, 136, 15, 3, 2, 2, 2, 137, 135, 3, 2, 2, 2, 138, 140, 7, 64, 2, 2, 139, 141, 5, 20, 11, 2, 140, 139, 3, 2, 2, 2, 140, 141, 3, 2, 2, 2, 141, 143, 3, 2, 2, 2, 142, 144, 5, 18, 10, 2, 143, 142, 3, 2, 2, 2, 143, 144, 3, 2, 2, 2, 144, 17, 3, 2, 2, 2, 145, 146, 7, 11, 2, 2, 146, 150, 7, 12, 2, 2, 147, 148, 7, 11, 2, 2, 148, 150, 7, 13, 2, 2, 149, 145, 3, 2, 2, 2, 149, 147, 3, 2, 2, 2, 150, 19, 3, 2, 2, 2, 151, 152, 9, 2, 2, 2, 152, 21, 3, 2, 2, 2, 153, 154, 7, 16, 2, 2, 154, 156, 7, 68, 2, 2, 155, 157, 5, 24, 13, 2, 156, 155, 3, 2, 2, 2, 156, 157, 3, 2, 2, 2, 157, 23, 3, 2, 2, 2, 158, 159, 7, 17, 2, 2, 159, 160, 7, 68, 2, 2, 160, 25, 3, 2, 2, 2, 161, 163, 7, 18, 2, 2, 162, 164, 5, 40, 21, 2, 163, 162, 3, 2, 2, 2, 163, 164, 3, 2, 2, 2, 164, 165, 3, 2, 2, 2, 165, 167, 5, 32, 17, 2, 166, 168, 5, 28, 15, 2, 167, 166, 3, 2, 2, 2, 167, 168, 3, 2, 2, 2, 168, 27, 3, 2, 2, 2, 169, 170, 7, 3, 2, 2, 170, 171, 5, 30, 16, 2, 171, 172, 7, 4, 2, 2, 172, 29, 3, 2, 2, 2, 173, 178, 5, 34, 18, 2, 174, 175, 7, 10, 2, 2, 175, 177, 5, 34, 18, 2, 176, 174, 3, 2, 2, 2, 177, 180, 3, 2, 2, 2, 178, 176, 3, 2, 2, 2, 178, 179, 3, 2, 2, 2, 179, 31, 3, 2, 2, 2, 180, 178, 3, 2, 2, 2, 181, 182, 9, 3, 2, 2, 182, 33, 3, 2, 2, 2, 183, 188, 7, 64, 2, 2, 184, 188, 5, 36, 19, 2, 185, 188, 5, 38, 20, 2, 186, 188, 7, 66, 2, 2, 187, 183, 3, 2, 2, 2, 187, 184, 3, 2, 2, 2, 187, 185, 3, 2, 2, 2, 187, 186, 3, 2, 2, 2, 188, 35, 3, 2, 2, 2, 189, 190, 7, 19, 2, 2, 190, 191, 5, 42, 22, 2, 191, 37, 3, 2, 2, 2, 192, 193, 7, 19, 2, 2, 193, 194, 5, 44, 23, 2, 194, 39, 3, 2, 2, 2, 195, 198, 5, 42, 22, 2, 196, 198, 5, 44, 23, 2, 197, 195, 3, 2, 2, 2, 197, 196, 3, 2, 2, 2, 198, 41, 3, 2, 2, 2, 199, 201, 7, 20, 2, 2, 200, 202, 5, 46, 24, 2, 201, 200, 3, 2, 2, 2, 201, 202, 3, 2, 2, 2, 202, 43, 3, 2, 2, 2, 203, 205, 7, 21, 2, 2, 204, 206, 5, 46, 24, 2, 205, 204, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 45, 3, 2, 2, 2, 207, 208, 7, 3, 2, 2, 208, 209, 7, 68, 2, 2, 209, 210, 7, 4, 2, 2, 210, 47, 3, 2, 2, 2, 211, 216, 5, 50, 26, 2, 212, 213, 7, 22, 2, 2, 213, 215, 5, 50, 26, 2, 214, 212, 3, 2, 2, 2, 215, 218, 3, 2, 2, 2, 216, 214, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 49, 3, 2, 2, 2, 218, 216, 3, 2, 2, 2, 219, 224, 5, 52, 27, 2, 220, 221, 7, 23, 2, 2, 221, 223, 5, 52, 27, 2, 222, 220, 3, 2, 2, 2, 223, 226, 3, 2, 2, 2, 224, 222, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 51, 3, 2, 2, 2, 226, 224, 3, 2, 2, 2, 227, 229, 7, 24, 2, 2, 228, 227, 3, 2, 2, 2, 228, 229, 3, 2, 2, 2, 229, 230, 3, 2, 2, 2, 230, 231, 5, 54, 28, 2, 231, 53, 3, 2, 2, 2, 232, 238, 5, 56, 29, 2, 233, 234, 7, 3, 2, 2, 234, 235, 5, 48, 25, 2, 235, 236, 7, 4, 2, 2, 236, 238, 3, 2, 2, 2, 237, 232, 3, 2, 2, 2, 237, 233, 3, 2, 2, 2, 238, 55, 3, 2, 2, 2, 239, 254, 5, 80, 41, 2, 240, 254, 5, 76, 39, 2, 241, 254, 5, 64, 33, 2, 242, 254, 5, 62, 32, 2, 243, 254, 5, 66, 34, 2, 244, 254, 5, 58, 30, 2, 245, 254, 5, 68, 35, 2, 246, 254, 5, 70, 36, 2, 247, 254, 5, 72, 37, 2, 248, 254, 5, 74, 38, 2, 249, 250, 7, 3, 2, 2, 250, 251, 5, 56, 29, 2, 251, 252, 7, 4, 2, 2, 252, 254, 3, 2, 2, 2, 253, 239, 3, 2, 2, 2, 253, 240, 3, 2, 2, 2, 253, 241, 3, 2, 2, 2, 253, 242, 3, 2, 2, 2, 253, 243, 3, 2, 2, 2, 253, 244, 3, 2, 2, 2, 253, 245, 3, 2, 2, 2, 253, 246, 3, 2, 2, 2, 253, 247, 3, 2, 2, 2, 253, 248, 3, 2, 2, 2, 253, 249, 3, 2, 2, 2, 254, 57, 3, 2, 2, 2, 255, 256, 7, 64, 2, 2, 256, 257, 7, 25, 2, 2, 257, 258, 5, 60, 31, 2, 258, 59, 3, 2, 2, 2, 259, 272, 7, 63, 2, 2, 260, 261, 7, 3, 2, 2, 261, 266, 5, 84, 43, 2, 262, 263, 7, 10, 2, 2, 263, 265, 5, 84, 43, 2, 264, 262, 3, 2, 2, 2, 265, 268, 3, 2, 2, 2, 266, 264, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 269, 3, 2, 2, 2, 268, 266, 3, 2, 2, 2, 269, 270, 7, 4, 2, 2, 270, 272, 3, 2, 2, 2, 271, 259, 3, 2, 2, 2, 271, 260, 3, 2, 2, 2, 272, 61, 3, 2, 2, 2, 273, 274, 7, 64, 2, 2, 274, 275, 7, 26, 2, 2, 275, 276, 5, 84, 43, 2, 276, 277, 7, 23, 2, 2, 277, 278, 5, 84, 43, 2, 278, 63, 3, 2, 2, 2, 279, 280, 7, 64, 2, 2, 280, 281, 7, 27, 2, 2, 281, 282, 5, 84, 43, 2, 282, 283, 7, 28, 2, 2, 283, 284, 5, 84, 43, 2, 284, 65, 3, 2, 2, 2, 285, 286, 5, 84, 43, 2, 286, 287, 7, 26, 2, 2, 287, 288, 7, 64, 2, 2, 288, 289, 7, 23, 2, 2, 289, 290, 7, 64, 2, 2, 290, 67, 3, 2, 2, 2, 291, 292, 7, 64, 2, 2, 292, 293, 7, 29, 2, 2, 293, 297, 7, 30, 2, 2, 294, 295, 7, 64, 2, 2, 295, 297, 7, 31, 2, 2, 296, 291, 3, 2, 2, 2, 296, 294, 3, 2, 2, 2, 297, 69, 3, 2, 2, 2, 298, 299, 7, 64, 2, 2, 299, 300, 7, 29, 2, 2, 300, 301, 7, 24, 2, 2, 301, 307, 7, 30, 2, 2, 302, 303, 7, 64, 2, 2, 303, 307, 7, 32, 2, 2, 304, 305, 7, 64, 2, 2, 305, 307, 7, 33, 2, 2, 306, 298, 3, 2, 2, 2, 306, 302, 3, 2, 2, 2, 306, 304, 3, 2, 2, 2, 307, 71, 3, 2, 2, 2, 308, 309, 7, 64, 2, 2, 309, 310, 7, 29, 2, 2, 310, 314, 7, 34, 2, 2, 311, 312, 7, 64, 2, 2, 312, 314, 7, 35, 2, 2, 313, 308, 3, 2, 2, 2, 313, 311, 3, 2, 2, 2, 314, 73, 3, 2, 2, 2, 315, 316, 7, 64, 2, 2, 316, 317, 7, 29, 2, 2, 317, 318, 7, 24, 2, 2, 318, 324, 7, 34, 2, 2, 319, 320, 7, 64, 2, 2, 320, 324, 7, 36, 2, 2, 321, 322, 7, 64, 2, 2, 322, 324, 7, 37, 2, 2, 323, 315, 3, 2, 2, 2, 323, 319, 3, 2, 2, 2, 323, 321, 3, 2, 2, 2, 324, 75, 3, 2, 2, 2, 325, 326, 7, 64, 2, 2, 326, 327, 5, 78, 40, 2, 327, 328, 5, 84, 43, 2, 328, 77, 3, 2, 2, 2, 329, 330, 9, 4, 2, 2, 330, 79, 3, 2, 2, 2, 331, 332, 7, 64, 2, 2, 332, 333, 5, 82, 42, 2, 333, 334, 5, 84, 43, 2, 334, 340, 3, 2, 2, 2, 335, 336, 5, 84, 43, 2, 336, 337, 5, 82, 42, 2, 337, 338, 7, 64, 2, 2, 338, 340, 3, 2, 2, 2, 339, 331, 3, 2, 2, 2, 339, 335, 3, 2, 2, 2, 340, 81, 3, 2, 2, 2, 341, 342, 9, 5, 2, 2, 342, 83, 3, 2, 2, 2, 343, 346, 5, 86, 44, 2, 344, 346, 7, 63, 2, 2, 345, 343, 3, 2, 2, 2, 345, 344, 3, 2, 2, 2, 346, 85, 3, 2, 2, 2, 347, 348, 9, 6, 2, 2, 348, 87, 3, 2, 2, 2, 34, 89, 94, 98, 101, 104, 113, 117, 135, 140, 143, 149, 156, 163, 167, 178, 187, 197, 201, 205, 216, 224, 228, 237, 253, 266, 271, 296, 306, 313, 323, 339, 345] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 77, 357, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 3, 2, 5, 2, 92, 10, 2, 3, 2, 7, 2, 95, 10, 2, 12, 2, 14, 2, 98, 11, 2, 3, 2, 5, 2, 101, 10, 2, 3, 2, 5, 2, 104, 10, 2, 3, 2, 5, 2, 107, 10, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 116, 10, 3, 3, 4, 3, 4, 5, 4, 120, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 7, 8, 136, 10, 8, 12, 8, 14, 8, 139, 11, 8, 3, 9, 3, 9, 5, 9, 143, 10, 9, 3, 9, 5, 9, 146, 10, 9, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 152, 10, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 5, 12, 159, 10, 12, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 5, 14, 166, 10, 14, 3, 14, 3, 14, 5, 14, 170, 10, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 7, 16, 179, 10, 16, 12, 16, 14, 16, 182, 11, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 190, 10, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 200, 10, 21, 3, 22, 3, 22, 5, 22, 204, 10, 22, 3, 23, 3, 23, 5, 23, 208, 10, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 7, 25, 217, 10, 25, 12, 25, 14, 25, 220, 11, 25, 3, 26, 3, 26, 3, 26, 7, 26, 225, 10, 26, 12, 26, 14, 26, 228, 11, 26, 3, 27, 5, 27, 231, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 240, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 257, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 7, 32, 272, 10, 32, 12, 32, 14, 32, 275, 11, 32, 3, 32, 3, 32, 5, 32, 279, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 304, 10, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 314, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 321, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 5, 39, 331, 10, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 347, 10, 42, 3, 43, 3, 43, 3, 44, 3, 44, 5, 44, 353, 10, 44, 3, 45, 3, 45, 3, 45, 2, 2, 46, 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, 2, 7, 3, 2, 14, 15, 3, 2, 68, 69, 3, 2, 39, 46, 3, 2, 47, 66, 4, 2, 71, 72, 76, 76, 2, 358, 2, 91, 3, 2, 2, 2, 4, 115, 3, 2, 2, 2, 6, 117, 3, 2, 2, 2, 8, 123, 3, 2, 2, 2, 10, 125, 3, 2, 2, 2, 12, 127, 3, 2, 2, 2, 14, 130, 3, 2, 2, 2, 16, 140, 3, 2, 2, 2, 18, 151, 3, 2, 2, 2, 20, 153, 3, 2, 2, 2, 22, 155, 3, 2, 2, 2, 24, 160, 3, 2, 2, 2, 26, 163, 3, 2, 2, 2, 28, 171, 3, 2, 2, 2, 30, 175, 3, 2, 2, 2, 32, 183, 3, 2, 2, 2, 34, 189, 3, 2, 2, 2, 36, 191, 3, 2, 2, 2, 38, 194, 3, 2, 2, 2, 40, 199, 3, 2, 2, 2, 42, 201, 3, 2, 2, 2, 44, 205, 3, 2, 2, 2, 46, 209, 3, 2, 2, 2, 48, 213, 3, 2, 2, 2, 50, 221, 3, 2, 2, 2, 52, 230, 3, 2, 2, 2, 54, 239, 3, 2, 2, 2, 56, 256, 3, 2, 2, 2, 58, 258, 3, 2, 2, 2, 60, 262, 3, 2, 2, 2, 62, 278, 3, 2, 2, 2, 64, 280, 3, 2, 2, 2, 66, 286, 3, 2, 2, 2, 68, 292, 3, 2, 2, 2, 70, 303, 3, 2, 2, 2, 72, 313, 3, 2, 2, 2, 74, 320, 3, 2, 2, 2, 76, 330, 3, 2, 2, 2, 78, 332, 3, 2, 2, 2, 80, 336, 3, 2, 2, 2, 82, 346, 3, 2, 2, 2, 84, 348, 3, 2, 2, 2, 86, 352, 3, 2, 2, 2, 88, 354, 3, 2, 2, 2, 90, 92, 5, 6, 4, 2, 91, 90, 3, 2, 2, 2, 91, 92, 3, 2, 2, 2, 92, 96, 3, 2, 2, 2, 93, 95, 5, 10, 6, 2, 94, 93, 3, 2, 2, 2, 95, 98, 3, 2, 2, 2, 96, 94, 3, 2, 2, 2, 96, 97, 3, 2, 2, 2, 97, 100, 3, 2, 2, 2, 98, 96, 3, 2, 2, 2, 99, 101, 5, 12, 7, 2, 100, 99, 3, 2, 2, 2, 100, 101, 3, 2, 2, 2, 101, 103, 3, 2, 2, 2, 102, 104, 5, 14, 8, 2, 103, 102, 3, 2, 2, 2, 103, 104, 3, 2, 2, 2, 104, 106, 3, 2, 2, 2, 105, 107, 5, 22, 12, 2, 106, 105, 3, 2, 2, 2, 106, 107, 3, 2, 2, 2, 107, 108, 3, 2, 2, 2, 108, 109, 7, 2, 2, 3, 109, 3, 3, 2, 2, 2, 110, 111, 7, 3, 2, 2, 111, 112, 5, 30, 16, 2, 112, 113, 7, 4, 2, 2, 113, 116, 3, 2, 2, 2, 114, 116, 5, 30, 16, 2, 115, 110, 3, 2, 2, 2, 115, 114, 3, 2, 2, 2, 116, 5, 3, 2, 2, 2, 117, 119, 7, 5, 2, 2, 118, 120, 5, 8, 5, 2, 119, 118, 3, 2, 2, 2, 119, 120, 3, 2, 2, 2, 120, 121, 3, 2, 2, 2, 121, 122, 5, 4, 3, 2, 122, 7, 3, 2, 2, 2, 123, 124, 7, 6, 2, 2, 124, 9, 3, 2, 2, 2, 125, 126, 5, 26, 14, 2, 126, 11, 3, 2, 2, 2, 127, 128, 7, 7, 2, 2, 128, 129, 5, 48, 25, 2, 129, 13, 3, 2, 2, 2, 130, 131, 7, 8, 2, 2, 131, 132, 7, 9, 2, 2, 132, 137, 5, 16, 9, 2, 133, 134, 7, 10, 2, 2, 134, 136, 5, 16, 9, 2, 135, 133, 3, 2, 2, 2, 136, 139, 3, 2, 2, 2, 137, 135, 3, 2, 2, 2, 137, 138, 3, 2, 2, 2, 138, 15, 3, 2, 2, 2, 139, 137, 3, 2, 2, 2, 140, 142, 7, 68, 2, 2, 141, 143, 5, 20, 11, 2, 142, 141, 3, 2, 2, 2, 142, 143, 3, 2, 2, 2, 143, 145, 3, 2, 2, 2, 144, 146, 5, 18, 10, 2, 145, 144, 3, 2, 2, 2, 145, 146, 3, 2, 2, 2, 146, 17, 3, 2, 2, 2, 147, 148, 7, 11, 2, 2, 148, 152, 7, 12, 2, 2, 149, 150, 7, 11, 2, 2, 150, 152, 7, 13, 2, 2, 151, 147, 3, 2, 2, 2, 151, 149, 3, 2, 2, 2, 152, 19, 3, 2, 2, 2, 153, 154, 9, 2, 2, 2, 154, 21, 3, 2, 2, 2, 155, 156, 7, 16, 2, 2, 156, 158, 7, 72, 2, 2, 157, 159, 5, 24, 13, 2, 158, 157, 3, 2, 2, 2, 158, 159, 3, 2, 2, 2, 159, 23, 3, 2, 2, 2, 160, 161, 7, 17, 2, 2, 161, 162, 7, 72, 2, 2, 162, 25, 3, 2, 2, 2, 163, 165, 7, 18, 2, 2, 164, 166, 5, 40, 21, 2, 165, 164, 3, 2, 2, 2, 165, 166, 3, 2, 2, 2, 166, 167, 3, 2, 2, 2, 167, 169, 5, 32, 17, 2, 168, 170, 5, 28, 15, 2, 169, 168, 3, 2, 2, 2, 169, 170, 3, 2, 2, 2, 170, 27, 3, 2, 2, 2, 171, 172, 7, 3, 2, 2, 172, 173, 5, 30, 16, 2, 173, 174, 7, 4, 2, 2, 174, 29, 3, 2, 2, 2, 175, 180, 5, 34, 18, 2, 176, 177, 7, 10, 2, 2, 177, 179, 5, 34, 18, 2, 178, 176, 3, 2, 2, 2, 179, 182, 3, 2, 2, 2, 180, 178, 3, 2, 2, 2, 180, 181, 3, 2, 2, 2, 181, 31, 3, 2, 2, 2, 182, 180, 3, 2, 2, 2, 183, 184, 9, 3, 2, 2, 184, 33, 3, 2, 2, 2, 185, 190, 7, 68, 2, 2, 186, 190, 5, 36, 19, 2, 187, 190, 5, 38, 20, 2, 188, 190, 7, 70, 2, 2, 189, 185, 3, 2, 2, 2, 189, 186, 3, 2, 2, 2, 189, 187, 3, 2, 2, 2, 189, 188, 3, 2, 2, 2, 190, 35, 3, 2, 2, 2, 191, 192, 7, 19, 2, 2, 192, 193, 5, 42, 22, 2, 193, 37, 3, 2, 2, 2, 194, 195, 7, 19, 2, 2, 195, 196, 5, 44, 23, 2, 196, 39, 3, 2, 2, 2, 197, 200, 5, 42, 22, 2, 198, 200, 5, 44, 23, 2, 199, 197, 3, 2, 2, 2, 199, 198, 3, 2, 2, 2, 200, 41, 3, 2, 2, 2, 201, 203, 7, 20, 2, 2, 202, 204, 5, 46, 24, 2, 203, 202, 3, 2, 2, 2, 203, 204, 3, 2, 2, 2, 204, 43, 3, 2, 2, 2, 205, 207, 7, 21, 2, 2, 206, 208, 5, 46, 24, 2, 207, 206, 3, 2, 2, 2, 207, 208, 3, 2, 2, 2, 208, 45, 3, 2, 2, 2, 209, 210, 7, 3, 2, 2, 210, 211, 7, 72, 2, 2, 211, 212, 7, 4, 2, 2, 212, 47, 3, 2, 2, 2, 213, 218, 5, 50, 26, 2, 214, 215, 7, 22, 2, 2, 215, 217, 5, 50, 26, 2, 216, 214, 3, 2, 2, 2, 217, 220, 3, 2, 2, 2, 218, 216, 3, 2, 2, 2, 218, 219, 3, 2, 2, 2, 219, 49, 3, 2, 2, 2, 220, 218, 3, 2, 2, 2, 221, 226, 5, 52, 27, 2, 222, 223, 7, 23, 2, 2, 223, 225, 5, 52, 27, 2, 224, 222, 3, 2, 2, 2, 225, 228, 3, 2, 2, 2, 226, 224, 3, 2, 2, 2, 226, 227, 3, 2, 2, 2, 227, 51, 3, 2, 2, 2, 228, 226, 3, 2, 2, 2, 229, 231, 7, 24, 2, 2, 230, 229, 3, 2, 2, 2, 230, 231, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 233, 5, 54, 28, 2, 233, 53, 3, 2, 2, 2, 234, 240, 5, 56, 29, 2, 235, 236, 7, 3, 2, 2, 236, 237, 5, 48, 25, 2, 237, 238, 7, 4, 2, 2, 238, 240, 3, 2, 2, 2, 239, 234, 3, 2, 2, 2, 239, 235, 3, 2, 2, 2, 240, 55, 3, 2, 2, 2, 241, 257, 5, 82, 42, 2, 242, 257, 5, 78, 40, 2, 243, 257, 5, 66, 34, 2, 244, 257, 5, 64, 33, 2, 245, 257, 5, 68, 35, 2, 246, 257, 5, 58, 30, 2, 247, 257, 5, 60, 31, 2, 248, 257, 5, 70, 36, 2, 249, 257, 5, 72, 37, 2, 250, 257, 5, 74, 38, 2, 251, 257, 5, 76, 39, 2, 252, 253, 7, 3, 2, 2, 253, 254, 5, 56, 29, 2, 254, 255, 7, 4, 2, 2, 255, 257, 3, 2, 2, 2, 256, 241, 3, 2, 2, 2, 256, 242, 3, 2, 2, 2, 256, 243, 3, 2, 2, 2, 256, 244, 3, 2, 2, 2, 256, 245, 3, 2, 2, 2, 256, 246, 3, 2, 2, 2, 256, 247, 3, 2, 2, 2, 256, 248, 3, 2, 2, 2, 256, 249, 3, 2, 2, 2, 256, 250, 3, 2, 2, 2, 256, 251, 3, 2, 2, 2, 256, 252, 3, 2, 2, 2, 257, 57, 3, 2, 2, 2, 258, 259, 7, 68, 2, 2, 259, 260, 7, 25, 2, 2, 260, 261, 5, 62, 32, 2, 261, 59, 3, 2, 2, 2, 262, 263, 7, 68, 2, 2, 263, 264, 7, 26, 2, 2, 264, 265, 5, 62, 32, 2, 265, 61, 3, 2, 2, 2, 266, 279, 7, 67, 2, 2, 267, 268, 7, 3, 2, 2, 268, 273, 5, 86, 44, 2, 269, 270, 7, 10, 2, 2, 270, 272, 5, 86, 44, 2, 271, 269, 3, 2, 2, 2, 272, 275, 3, 2, 2, 2, 273, 271, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 276, 3, 2, 2, 2, 275, 273, 3, 2, 2, 2, 276, 277, 7, 4, 2, 2, 277, 279, 3, 2, 2, 2, 278, 266, 3, 2, 2, 2, 278, 267, 3, 2, 2, 2, 279, 63, 3, 2, 2, 2, 280, 281, 7, 68, 2, 2, 281, 282, 7, 27, 2, 2, 282, 283, 5, 86, 44, 2, 283, 284, 7, 23, 2, 2, 284, 285, 5, 86, 44, 2, 285, 65, 3, 2, 2, 2, 286, 287, 7, 68, 2, 2, 287, 288, 7, 28, 2, 2, 288, 289, 5, 86, 44, 2, 289, 290, 7, 29, 2, 2, 290, 291, 5, 86, 44, 2, 291, 67, 3, 2, 2, 2, 292, 293, 5, 86, 44, 2, 293, 294, 7, 27, 2, 2, 294, 295, 7, 68, 2, 2, 295, 296, 7, 23, 2, 2, 296, 297, 7, 68, 2, 2, 297, 69, 3, 2, 2, 2, 298, 299, 7, 68, 2, 2, 299, 300, 7, 30, 2, 2, 300, 304, 7, 31, 2, 2, 301, 302, 7, 68, 2, 2, 302, 304, 7, 32, 2, 2, 303, 298, 3, 2, 2, 2, 303, 301, 3, 2, 2, 2, 304, 71, 3, 2, 2, 2, 305, 306, 7, 68, 2, 2, 306, 307, 7, 30, 2, 2, 307, 308, 7, 24, 2, 2, 308, 314, 7, 31, 2, 2, 309, 310, 7, 68, 2, 2, 310, 314, 7, 33, 2, 2, 311, 312, 7, 68, 2, 2, 312, 314, 7, 34, 2, 2, 313, 305, 3, 2, 2, 2, 313, 309, 3, 2, 2, 2, 313, 311, 3, 2, 2, 2, 314, 73, 3, 2, 2, 2, 315, 316, 7, 68, 2, 2, 316, 317, 7, 30, 2, 2, 317, 321, 7, 35, 2, 2, 318, 319, 7, 68, 2, 2, 319, 321, 7, 36, 2, 2, 320, 315, 3, 2, 2, 2, 320, 318, 3, 2, 2, 2, 321, 75, 3, 2, 2, 2, 322, 323, 7, 68, 2, 2, 323, 324, 7, 30, 2, 2, 324, 325, 7, 24, 2, 2, 325, 331, 7, 35, 2, 2, 326, 327, 7, 68, 2, 2, 327, 331, 7, 37, 2, 2, 328, 329, 7, 68, 2, 2, 329, 331, 7, 38, 2, 2, 330, 322, 3, 2, 2, 2, 330, 326, 3, 2, 2, 2, 330, 328, 3, 2, 2, 2, 331, 77, 3, 2, 2, 2, 332, 333, 7, 68, 2, 2, 333, 334, 5, 80, 41, 2, 334, 335, 5, 86, 44, 2, 335, 79, 3, 2, 2, 2, 336, 337, 9, 4, 2, 2, 337, 81, 3, 2, 2, 2, 338, 339, 7, 68, 2, 2, 339, 340, 5, 84, 43, 2, 340, 341, 5, 86, 44, 2, 341, 347, 3, 2, 2, 2, 342, 343, 5, 86, 44, 2, 343, 344, 5, 84, 43, 2, 344, 345, 7, 68, 2, 2, 345, 347, 3, 2, 2, 2, 346, 338, 3, 2, 2, 2, 346, 342, 3, 2, 2, 2, 347, 83, 3, 2, 2, 2, 348, 349, 9, 5, 2, 2, 349, 85, 3, 2, 2, 2, 350, 353, 5, 88, 45, 2, 351, 353, 7, 67, 2, 2, 352, 350, 3, 2, 2, 2, 352, 351, 3, 2, 2, 2, 353, 87, 3, 2, 2, 2, 354, 355, 9, 6, 2, 2, 355, 89, 3, 2, 2, 2, 34, 91, 96, 100, 103, 106, 115, 119, 137, 142, 145, 151, 158, 165, 169, 180, 189, 199, 203, 207, 218, 226, 230, 239, 256, 273, 278, 303, 313, 320, 330, 346, 352] \ No newline at end of file diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.tokens b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.tokens index d6d4462ab..8a595f026 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.tokens +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQL.tokens @@ -58,17 +58,21 @@ T__56=57 T__57=58 T__58=59 T__59=60 -INPUT_VARIABLE=61 -PATH_VARIABLE=62 -QUOTED_PATH_VARIABLE=63 -PROP_FORMULA=64 -BOOLEAN_LITERAL=65 -NUMBER_LITERAL=66 -DOUBLE=67 -INT=68 -ZERO=69 -STRING_LITERAL=70 -WS=71 +T__60=61 +T__61=62 +T__62=63 +T__63=64 +INPUT_VARIABLE=65 +PATH_VARIABLE=66 +QUOTED_PATH_VARIABLE=67 +PROP_FORMULA=68 +BOOLEAN_LITERAL=69 +NUMBER_LITERAL=70 +DOUBLE=71 +INT=72 +ZERO=73 +STRING_LITERAL=74 +WS=75 '('=1 ')'=2 'select'=3 @@ -91,42 +95,46 @@ WS=71 'or'=20 'and'=21 'not'=22 -'in'=23 -'between'=24 -'inrange'=25 -'to'=26 -'is'=27 -'null'=28 -'isNull'=29 -'isNotNull'=30 -'notNull'=31 -'empty'=32 -'isEmpty'=33 -'isNotEmpty'=34 -'notEmpty'=35 -'like'=36 -'ilike'=37 -'contains'=38 -'icontains'=39 -'startsWith'=40 -'istartsWith'=41 -'endsWith'=42 -'iendsWith'=43 -'='=44 -'eq'=45 -'>'=46 -'gt'=47 -'>='=48 -'ge'=49 -'gte'=50 -'<'=51 -'lt'=52 -'<='=53 -'le'=54 -'lte'=55 -'<>'=56 -'!='=57 -'ne'=58 -'ieq'=59 -'ine'=60 -'0'=69 +'inOrEmpty'=23 +'in'=24 +'between'=25 +'inrange'=26 +'to'=27 +'is'=28 +'null'=29 +'isNull'=30 +'isNotNull'=31 +'notNull'=32 +'empty'=33 +'isEmpty'=34 +'isNotEmpty'=35 +'notEmpty'=36 +'like'=37 +'ilike'=38 +'contains'=39 +'icontains'=40 +'startsWith'=41 +'istartsWith'=42 +'endsWith'=43 +'iendsWith'=44 +'='=45 +'eq'=46 +'>'=47 +'gt'=48 +'>='=49 +'ge'=50 +'gte'=51 +'<'=52 +'lt'=53 +'<='=54 +'le'=55 +'lte'=56 +'<>'=57 +'!='=58 +'ne'=59 +'ieq'=60 +'ine'=61 +'eqOrNull'=62 +'gtOrNull'=63 +'ltOrNull'=64 +'0'=73 diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLBaseListener.java b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLBaseListener.java index 53ac70d05..0d295160a 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLBaseListener.java +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLBaseListener.java @@ -347,6 +347,18 @@ public class EQLBaseListener implements EQLListener { *

The default implementation does nothing.

*/ @Override public void exitAny_expression(EQLParser.Any_expressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterInOrEmpty_expression(EQLParser.InOrEmpty_expressionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitInOrEmpty_expression(EQLParser.InOrEmpty_expressionContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.interp b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.interp index 32fc89a55..56b063fbf 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.interp +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.interp @@ -22,6 +22,7 @@ null 'or' 'and' 'not' +'inOrEmpty' 'in' 'between' 'inrange' @@ -60,6 +61,9 @@ null 'ne' 'ieq' 'ine' +'eqOrNull' +'gtOrNull' +'ltOrNull' null null null @@ -134,6 +138,10 @@ null null null null +null +null +null +null INPUT_VARIABLE PATH_VARIABLE QUOTED_PATH_VARIABLE @@ -207,6 +215,10 @@ T__56 T__57 T__58 T__59 +T__60 +T__61 +T__62 +T__63 INPUT_VARIABLE PATH_VARIABLE QUOTED_PATH_VARIABLE @@ -227,4 +239,4 @@ mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 73, 594, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 7, 62, 468, 10, 62, 12, 62, 14, 62, 471, 11, 62, 3, 62, 3, 62, 7, 62, 475, 10, 62, 12, 62, 14, 62, 478, 11, 62, 5, 62, 480, 10, 62, 3, 63, 3, 63, 7, 63, 484, 10, 63, 12, 63, 14, 63, 487, 11, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 5, 65, 535, 10, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 5, 66, 546, 10, 66, 3, 67, 5, 67, 549, 10, 67, 3, 67, 3, 67, 5, 67, 553, 10, 67, 3, 67, 3, 67, 5, 67, 557, 10, 67, 3, 68, 6, 68, 560, 10, 68, 13, 68, 14, 68, 561, 3, 68, 3, 68, 7, 68, 566, 10, 68, 12, 68, 14, 68, 569, 11, 68, 3, 69, 3, 69, 7, 69, 573, 10, 69, 12, 69, 14, 69, 576, 11, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 7, 71, 584, 10, 71, 12, 71, 14, 71, 587, 11, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 2, 2, 73, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 3, 2, 9, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 7, 2, 48, 48, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 3, 2, 51, 59, 3, 2, 41, 41, 5, 2, 11, 12, 15, 15, 34, 34, 2, 611, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 3, 145, 3, 2, 2, 2, 5, 147, 3, 2, 2, 2, 7, 149, 3, 2, 2, 2, 9, 156, 3, 2, 2, 2, 11, 165, 3, 2, 2, 2, 13, 171, 3, 2, 2, 2, 15, 177, 3, 2, 2, 2, 17, 180, 3, 2, 2, 2, 19, 182, 3, 2, 2, 2, 21, 188, 3, 2, 2, 2, 23, 194, 3, 2, 2, 2, 25, 199, 3, 2, 2, 2, 27, 203, 3, 2, 2, 2, 29, 208, 3, 2, 2, 2, 31, 214, 3, 2, 2, 2, 33, 221, 3, 2, 2, 2, 35, 227, 3, 2, 2, 2, 37, 229, 3, 2, 2, 2, 39, 235, 3, 2, 2, 2, 41, 240, 3, 2, 2, 2, 43, 243, 3, 2, 2, 2, 45, 247, 3, 2, 2, 2, 47, 251, 3, 2, 2, 2, 49, 254, 3, 2, 2, 2, 51, 262, 3, 2, 2, 2, 53, 270, 3, 2, 2, 2, 55, 273, 3, 2, 2, 2, 57, 276, 3, 2, 2, 2, 59, 281, 3, 2, 2, 2, 61, 288, 3, 2, 2, 2, 63, 298, 3, 2, 2, 2, 65, 306, 3, 2, 2, 2, 67, 312, 3, 2, 2, 2, 69, 320, 3, 2, 2, 2, 71, 331, 3, 2, 2, 2, 73, 340, 3, 2, 2, 2, 75, 345, 3, 2, 2, 2, 77, 351, 3, 2, 2, 2, 79, 360, 3, 2, 2, 2, 81, 370, 3, 2, 2, 2, 83, 381, 3, 2, 2, 2, 85, 393, 3, 2, 2, 2, 87, 402, 3, 2, 2, 2, 89, 412, 3, 2, 2, 2, 91, 414, 3, 2, 2, 2, 93, 417, 3, 2, 2, 2, 95, 419, 3, 2, 2, 2, 97, 422, 3, 2, 2, 2, 99, 425, 3, 2, 2, 2, 101, 428, 3, 2, 2, 2, 103, 432, 3, 2, 2, 2, 105, 434, 3, 2, 2, 2, 107, 437, 3, 2, 2, 2, 109, 440, 3, 2, 2, 2, 111, 443, 3, 2, 2, 2, 113, 447, 3, 2, 2, 2, 115, 450, 3, 2, 2, 2, 117, 453, 3, 2, 2, 2, 119, 456, 3, 2, 2, 2, 121, 460, 3, 2, 2, 2, 123, 479, 3, 2, 2, 2, 125, 481, 3, 2, 2, 2, 127, 488, 3, 2, 2, 2, 129, 534, 3, 2, 2, 2, 131, 545, 3, 2, 2, 2, 133, 556, 3, 2, 2, 2, 135, 559, 3, 2, 2, 2, 137, 570, 3, 2, 2, 2, 139, 577, 3, 2, 2, 2, 141, 579, 3, 2, 2, 2, 143, 590, 3, 2, 2, 2, 145, 146, 7, 42, 2, 2, 146, 4, 3, 2, 2, 2, 147, 148, 7, 43, 2, 2, 148, 6, 3, 2, 2, 2, 149, 150, 7, 117, 2, 2, 150, 151, 7, 103, 2, 2, 151, 152, 7, 110, 2, 2, 152, 153, 7, 103, 2, 2, 153, 154, 7, 101, 2, 2, 154, 155, 7, 118, 2, 2, 155, 8, 3, 2, 2, 2, 156, 157, 7, 102, 2, 2, 157, 158, 7, 107, 2, 2, 158, 159, 7, 117, 2, 2, 159, 160, 7, 118, 2, 2, 160, 161, 7, 107, 2, 2, 161, 162, 7, 112, 2, 2, 162, 163, 7, 101, 2, 2, 163, 164, 7, 118, 2, 2, 164, 10, 3, 2, 2, 2, 165, 166, 7, 121, 2, 2, 166, 167, 7, 106, 2, 2, 167, 168, 7, 103, 2, 2, 168, 169, 7, 116, 2, 2, 169, 170, 7, 103, 2, 2, 170, 12, 3, 2, 2, 2, 171, 172, 7, 113, 2, 2, 172, 173, 7, 116, 2, 2, 173, 174, 7, 102, 2, 2, 174, 175, 7, 103, 2, 2, 175, 176, 7, 116, 2, 2, 176, 14, 3, 2, 2, 2, 177, 178, 7, 100, 2, 2, 178, 179, 7, 123, 2, 2, 179, 16, 3, 2, 2, 2, 180, 181, 7, 46, 2, 2, 181, 18, 3, 2, 2, 2, 182, 183, 7, 112, 2, 2, 183, 184, 7, 119, 2, 2, 184, 185, 7, 110, 2, 2, 185, 186, 7, 110, 2, 2, 186, 187, 7, 117, 2, 2, 187, 20, 3, 2, 2, 2, 188, 189, 7, 104, 2, 2, 189, 190, 7, 107, 2, 2, 190, 191, 7, 116, 2, 2, 191, 192, 7, 117, 2, 2, 192, 193, 7, 118, 2, 2, 193, 22, 3, 2, 2, 2, 194, 195, 7, 110, 2, 2, 195, 196, 7, 99, 2, 2, 196, 197, 7, 117, 2, 2, 197, 198, 7, 118, 2, 2, 198, 24, 3, 2, 2, 2, 199, 200, 7, 99, 2, 2, 200, 201, 7, 117, 2, 2, 201, 202, 7, 101, 2, 2, 202, 26, 3, 2, 2, 2, 203, 204, 7, 102, 2, 2, 204, 205, 7, 103, 2, 2, 205, 206, 7, 117, 2, 2, 206, 207, 7, 101, 2, 2, 207, 28, 3, 2, 2, 2, 208, 209, 7, 110, 2, 2, 209, 210, 7, 107, 2, 2, 210, 211, 7, 111, 2, 2, 211, 212, 7, 107, 2, 2, 212, 213, 7, 118, 2, 2, 213, 30, 3, 2, 2, 2, 214, 215, 7, 113, 2, 2, 215, 216, 7, 104, 2, 2, 216, 217, 7, 104, 2, 2, 217, 218, 7, 117, 2, 2, 218, 219, 7, 103, 2, 2, 219, 220, 7, 118, 2, 2, 220, 32, 3, 2, 2, 2, 221, 222, 7, 104, 2, 2, 222, 223, 7, 103, 2, 2, 223, 224, 7, 118, 2, 2, 224, 225, 7, 101, 2, 2, 225, 226, 7, 106, 2, 2, 226, 34, 3, 2, 2, 2, 227, 228, 7, 45, 2, 2, 228, 36, 3, 2, 2, 2, 229, 230, 7, 115, 2, 2, 230, 231, 7, 119, 2, 2, 231, 232, 7, 103, 2, 2, 232, 233, 7, 116, 2, 2, 233, 234, 7, 123, 2, 2, 234, 38, 3, 2, 2, 2, 235, 236, 7, 110, 2, 2, 236, 237, 7, 99, 2, 2, 237, 238, 7, 124, 2, 2, 238, 239, 7, 123, 2, 2, 239, 40, 3, 2, 2, 2, 240, 241, 7, 113, 2, 2, 241, 242, 7, 116, 2, 2, 242, 42, 3, 2, 2, 2, 243, 244, 7, 99, 2, 2, 244, 245, 7, 112, 2, 2, 245, 246, 7, 102, 2, 2, 246, 44, 3, 2, 2, 2, 247, 248, 7, 112, 2, 2, 248, 249, 7, 113, 2, 2, 249, 250, 7, 118, 2, 2, 250, 46, 3, 2, 2, 2, 251, 252, 7, 107, 2, 2, 252, 253, 7, 112, 2, 2, 253, 48, 3, 2, 2, 2, 254, 255, 7, 100, 2, 2, 255, 256, 7, 103, 2, 2, 256, 257, 7, 118, 2, 2, 257, 258, 7, 121, 2, 2, 258, 259, 7, 103, 2, 2, 259, 260, 7, 103, 2, 2, 260, 261, 7, 112, 2, 2, 261, 50, 3, 2, 2, 2, 262, 263, 7, 107, 2, 2, 263, 264, 7, 112, 2, 2, 264, 265, 7, 116, 2, 2, 265, 266, 7, 99, 2, 2, 266, 267, 7, 112, 2, 2, 267, 268, 7, 105, 2, 2, 268, 269, 7, 103, 2, 2, 269, 52, 3, 2, 2, 2, 270, 271, 7, 118, 2, 2, 271, 272, 7, 113, 2, 2, 272, 54, 3, 2, 2, 2, 273, 274, 7, 107, 2, 2, 274, 275, 7, 117, 2, 2, 275, 56, 3, 2, 2, 2, 276, 277, 7, 112, 2, 2, 277, 278, 7, 119, 2, 2, 278, 279, 7, 110, 2, 2, 279, 280, 7, 110, 2, 2, 280, 58, 3, 2, 2, 2, 281, 282, 7, 107, 2, 2, 282, 283, 7, 117, 2, 2, 283, 284, 7, 80, 2, 2, 284, 285, 7, 119, 2, 2, 285, 286, 7, 110, 2, 2, 286, 287, 7, 110, 2, 2, 287, 60, 3, 2, 2, 2, 288, 289, 7, 107, 2, 2, 289, 290, 7, 117, 2, 2, 290, 291, 7, 80, 2, 2, 291, 292, 7, 113, 2, 2, 292, 293, 7, 118, 2, 2, 293, 294, 7, 80, 2, 2, 294, 295, 7, 119, 2, 2, 295, 296, 7, 110, 2, 2, 296, 297, 7, 110, 2, 2, 297, 62, 3, 2, 2, 2, 298, 299, 7, 112, 2, 2, 299, 300, 7, 113, 2, 2, 300, 301, 7, 118, 2, 2, 301, 302, 7, 80, 2, 2, 302, 303, 7, 119, 2, 2, 303, 304, 7, 110, 2, 2, 304, 305, 7, 110, 2, 2, 305, 64, 3, 2, 2, 2, 306, 307, 7, 103, 2, 2, 307, 308, 7, 111, 2, 2, 308, 309, 7, 114, 2, 2, 309, 310, 7, 118, 2, 2, 310, 311, 7, 123, 2, 2, 311, 66, 3, 2, 2, 2, 312, 313, 7, 107, 2, 2, 313, 314, 7, 117, 2, 2, 314, 315, 7, 71, 2, 2, 315, 316, 7, 111, 2, 2, 316, 317, 7, 114, 2, 2, 317, 318, 7, 118, 2, 2, 318, 319, 7, 123, 2, 2, 319, 68, 3, 2, 2, 2, 320, 321, 7, 107, 2, 2, 321, 322, 7, 117, 2, 2, 322, 323, 7, 80, 2, 2, 323, 324, 7, 113, 2, 2, 324, 325, 7, 118, 2, 2, 325, 326, 7, 71, 2, 2, 326, 327, 7, 111, 2, 2, 327, 328, 7, 114, 2, 2, 328, 329, 7, 118, 2, 2, 329, 330, 7, 123, 2, 2, 330, 70, 3, 2, 2, 2, 331, 332, 7, 112, 2, 2, 332, 333, 7, 113, 2, 2, 333, 334, 7, 118, 2, 2, 334, 335, 7, 71, 2, 2, 335, 336, 7, 111, 2, 2, 336, 337, 7, 114, 2, 2, 337, 338, 7, 118, 2, 2, 338, 339, 7, 123, 2, 2, 339, 72, 3, 2, 2, 2, 340, 341, 7, 110, 2, 2, 341, 342, 7, 107, 2, 2, 342, 343, 7, 109, 2, 2, 343, 344, 7, 103, 2, 2, 344, 74, 3, 2, 2, 2, 345, 346, 7, 107, 2, 2, 346, 347, 7, 110, 2, 2, 347, 348, 7, 107, 2, 2, 348, 349, 7, 109, 2, 2, 349, 350, 7, 103, 2, 2, 350, 76, 3, 2, 2, 2, 351, 352, 7, 101, 2, 2, 352, 353, 7, 113, 2, 2, 353, 354, 7, 112, 2, 2, 354, 355, 7, 118, 2, 2, 355, 356, 7, 99, 2, 2, 356, 357, 7, 107, 2, 2, 357, 358, 7, 112, 2, 2, 358, 359, 7, 117, 2, 2, 359, 78, 3, 2, 2, 2, 360, 361, 7, 107, 2, 2, 361, 362, 7, 101, 2, 2, 362, 363, 7, 113, 2, 2, 363, 364, 7, 112, 2, 2, 364, 365, 7, 118, 2, 2, 365, 366, 7, 99, 2, 2, 366, 367, 7, 107, 2, 2, 367, 368, 7, 112, 2, 2, 368, 369, 7, 117, 2, 2, 369, 80, 3, 2, 2, 2, 370, 371, 7, 117, 2, 2, 371, 372, 7, 118, 2, 2, 372, 373, 7, 99, 2, 2, 373, 374, 7, 116, 2, 2, 374, 375, 7, 118, 2, 2, 375, 376, 7, 117, 2, 2, 376, 377, 7, 89, 2, 2, 377, 378, 7, 107, 2, 2, 378, 379, 7, 118, 2, 2, 379, 380, 7, 106, 2, 2, 380, 82, 3, 2, 2, 2, 381, 382, 7, 107, 2, 2, 382, 383, 7, 117, 2, 2, 383, 384, 7, 118, 2, 2, 384, 385, 7, 99, 2, 2, 385, 386, 7, 116, 2, 2, 386, 387, 7, 118, 2, 2, 387, 388, 7, 117, 2, 2, 388, 389, 7, 89, 2, 2, 389, 390, 7, 107, 2, 2, 390, 391, 7, 118, 2, 2, 391, 392, 7, 106, 2, 2, 392, 84, 3, 2, 2, 2, 393, 394, 7, 103, 2, 2, 394, 395, 7, 112, 2, 2, 395, 396, 7, 102, 2, 2, 396, 397, 7, 117, 2, 2, 397, 398, 7, 89, 2, 2, 398, 399, 7, 107, 2, 2, 399, 400, 7, 118, 2, 2, 400, 401, 7, 106, 2, 2, 401, 86, 3, 2, 2, 2, 402, 403, 7, 107, 2, 2, 403, 404, 7, 103, 2, 2, 404, 405, 7, 112, 2, 2, 405, 406, 7, 102, 2, 2, 406, 407, 7, 117, 2, 2, 407, 408, 7, 89, 2, 2, 408, 409, 7, 107, 2, 2, 409, 410, 7, 118, 2, 2, 410, 411, 7, 106, 2, 2, 411, 88, 3, 2, 2, 2, 412, 413, 7, 63, 2, 2, 413, 90, 3, 2, 2, 2, 414, 415, 7, 103, 2, 2, 415, 416, 7, 115, 2, 2, 416, 92, 3, 2, 2, 2, 417, 418, 7, 64, 2, 2, 418, 94, 3, 2, 2, 2, 419, 420, 7, 105, 2, 2, 420, 421, 7, 118, 2, 2, 421, 96, 3, 2, 2, 2, 422, 423, 7, 64, 2, 2, 423, 424, 7, 63, 2, 2, 424, 98, 3, 2, 2, 2, 425, 426, 7, 105, 2, 2, 426, 427, 7, 103, 2, 2, 427, 100, 3, 2, 2, 2, 428, 429, 7, 105, 2, 2, 429, 430, 7, 118, 2, 2, 430, 431, 7, 103, 2, 2, 431, 102, 3, 2, 2, 2, 432, 433, 7, 62, 2, 2, 433, 104, 3, 2, 2, 2, 434, 435, 7, 110, 2, 2, 435, 436, 7, 118, 2, 2, 436, 106, 3, 2, 2, 2, 437, 438, 7, 62, 2, 2, 438, 439, 7, 63, 2, 2, 439, 108, 3, 2, 2, 2, 440, 441, 7, 110, 2, 2, 441, 442, 7, 103, 2, 2, 442, 110, 3, 2, 2, 2, 443, 444, 7, 110, 2, 2, 444, 445, 7, 118, 2, 2, 445, 446, 7, 103, 2, 2, 446, 112, 3, 2, 2, 2, 447, 448, 7, 62, 2, 2, 448, 449, 7, 64, 2, 2, 449, 114, 3, 2, 2, 2, 450, 451, 7, 35, 2, 2, 451, 452, 7, 63, 2, 2, 452, 116, 3, 2, 2, 2, 453, 454, 7, 112, 2, 2, 454, 455, 7, 103, 2, 2, 455, 118, 3, 2, 2, 2, 456, 457, 7, 107, 2, 2, 457, 458, 7, 103, 2, 2, 458, 459, 7, 115, 2, 2, 459, 120, 3, 2, 2, 2, 460, 461, 7, 107, 2, 2, 461, 462, 7, 112, 2, 2, 462, 463, 7, 103, 2, 2, 463, 122, 3, 2, 2, 2, 464, 465, 7, 60, 2, 2, 465, 469, 9, 2, 2, 2, 466, 468, 9, 3, 2, 2, 467, 466, 3, 2, 2, 2, 468, 471, 3, 2, 2, 2, 469, 467, 3, 2, 2, 2, 469, 470, 3, 2, 2, 2, 470, 480, 3, 2, 2, 2, 471, 469, 3, 2, 2, 2, 472, 476, 7, 65, 2, 2, 473, 475, 4, 50, 59, 2, 474, 473, 3, 2, 2, 2, 475, 478, 3, 2, 2, 2, 476, 474, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 480, 3, 2, 2, 2, 478, 476, 3, 2, 2, 2, 479, 464, 3, 2, 2, 2, 479, 472, 3, 2, 2, 2, 480, 124, 3, 2, 2, 2, 481, 485, 9, 2, 2, 2, 482, 484, 9, 4, 2, 2, 483, 482, 3, 2, 2, 2, 484, 487, 3, 2, 2, 2, 485, 483, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 126, 3, 2, 2, 2, 487, 485, 3, 2, 2, 2, 488, 489, 7, 98, 2, 2, 489, 490, 5, 125, 63, 2, 490, 491, 7, 98, 2, 2, 491, 128, 3, 2, 2, 2, 492, 493, 7, 117, 2, 2, 493, 494, 7, 119, 2, 2, 494, 495, 7, 111, 2, 2, 495, 496, 7, 42, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 5, 125, 63, 2, 498, 499, 7, 43, 2, 2, 499, 535, 3, 2, 2, 2, 500, 501, 7, 111, 2, 2, 501, 502, 7, 99, 2, 2, 502, 503, 7, 122, 2, 2, 503, 504, 7, 42, 2, 2, 504, 505, 3, 2, 2, 2, 505, 506, 5, 125, 63, 2, 506, 507, 7, 43, 2, 2, 507, 535, 3, 2, 2, 2, 508, 509, 7, 111, 2, 2, 509, 510, 7, 107, 2, 2, 510, 511, 7, 112, 2, 2, 511, 512, 7, 42, 2, 2, 512, 513, 3, 2, 2, 2, 513, 514, 5, 125, 63, 2, 514, 515, 7, 43, 2, 2, 515, 535, 3, 2, 2, 2, 516, 517, 7, 99, 2, 2, 517, 518, 7, 120, 2, 2, 518, 519, 7, 105, 2, 2, 519, 520, 7, 42, 2, 2, 520, 521, 3, 2, 2, 2, 521, 522, 5, 125, 63, 2, 522, 523, 7, 43, 2, 2, 523, 535, 3, 2, 2, 2, 524, 525, 7, 101, 2, 2, 525, 526, 7, 113, 2, 2, 526, 527, 7, 119, 2, 2, 527, 528, 7, 112, 2, 2, 528, 529, 7, 118, 2, 2, 529, 530, 7, 42, 2, 2, 530, 531, 3, 2, 2, 2, 531, 532, 5, 125, 63, 2, 532, 533, 7, 43, 2, 2, 533, 535, 3, 2, 2, 2, 534, 492, 3, 2, 2, 2, 534, 500, 3, 2, 2, 2, 534, 508, 3, 2, 2, 2, 534, 516, 3, 2, 2, 2, 534, 524, 3, 2, 2, 2, 535, 130, 3, 2, 2, 2, 536, 537, 7, 118, 2, 2, 537, 538, 7, 116, 2, 2, 538, 539, 7, 119, 2, 2, 539, 546, 7, 103, 2, 2, 540, 541, 7, 104, 2, 2, 541, 542, 7, 99, 2, 2, 542, 543, 7, 110, 2, 2, 543, 544, 7, 117, 2, 2, 544, 546, 7, 103, 2, 2, 545, 536, 3, 2, 2, 2, 545, 540, 3, 2, 2, 2, 546, 132, 3, 2, 2, 2, 547, 549, 7, 47, 2, 2, 548, 547, 3, 2, 2, 2, 548, 549, 3, 2, 2, 2, 549, 550, 3, 2, 2, 2, 550, 557, 5, 135, 68, 2, 551, 553, 7, 47, 2, 2, 552, 551, 3, 2, 2, 2, 552, 553, 3, 2, 2, 2, 553, 554, 3, 2, 2, 2, 554, 557, 5, 137, 69, 2, 555, 557, 5, 139, 70, 2, 556, 548, 3, 2, 2, 2, 556, 552, 3, 2, 2, 2, 556, 555, 3, 2, 2, 2, 557, 134, 3, 2, 2, 2, 558, 560, 9, 5, 2, 2, 559, 558, 3, 2, 2, 2, 560, 561, 3, 2, 2, 2, 561, 559, 3, 2, 2, 2, 561, 562, 3, 2, 2, 2, 562, 563, 3, 2, 2, 2, 563, 567, 7, 48, 2, 2, 564, 566, 9, 5, 2, 2, 565, 564, 3, 2, 2, 2, 566, 569, 3, 2, 2, 2, 567, 565, 3, 2, 2, 2, 567, 568, 3, 2, 2, 2, 568, 136, 3, 2, 2, 2, 569, 567, 3, 2, 2, 2, 570, 574, 9, 6, 2, 2, 571, 573, 9, 5, 2, 2, 572, 571, 3, 2, 2, 2, 573, 576, 3, 2, 2, 2, 574, 572, 3, 2, 2, 2, 574, 575, 3, 2, 2, 2, 575, 138, 3, 2, 2, 2, 576, 574, 3, 2, 2, 2, 577, 578, 7, 50, 2, 2, 578, 140, 3, 2, 2, 2, 579, 585, 7, 41, 2, 2, 580, 584, 10, 7, 2, 2, 581, 582, 7, 41, 2, 2, 582, 584, 7, 41, 2, 2, 583, 580, 3, 2, 2, 2, 583, 581, 3, 2, 2, 2, 584, 587, 3, 2, 2, 2, 585, 583, 3, 2, 2, 2, 585, 586, 3, 2, 2, 2, 586, 588, 3, 2, 2, 2, 587, 585, 3, 2, 2, 2, 588, 589, 7, 41, 2, 2, 589, 142, 3, 2, 2, 2, 590, 591, 9, 8, 2, 2, 591, 592, 3, 2, 2, 2, 592, 593, 8, 72, 2, 2, 593, 144, 3, 2, 2, 2, 17, 2, 469, 476, 479, 485, 534, 545, 548, 552, 556, 561, 567, 574, 583, 585, 3, 8, 2, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 77, 639, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 7, 66, 513, 10, 66, 12, 66, 14, 66, 516, 11, 66, 3, 66, 3, 66, 7, 66, 520, 10, 66, 12, 66, 14, 66, 523, 11, 66, 5, 66, 525, 10, 66, 3, 67, 3, 67, 7, 67, 529, 10, 67, 12, 67, 14, 67, 532, 11, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 5, 69, 580, 10, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 591, 10, 70, 3, 71, 5, 71, 594, 10, 71, 3, 71, 3, 71, 5, 71, 598, 10, 71, 3, 71, 3, 71, 5, 71, 602, 10, 71, 3, 72, 6, 72, 605, 10, 72, 13, 72, 14, 72, 606, 3, 72, 3, 72, 7, 72, 611, 10, 72, 12, 72, 14, 72, 614, 11, 72, 3, 73, 3, 73, 7, 73, 618, 10, 73, 12, 73, 14, 73, 621, 11, 73, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 7, 75, 629, 10, 75, 12, 75, 14, 75, 632, 11, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 2, 2, 77, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 3, 2, 9, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 7, 2, 48, 48, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 3, 2, 51, 59, 3, 2, 41, 41, 5, 2, 11, 12, 15, 15, 34, 34, 2, 656, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 3, 153, 3, 2, 2, 2, 5, 155, 3, 2, 2, 2, 7, 157, 3, 2, 2, 2, 9, 164, 3, 2, 2, 2, 11, 173, 3, 2, 2, 2, 13, 179, 3, 2, 2, 2, 15, 185, 3, 2, 2, 2, 17, 188, 3, 2, 2, 2, 19, 190, 3, 2, 2, 2, 21, 196, 3, 2, 2, 2, 23, 202, 3, 2, 2, 2, 25, 207, 3, 2, 2, 2, 27, 211, 3, 2, 2, 2, 29, 216, 3, 2, 2, 2, 31, 222, 3, 2, 2, 2, 33, 229, 3, 2, 2, 2, 35, 235, 3, 2, 2, 2, 37, 237, 3, 2, 2, 2, 39, 243, 3, 2, 2, 2, 41, 248, 3, 2, 2, 2, 43, 251, 3, 2, 2, 2, 45, 255, 3, 2, 2, 2, 47, 259, 3, 2, 2, 2, 49, 269, 3, 2, 2, 2, 51, 272, 3, 2, 2, 2, 53, 280, 3, 2, 2, 2, 55, 288, 3, 2, 2, 2, 57, 291, 3, 2, 2, 2, 59, 294, 3, 2, 2, 2, 61, 299, 3, 2, 2, 2, 63, 306, 3, 2, 2, 2, 65, 316, 3, 2, 2, 2, 67, 324, 3, 2, 2, 2, 69, 330, 3, 2, 2, 2, 71, 338, 3, 2, 2, 2, 73, 349, 3, 2, 2, 2, 75, 358, 3, 2, 2, 2, 77, 363, 3, 2, 2, 2, 79, 369, 3, 2, 2, 2, 81, 378, 3, 2, 2, 2, 83, 388, 3, 2, 2, 2, 85, 399, 3, 2, 2, 2, 87, 411, 3, 2, 2, 2, 89, 420, 3, 2, 2, 2, 91, 430, 3, 2, 2, 2, 93, 432, 3, 2, 2, 2, 95, 435, 3, 2, 2, 2, 97, 437, 3, 2, 2, 2, 99, 440, 3, 2, 2, 2, 101, 443, 3, 2, 2, 2, 103, 446, 3, 2, 2, 2, 105, 450, 3, 2, 2, 2, 107, 452, 3, 2, 2, 2, 109, 455, 3, 2, 2, 2, 111, 458, 3, 2, 2, 2, 113, 461, 3, 2, 2, 2, 115, 465, 3, 2, 2, 2, 117, 468, 3, 2, 2, 2, 119, 471, 3, 2, 2, 2, 121, 474, 3, 2, 2, 2, 123, 478, 3, 2, 2, 2, 125, 482, 3, 2, 2, 2, 127, 491, 3, 2, 2, 2, 129, 500, 3, 2, 2, 2, 131, 524, 3, 2, 2, 2, 133, 526, 3, 2, 2, 2, 135, 533, 3, 2, 2, 2, 137, 579, 3, 2, 2, 2, 139, 590, 3, 2, 2, 2, 141, 601, 3, 2, 2, 2, 143, 604, 3, 2, 2, 2, 145, 615, 3, 2, 2, 2, 147, 622, 3, 2, 2, 2, 149, 624, 3, 2, 2, 2, 151, 635, 3, 2, 2, 2, 153, 154, 7, 42, 2, 2, 154, 4, 3, 2, 2, 2, 155, 156, 7, 43, 2, 2, 156, 6, 3, 2, 2, 2, 157, 158, 7, 117, 2, 2, 158, 159, 7, 103, 2, 2, 159, 160, 7, 110, 2, 2, 160, 161, 7, 103, 2, 2, 161, 162, 7, 101, 2, 2, 162, 163, 7, 118, 2, 2, 163, 8, 3, 2, 2, 2, 164, 165, 7, 102, 2, 2, 165, 166, 7, 107, 2, 2, 166, 167, 7, 117, 2, 2, 167, 168, 7, 118, 2, 2, 168, 169, 7, 107, 2, 2, 169, 170, 7, 112, 2, 2, 170, 171, 7, 101, 2, 2, 171, 172, 7, 118, 2, 2, 172, 10, 3, 2, 2, 2, 173, 174, 7, 121, 2, 2, 174, 175, 7, 106, 2, 2, 175, 176, 7, 103, 2, 2, 176, 177, 7, 116, 2, 2, 177, 178, 7, 103, 2, 2, 178, 12, 3, 2, 2, 2, 179, 180, 7, 113, 2, 2, 180, 181, 7, 116, 2, 2, 181, 182, 7, 102, 2, 2, 182, 183, 7, 103, 2, 2, 183, 184, 7, 116, 2, 2, 184, 14, 3, 2, 2, 2, 185, 186, 7, 100, 2, 2, 186, 187, 7, 123, 2, 2, 187, 16, 3, 2, 2, 2, 188, 189, 7, 46, 2, 2, 189, 18, 3, 2, 2, 2, 190, 191, 7, 112, 2, 2, 191, 192, 7, 119, 2, 2, 192, 193, 7, 110, 2, 2, 193, 194, 7, 110, 2, 2, 194, 195, 7, 117, 2, 2, 195, 20, 3, 2, 2, 2, 196, 197, 7, 104, 2, 2, 197, 198, 7, 107, 2, 2, 198, 199, 7, 116, 2, 2, 199, 200, 7, 117, 2, 2, 200, 201, 7, 118, 2, 2, 201, 22, 3, 2, 2, 2, 202, 203, 7, 110, 2, 2, 203, 204, 7, 99, 2, 2, 204, 205, 7, 117, 2, 2, 205, 206, 7, 118, 2, 2, 206, 24, 3, 2, 2, 2, 207, 208, 7, 99, 2, 2, 208, 209, 7, 117, 2, 2, 209, 210, 7, 101, 2, 2, 210, 26, 3, 2, 2, 2, 211, 212, 7, 102, 2, 2, 212, 213, 7, 103, 2, 2, 213, 214, 7, 117, 2, 2, 214, 215, 7, 101, 2, 2, 215, 28, 3, 2, 2, 2, 216, 217, 7, 110, 2, 2, 217, 218, 7, 107, 2, 2, 218, 219, 7, 111, 2, 2, 219, 220, 7, 107, 2, 2, 220, 221, 7, 118, 2, 2, 221, 30, 3, 2, 2, 2, 222, 223, 7, 113, 2, 2, 223, 224, 7, 104, 2, 2, 224, 225, 7, 104, 2, 2, 225, 226, 7, 117, 2, 2, 226, 227, 7, 103, 2, 2, 227, 228, 7, 118, 2, 2, 228, 32, 3, 2, 2, 2, 229, 230, 7, 104, 2, 2, 230, 231, 7, 103, 2, 2, 231, 232, 7, 118, 2, 2, 232, 233, 7, 101, 2, 2, 233, 234, 7, 106, 2, 2, 234, 34, 3, 2, 2, 2, 235, 236, 7, 45, 2, 2, 236, 36, 3, 2, 2, 2, 237, 238, 7, 115, 2, 2, 238, 239, 7, 119, 2, 2, 239, 240, 7, 103, 2, 2, 240, 241, 7, 116, 2, 2, 241, 242, 7, 123, 2, 2, 242, 38, 3, 2, 2, 2, 243, 244, 7, 110, 2, 2, 244, 245, 7, 99, 2, 2, 245, 246, 7, 124, 2, 2, 246, 247, 7, 123, 2, 2, 247, 40, 3, 2, 2, 2, 248, 249, 7, 113, 2, 2, 249, 250, 7, 116, 2, 2, 250, 42, 3, 2, 2, 2, 251, 252, 7, 99, 2, 2, 252, 253, 7, 112, 2, 2, 253, 254, 7, 102, 2, 2, 254, 44, 3, 2, 2, 2, 255, 256, 7, 112, 2, 2, 256, 257, 7, 113, 2, 2, 257, 258, 7, 118, 2, 2, 258, 46, 3, 2, 2, 2, 259, 260, 7, 107, 2, 2, 260, 261, 7, 112, 2, 2, 261, 262, 7, 81, 2, 2, 262, 263, 7, 116, 2, 2, 263, 264, 7, 71, 2, 2, 264, 265, 7, 111, 2, 2, 265, 266, 7, 114, 2, 2, 266, 267, 7, 118, 2, 2, 267, 268, 7, 123, 2, 2, 268, 48, 3, 2, 2, 2, 269, 270, 7, 107, 2, 2, 270, 271, 7, 112, 2, 2, 271, 50, 3, 2, 2, 2, 272, 273, 7, 100, 2, 2, 273, 274, 7, 103, 2, 2, 274, 275, 7, 118, 2, 2, 275, 276, 7, 121, 2, 2, 276, 277, 7, 103, 2, 2, 277, 278, 7, 103, 2, 2, 278, 279, 7, 112, 2, 2, 279, 52, 3, 2, 2, 2, 280, 281, 7, 107, 2, 2, 281, 282, 7, 112, 2, 2, 282, 283, 7, 116, 2, 2, 283, 284, 7, 99, 2, 2, 284, 285, 7, 112, 2, 2, 285, 286, 7, 105, 2, 2, 286, 287, 7, 103, 2, 2, 287, 54, 3, 2, 2, 2, 288, 289, 7, 118, 2, 2, 289, 290, 7, 113, 2, 2, 290, 56, 3, 2, 2, 2, 291, 292, 7, 107, 2, 2, 292, 293, 7, 117, 2, 2, 293, 58, 3, 2, 2, 2, 294, 295, 7, 112, 2, 2, 295, 296, 7, 119, 2, 2, 296, 297, 7, 110, 2, 2, 297, 298, 7, 110, 2, 2, 298, 60, 3, 2, 2, 2, 299, 300, 7, 107, 2, 2, 300, 301, 7, 117, 2, 2, 301, 302, 7, 80, 2, 2, 302, 303, 7, 119, 2, 2, 303, 304, 7, 110, 2, 2, 304, 305, 7, 110, 2, 2, 305, 62, 3, 2, 2, 2, 306, 307, 7, 107, 2, 2, 307, 308, 7, 117, 2, 2, 308, 309, 7, 80, 2, 2, 309, 310, 7, 113, 2, 2, 310, 311, 7, 118, 2, 2, 311, 312, 7, 80, 2, 2, 312, 313, 7, 119, 2, 2, 313, 314, 7, 110, 2, 2, 314, 315, 7, 110, 2, 2, 315, 64, 3, 2, 2, 2, 316, 317, 7, 112, 2, 2, 317, 318, 7, 113, 2, 2, 318, 319, 7, 118, 2, 2, 319, 320, 7, 80, 2, 2, 320, 321, 7, 119, 2, 2, 321, 322, 7, 110, 2, 2, 322, 323, 7, 110, 2, 2, 323, 66, 3, 2, 2, 2, 324, 325, 7, 103, 2, 2, 325, 326, 7, 111, 2, 2, 326, 327, 7, 114, 2, 2, 327, 328, 7, 118, 2, 2, 328, 329, 7, 123, 2, 2, 329, 68, 3, 2, 2, 2, 330, 331, 7, 107, 2, 2, 331, 332, 7, 117, 2, 2, 332, 333, 7, 71, 2, 2, 333, 334, 7, 111, 2, 2, 334, 335, 7, 114, 2, 2, 335, 336, 7, 118, 2, 2, 336, 337, 7, 123, 2, 2, 337, 70, 3, 2, 2, 2, 338, 339, 7, 107, 2, 2, 339, 340, 7, 117, 2, 2, 340, 341, 7, 80, 2, 2, 341, 342, 7, 113, 2, 2, 342, 343, 7, 118, 2, 2, 343, 344, 7, 71, 2, 2, 344, 345, 7, 111, 2, 2, 345, 346, 7, 114, 2, 2, 346, 347, 7, 118, 2, 2, 347, 348, 7, 123, 2, 2, 348, 72, 3, 2, 2, 2, 349, 350, 7, 112, 2, 2, 350, 351, 7, 113, 2, 2, 351, 352, 7, 118, 2, 2, 352, 353, 7, 71, 2, 2, 353, 354, 7, 111, 2, 2, 354, 355, 7, 114, 2, 2, 355, 356, 7, 118, 2, 2, 356, 357, 7, 123, 2, 2, 357, 74, 3, 2, 2, 2, 358, 359, 7, 110, 2, 2, 359, 360, 7, 107, 2, 2, 360, 361, 7, 109, 2, 2, 361, 362, 7, 103, 2, 2, 362, 76, 3, 2, 2, 2, 363, 364, 7, 107, 2, 2, 364, 365, 7, 110, 2, 2, 365, 366, 7, 107, 2, 2, 366, 367, 7, 109, 2, 2, 367, 368, 7, 103, 2, 2, 368, 78, 3, 2, 2, 2, 369, 370, 7, 101, 2, 2, 370, 371, 7, 113, 2, 2, 371, 372, 7, 112, 2, 2, 372, 373, 7, 118, 2, 2, 373, 374, 7, 99, 2, 2, 374, 375, 7, 107, 2, 2, 375, 376, 7, 112, 2, 2, 376, 377, 7, 117, 2, 2, 377, 80, 3, 2, 2, 2, 378, 379, 7, 107, 2, 2, 379, 380, 7, 101, 2, 2, 380, 381, 7, 113, 2, 2, 381, 382, 7, 112, 2, 2, 382, 383, 7, 118, 2, 2, 383, 384, 7, 99, 2, 2, 384, 385, 7, 107, 2, 2, 385, 386, 7, 112, 2, 2, 386, 387, 7, 117, 2, 2, 387, 82, 3, 2, 2, 2, 388, 389, 7, 117, 2, 2, 389, 390, 7, 118, 2, 2, 390, 391, 7, 99, 2, 2, 391, 392, 7, 116, 2, 2, 392, 393, 7, 118, 2, 2, 393, 394, 7, 117, 2, 2, 394, 395, 7, 89, 2, 2, 395, 396, 7, 107, 2, 2, 396, 397, 7, 118, 2, 2, 397, 398, 7, 106, 2, 2, 398, 84, 3, 2, 2, 2, 399, 400, 7, 107, 2, 2, 400, 401, 7, 117, 2, 2, 401, 402, 7, 118, 2, 2, 402, 403, 7, 99, 2, 2, 403, 404, 7, 116, 2, 2, 404, 405, 7, 118, 2, 2, 405, 406, 7, 117, 2, 2, 406, 407, 7, 89, 2, 2, 407, 408, 7, 107, 2, 2, 408, 409, 7, 118, 2, 2, 409, 410, 7, 106, 2, 2, 410, 86, 3, 2, 2, 2, 411, 412, 7, 103, 2, 2, 412, 413, 7, 112, 2, 2, 413, 414, 7, 102, 2, 2, 414, 415, 7, 117, 2, 2, 415, 416, 7, 89, 2, 2, 416, 417, 7, 107, 2, 2, 417, 418, 7, 118, 2, 2, 418, 419, 7, 106, 2, 2, 419, 88, 3, 2, 2, 2, 420, 421, 7, 107, 2, 2, 421, 422, 7, 103, 2, 2, 422, 423, 7, 112, 2, 2, 423, 424, 7, 102, 2, 2, 424, 425, 7, 117, 2, 2, 425, 426, 7, 89, 2, 2, 426, 427, 7, 107, 2, 2, 427, 428, 7, 118, 2, 2, 428, 429, 7, 106, 2, 2, 429, 90, 3, 2, 2, 2, 430, 431, 7, 63, 2, 2, 431, 92, 3, 2, 2, 2, 432, 433, 7, 103, 2, 2, 433, 434, 7, 115, 2, 2, 434, 94, 3, 2, 2, 2, 435, 436, 7, 64, 2, 2, 436, 96, 3, 2, 2, 2, 437, 438, 7, 105, 2, 2, 438, 439, 7, 118, 2, 2, 439, 98, 3, 2, 2, 2, 440, 441, 7, 64, 2, 2, 441, 442, 7, 63, 2, 2, 442, 100, 3, 2, 2, 2, 443, 444, 7, 105, 2, 2, 444, 445, 7, 103, 2, 2, 445, 102, 3, 2, 2, 2, 446, 447, 7, 105, 2, 2, 447, 448, 7, 118, 2, 2, 448, 449, 7, 103, 2, 2, 449, 104, 3, 2, 2, 2, 450, 451, 7, 62, 2, 2, 451, 106, 3, 2, 2, 2, 452, 453, 7, 110, 2, 2, 453, 454, 7, 118, 2, 2, 454, 108, 3, 2, 2, 2, 455, 456, 7, 62, 2, 2, 456, 457, 7, 63, 2, 2, 457, 110, 3, 2, 2, 2, 458, 459, 7, 110, 2, 2, 459, 460, 7, 103, 2, 2, 460, 112, 3, 2, 2, 2, 461, 462, 7, 110, 2, 2, 462, 463, 7, 118, 2, 2, 463, 464, 7, 103, 2, 2, 464, 114, 3, 2, 2, 2, 465, 466, 7, 62, 2, 2, 466, 467, 7, 64, 2, 2, 467, 116, 3, 2, 2, 2, 468, 469, 7, 35, 2, 2, 469, 470, 7, 63, 2, 2, 470, 118, 3, 2, 2, 2, 471, 472, 7, 112, 2, 2, 472, 473, 7, 103, 2, 2, 473, 120, 3, 2, 2, 2, 474, 475, 7, 107, 2, 2, 475, 476, 7, 103, 2, 2, 476, 477, 7, 115, 2, 2, 477, 122, 3, 2, 2, 2, 478, 479, 7, 107, 2, 2, 479, 480, 7, 112, 2, 2, 480, 481, 7, 103, 2, 2, 481, 124, 3, 2, 2, 2, 482, 483, 7, 103, 2, 2, 483, 484, 7, 115, 2, 2, 484, 485, 7, 81, 2, 2, 485, 486, 7, 116, 2, 2, 486, 487, 7, 80, 2, 2, 487, 488, 7, 119, 2, 2, 488, 489, 7, 110, 2, 2, 489, 490, 7, 110, 2, 2, 490, 126, 3, 2, 2, 2, 491, 492, 7, 105, 2, 2, 492, 493, 7, 118, 2, 2, 493, 494, 7, 81, 2, 2, 494, 495, 7, 116, 2, 2, 495, 496, 7, 80, 2, 2, 496, 497, 7, 119, 2, 2, 497, 498, 7, 110, 2, 2, 498, 499, 7, 110, 2, 2, 499, 128, 3, 2, 2, 2, 500, 501, 7, 110, 2, 2, 501, 502, 7, 118, 2, 2, 502, 503, 7, 81, 2, 2, 503, 504, 7, 116, 2, 2, 504, 505, 7, 80, 2, 2, 505, 506, 7, 119, 2, 2, 506, 507, 7, 110, 2, 2, 507, 508, 7, 110, 2, 2, 508, 130, 3, 2, 2, 2, 509, 510, 7, 60, 2, 2, 510, 514, 9, 2, 2, 2, 511, 513, 9, 3, 2, 2, 512, 511, 3, 2, 2, 2, 513, 516, 3, 2, 2, 2, 514, 512, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 525, 3, 2, 2, 2, 516, 514, 3, 2, 2, 2, 517, 521, 7, 65, 2, 2, 518, 520, 4, 50, 59, 2, 519, 518, 3, 2, 2, 2, 520, 523, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 521, 522, 3, 2, 2, 2, 522, 525, 3, 2, 2, 2, 523, 521, 3, 2, 2, 2, 524, 509, 3, 2, 2, 2, 524, 517, 3, 2, 2, 2, 525, 132, 3, 2, 2, 2, 526, 530, 9, 2, 2, 2, 527, 529, 9, 4, 2, 2, 528, 527, 3, 2, 2, 2, 529, 532, 3, 2, 2, 2, 530, 528, 3, 2, 2, 2, 530, 531, 3, 2, 2, 2, 531, 134, 3, 2, 2, 2, 532, 530, 3, 2, 2, 2, 533, 534, 7, 98, 2, 2, 534, 535, 5, 133, 67, 2, 535, 536, 7, 98, 2, 2, 536, 136, 3, 2, 2, 2, 537, 538, 7, 117, 2, 2, 538, 539, 7, 119, 2, 2, 539, 540, 7, 111, 2, 2, 540, 541, 7, 42, 2, 2, 541, 542, 3, 2, 2, 2, 542, 543, 5, 133, 67, 2, 543, 544, 7, 43, 2, 2, 544, 580, 3, 2, 2, 2, 545, 546, 7, 111, 2, 2, 546, 547, 7, 99, 2, 2, 547, 548, 7, 122, 2, 2, 548, 549, 7, 42, 2, 2, 549, 550, 3, 2, 2, 2, 550, 551, 5, 133, 67, 2, 551, 552, 7, 43, 2, 2, 552, 580, 3, 2, 2, 2, 553, 554, 7, 111, 2, 2, 554, 555, 7, 107, 2, 2, 555, 556, 7, 112, 2, 2, 556, 557, 7, 42, 2, 2, 557, 558, 3, 2, 2, 2, 558, 559, 5, 133, 67, 2, 559, 560, 7, 43, 2, 2, 560, 580, 3, 2, 2, 2, 561, 562, 7, 99, 2, 2, 562, 563, 7, 120, 2, 2, 563, 564, 7, 105, 2, 2, 564, 565, 7, 42, 2, 2, 565, 566, 3, 2, 2, 2, 566, 567, 5, 133, 67, 2, 567, 568, 7, 43, 2, 2, 568, 580, 3, 2, 2, 2, 569, 570, 7, 101, 2, 2, 570, 571, 7, 113, 2, 2, 571, 572, 7, 119, 2, 2, 572, 573, 7, 112, 2, 2, 573, 574, 7, 118, 2, 2, 574, 575, 7, 42, 2, 2, 575, 576, 3, 2, 2, 2, 576, 577, 5, 133, 67, 2, 577, 578, 7, 43, 2, 2, 578, 580, 3, 2, 2, 2, 579, 537, 3, 2, 2, 2, 579, 545, 3, 2, 2, 2, 579, 553, 3, 2, 2, 2, 579, 561, 3, 2, 2, 2, 579, 569, 3, 2, 2, 2, 580, 138, 3, 2, 2, 2, 581, 582, 7, 118, 2, 2, 582, 583, 7, 116, 2, 2, 583, 584, 7, 119, 2, 2, 584, 591, 7, 103, 2, 2, 585, 586, 7, 104, 2, 2, 586, 587, 7, 99, 2, 2, 587, 588, 7, 110, 2, 2, 588, 589, 7, 117, 2, 2, 589, 591, 7, 103, 2, 2, 590, 581, 3, 2, 2, 2, 590, 585, 3, 2, 2, 2, 591, 140, 3, 2, 2, 2, 592, 594, 7, 47, 2, 2, 593, 592, 3, 2, 2, 2, 593, 594, 3, 2, 2, 2, 594, 595, 3, 2, 2, 2, 595, 602, 5, 143, 72, 2, 596, 598, 7, 47, 2, 2, 597, 596, 3, 2, 2, 2, 597, 598, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 602, 5, 145, 73, 2, 600, 602, 5, 147, 74, 2, 601, 593, 3, 2, 2, 2, 601, 597, 3, 2, 2, 2, 601, 600, 3, 2, 2, 2, 602, 142, 3, 2, 2, 2, 603, 605, 9, 5, 2, 2, 604, 603, 3, 2, 2, 2, 605, 606, 3, 2, 2, 2, 606, 604, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 612, 7, 48, 2, 2, 609, 611, 9, 5, 2, 2, 610, 609, 3, 2, 2, 2, 611, 614, 3, 2, 2, 2, 612, 610, 3, 2, 2, 2, 612, 613, 3, 2, 2, 2, 613, 144, 3, 2, 2, 2, 614, 612, 3, 2, 2, 2, 615, 619, 9, 6, 2, 2, 616, 618, 9, 5, 2, 2, 617, 616, 3, 2, 2, 2, 618, 621, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 619, 620, 3, 2, 2, 2, 620, 146, 3, 2, 2, 2, 621, 619, 3, 2, 2, 2, 622, 623, 7, 50, 2, 2, 623, 148, 3, 2, 2, 2, 624, 630, 7, 41, 2, 2, 625, 629, 10, 7, 2, 2, 626, 627, 7, 41, 2, 2, 627, 629, 7, 41, 2, 2, 628, 625, 3, 2, 2, 2, 628, 626, 3, 2, 2, 2, 629, 632, 3, 2, 2, 2, 630, 628, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 633, 3, 2, 2, 2, 632, 630, 3, 2, 2, 2, 633, 634, 7, 41, 2, 2, 634, 150, 3, 2, 2, 2, 635, 636, 9, 8, 2, 2, 636, 637, 3, 2, 2, 2, 637, 638, 8, 76, 2, 2, 638, 152, 3, 2, 2, 2, 17, 2, 514, 521, 524, 530, 579, 590, 593, 597, 601, 606, 612, 619, 628, 630, 3, 8, 2, 2] \ No newline at end of file diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.java b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.java index 149bdca4c..461b7199a 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.java +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.java @@ -28,9 +28,9 @@ public class EQLLexer extends Lexer { T__38=39, T__39=40, T__40=41, T__41=42, T__42=43, T__43=44, T__44=45, T__45=46, T__46=47, T__47=48, T__48=49, T__49=50, T__50=51, T__51=52, T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59, - T__59=60, INPUT_VARIABLE=61, PATH_VARIABLE=62, QUOTED_PATH_VARIABLE=63, - PROP_FORMULA=64, BOOLEAN_LITERAL=65, NUMBER_LITERAL=66, DOUBLE=67, INT=68, - ZERO=69, STRING_LITERAL=70, WS=71; + T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, INPUT_VARIABLE=65, PATH_VARIABLE=66, + QUOTED_PATH_VARIABLE=67, PROP_FORMULA=68, BOOLEAN_LITERAL=69, NUMBER_LITERAL=70, + DOUBLE=71, INT=72, ZERO=73, STRING_LITERAL=74, WS=75; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -48,9 +48,9 @@ public class EQLLexer extends Lexer { "T__33", "T__34", "T__35", "T__36", "T__37", "T__38", "T__39", "T__40", "T__41", "T__42", "T__43", "T__44", "T__45", "T__46", "T__47", "T__48", "T__49", "T__50", "T__51", "T__52", "T__53", "T__54", "T__55", "T__56", - "T__57", "T__58", "T__59", "INPUT_VARIABLE", "PATH_VARIABLE", "QUOTED_PATH_VARIABLE", - "PROP_FORMULA", "BOOLEAN_LITERAL", "NUMBER_LITERAL", "DOUBLE", "INT", - "ZERO", "STRING_LITERAL", "WS" + "T__57", "T__58", "T__59", "T__60", "T__61", "T__62", "T__63", "INPUT_VARIABLE", + "PATH_VARIABLE", "QUOTED_PATH_VARIABLE", "PROP_FORMULA", "BOOLEAN_LITERAL", + "NUMBER_LITERAL", "DOUBLE", "INT", "ZERO", "STRING_LITERAL", "WS" }; } public static final String[] ruleNames = makeRuleNames(); @@ -60,12 +60,13 @@ public class EQLLexer extends Lexer { null, "'('", "')'", "'select'", "'distinct'", "'where'", "'order'", "'by'", "','", "'nulls'", "'first'", "'last'", "'asc'", "'desc'", "'limit'", "'offset'", "'fetch'", "'+'", "'query'", "'lazy'", "'or'", "'and'", "'not'", - "'in'", "'between'", "'inrange'", "'to'", "'is'", "'null'", "'isNull'", - "'isNotNull'", "'notNull'", "'empty'", "'isEmpty'", "'isNotEmpty'", "'notEmpty'", - "'like'", "'ilike'", "'contains'", "'icontains'", "'startsWith'", "'istartsWith'", - "'endsWith'", "'iendsWith'", "'='", "'eq'", "'>'", "'gt'", "'>='", "'ge'", - "'gte'", "'<'", "'lt'", "'<='", "'le'", "'lte'", "'<>'", "'!='", "'ne'", - "'ieq'", "'ine'", null, null, null, null, null, null, null, null, "'0'" + "'inOrEmpty'", "'in'", "'between'", "'inrange'", "'to'", "'is'", "'null'", + "'isNull'", "'isNotNull'", "'notNull'", "'empty'", "'isEmpty'", "'isNotEmpty'", + "'notEmpty'", "'like'", "'ilike'", "'contains'", "'icontains'", "'startsWith'", + "'istartsWith'", "'endsWith'", "'iendsWith'", "'='", "'eq'", "'>'", "'gt'", + "'>='", "'ge'", "'gte'", "'<'", "'lt'", "'<='", "'le'", "'lte'", "'<>'", + "'!='", "'ne'", "'ieq'", "'ine'", "'eqOrNull'", "'gtOrNull'", "'ltOrNull'", + null, null, null, null, null, null, null, null, "'0'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -76,9 +77,9 @@ public class EQLLexer extends Lexer { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, "INPUT_VARIABLE", "PATH_VARIABLE", "QUOTED_PATH_VARIABLE", "PROP_FORMULA", - "BOOLEAN_LITERAL", "NUMBER_LITERAL", "DOUBLE", "INT", "ZERO", "STRING_LITERAL", - "WS" + null, null, null, null, null, "INPUT_VARIABLE", "PATH_VARIABLE", "QUOTED_PATH_VARIABLE", + "PROP_FORMULA", "BOOLEAN_LITERAL", "NUMBER_LITERAL", "DOUBLE", "INT", + "ZERO", "STRING_LITERAL", "WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -140,7 +141,7 @@ public class EQLLexer extends Lexer { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2I\u0252\b\1\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2M\u027f\b\1\4\2\t"+ "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ @@ -148,192 +149,207 @@ public class EQLLexer extends Lexer { "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ ",\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64\t"+ "\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t="+ - "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\3\2"+ - "\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3"+ - "\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3\7\3\7\3\7\3\7\3\b\3\b\3\b\3\t"+ - "\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f"+ - "\3\f\3\f\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3\17\3\17"+ - "\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21"+ - "\3\21\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24"+ - "\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\30\3\30\3\30"+ - "\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32\3\32\3\32"+ - "\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\36"+ - "\3\36\3\36\3\36\3\36\3\36\3\36\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+ - "\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3 \3!\3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3"+ - "\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3"+ - "$\3$\3%\3%\3%\3%\3%\3&\3&\3&\3&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'"+ - "\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3"+ - "*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3,\3,\3"+ - ",\3,\3,\3,\3,\3,\3,\3,\3-\3-\3.\3.\3.\3/\3/\3\60\3\60\3\60\3\61\3\61\3"+ - "\61\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\64\3\64\3\65\3\65\3\65\3\66\3"+ - "\66\3\66\3\67\3\67\3\67\38\38\38\38\39\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3"+ - "<\3<\3=\3=\3=\3=\3>\3>\3>\7>\u01d4\n>\f>\16>\u01d7\13>\3>\3>\7>\u01db"+ - "\n>\f>\16>\u01de\13>\5>\u01e0\n>\3?\3?\7?\u01e4\n?\f?\16?\u01e7\13?\3"+ - "@\3@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3"+ - "A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\5"+ - "A\u0217\nA\3B\3B\3B\3B\3B\3B\3B\3B\3B\5B\u0222\nB\3C\5C\u0225\nC\3C\3"+ - "C\5C\u0229\nC\3C\3C\5C\u022d\nC\3D\6D\u0230\nD\rD\16D\u0231\3D\3D\7D\u0236"+ - "\nD\fD\16D\u0239\13D\3E\3E\7E\u023d\nE\fE\16E\u0240\13E\3F\3F\3G\3G\3"+ - "G\3G\7G\u0248\nG\fG\16G\u024b\13G\3G\3G\3H\3H\3H\3H\2\2I\3\3\5\4\7\5\t"+ - "\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23"+ - "%\24\'\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G"+ - "%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{"+ - "?}@\177A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\3\2\t"+ - "\5\2C\\aac|\6\2\62;C\\aac|\7\2\60\60\62;C\\aac|\3\2\62;\3\2\63;\3\2))"+ - "\5\2\13\f\17\17\"\"\2\u0263\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3"+ - "\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2"+ - "\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37"+ - "\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3"+ - "\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2"+ - "\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C"+ - "\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2"+ - "\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2"+ - "\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i"+ - "\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2"+ - "\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081"+ - "\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2"+ - "\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\3\u0091\3\2\2\2\5\u0093"+ - "\3\2\2\2\7\u0095\3\2\2\2\t\u009c\3\2\2\2\13\u00a5\3\2\2\2\r\u00ab\3\2"+ - "\2\2\17\u00b1\3\2\2\2\21\u00b4\3\2\2\2\23\u00b6\3\2\2\2\25\u00bc\3\2\2"+ - "\2\27\u00c2\3\2\2\2\31\u00c7\3\2\2\2\33\u00cb\3\2\2\2\35\u00d0\3\2\2\2"+ - "\37\u00d6\3\2\2\2!\u00dd\3\2\2\2#\u00e3\3\2\2\2%\u00e5\3\2\2\2\'\u00eb"+ - "\3\2\2\2)\u00f0\3\2\2\2+\u00f3\3\2\2\2-\u00f7\3\2\2\2/\u00fb\3\2\2\2\61"+ - "\u00fe\3\2\2\2\63\u0106\3\2\2\2\65\u010e\3\2\2\2\67\u0111\3\2\2\29\u0114"+ - "\3\2\2\2;\u0119\3\2\2\2=\u0120\3\2\2\2?\u012a\3\2\2\2A\u0132\3\2\2\2C"+ - "\u0138\3\2\2\2E\u0140\3\2\2\2G\u014b\3\2\2\2I\u0154\3\2\2\2K\u0159\3\2"+ - "\2\2M\u015f\3\2\2\2O\u0168\3\2\2\2Q\u0172\3\2\2\2S\u017d\3\2\2\2U\u0189"+ - "\3\2\2\2W\u0192\3\2\2\2Y\u019c\3\2\2\2[\u019e\3\2\2\2]\u01a1\3\2\2\2_"+ - "\u01a3\3\2\2\2a\u01a6\3\2\2\2c\u01a9\3\2\2\2e\u01ac\3\2\2\2g\u01b0\3\2"+ - "\2\2i\u01b2\3\2\2\2k\u01b5\3\2\2\2m\u01b8\3\2\2\2o\u01bb\3\2\2\2q\u01bf"+ - "\3\2\2\2s\u01c2\3\2\2\2u\u01c5\3\2\2\2w\u01c8\3\2\2\2y\u01cc\3\2\2\2{"+ - "\u01df\3\2\2\2}\u01e1\3\2\2\2\177\u01e8\3\2\2\2\u0081\u0216\3\2\2\2\u0083"+ - "\u0221\3\2\2\2\u0085\u022c\3\2\2\2\u0087\u022f\3\2\2\2\u0089\u023a\3\2"+ - "\2\2\u008b\u0241\3\2\2\2\u008d\u0243\3\2\2\2\u008f\u024e\3\2\2\2\u0091"+ - "\u0092\7*\2\2\u0092\4\3\2\2\2\u0093\u0094\7+\2\2\u0094\6\3\2\2\2\u0095"+ - "\u0096\7u\2\2\u0096\u0097\7g\2\2\u0097\u0098\7n\2\2\u0098\u0099\7g\2\2"+ - "\u0099\u009a\7e\2\2\u009a\u009b\7v\2\2\u009b\b\3\2\2\2\u009c\u009d\7f"+ - "\2\2\u009d\u009e\7k\2\2\u009e\u009f\7u\2\2\u009f\u00a0\7v\2\2\u00a0\u00a1"+ - "\7k\2\2\u00a1\u00a2\7p\2\2\u00a2\u00a3\7e\2\2\u00a3\u00a4\7v\2\2\u00a4"+ - "\n\3\2\2\2\u00a5\u00a6\7y\2\2\u00a6\u00a7\7j\2\2\u00a7\u00a8\7g\2\2\u00a8"+ - "\u00a9\7t\2\2\u00a9\u00aa\7g\2\2\u00aa\f\3\2\2\2\u00ab\u00ac\7q\2\2\u00ac"+ - "\u00ad\7t\2\2\u00ad\u00ae\7f\2\2\u00ae\u00af\7g\2\2\u00af\u00b0\7t\2\2"+ - "\u00b0\16\3\2\2\2\u00b1\u00b2\7d\2\2\u00b2\u00b3\7{\2\2\u00b3\20\3\2\2"+ - "\2\u00b4\u00b5\7.\2\2\u00b5\22\3\2\2\2\u00b6\u00b7\7p\2\2\u00b7\u00b8"+ - "\7w\2\2\u00b8\u00b9\7n\2\2\u00b9\u00ba\7n\2\2\u00ba\u00bb\7u\2\2\u00bb"+ - "\24\3\2\2\2\u00bc\u00bd\7h\2\2\u00bd\u00be\7k\2\2\u00be\u00bf\7t\2\2\u00bf"+ - "\u00c0\7u\2\2\u00c0\u00c1\7v\2\2\u00c1\26\3\2\2\2\u00c2\u00c3\7n\2\2\u00c3"+ - "\u00c4\7c\2\2\u00c4\u00c5\7u\2\2\u00c5\u00c6\7v\2\2\u00c6\30\3\2\2\2\u00c7"+ - "\u00c8\7c\2\2\u00c8\u00c9\7u\2\2\u00c9\u00ca\7e\2\2\u00ca\32\3\2\2\2\u00cb"+ - "\u00cc\7f\2\2\u00cc\u00cd\7g\2\2\u00cd\u00ce\7u\2\2\u00ce\u00cf\7e\2\2"+ - "\u00cf\34\3\2\2\2\u00d0\u00d1\7n\2\2\u00d1\u00d2\7k\2\2\u00d2\u00d3\7"+ - "o\2\2\u00d3\u00d4\7k\2\2\u00d4\u00d5\7v\2\2\u00d5\36\3\2\2\2\u00d6\u00d7"+ - "\7q\2\2\u00d7\u00d8\7h\2\2\u00d8\u00d9\7h\2\2\u00d9\u00da\7u\2\2\u00da"+ - "\u00db\7g\2\2\u00db\u00dc\7v\2\2\u00dc \3\2\2\2\u00dd\u00de\7h\2\2\u00de"+ - "\u00df\7g\2\2\u00df\u00e0\7v\2\2\u00e0\u00e1\7e\2\2\u00e1\u00e2\7j\2\2"+ - "\u00e2\"\3\2\2\2\u00e3\u00e4\7-\2\2\u00e4$\3\2\2\2\u00e5\u00e6\7s\2\2"+ - "\u00e6\u00e7\7w\2\2\u00e7\u00e8\7g\2\2\u00e8\u00e9\7t\2\2\u00e9\u00ea"+ - "\7{\2\2\u00ea&\3\2\2\2\u00eb\u00ec\7n\2\2\u00ec\u00ed\7c\2\2\u00ed\u00ee"+ - "\7|\2\2\u00ee\u00ef\7{\2\2\u00ef(\3\2\2\2\u00f0\u00f1\7q\2\2\u00f1\u00f2"+ - "\7t\2\2\u00f2*\3\2\2\2\u00f3\u00f4\7c\2\2\u00f4\u00f5\7p\2\2\u00f5\u00f6"+ - "\7f\2\2\u00f6,\3\2\2\2\u00f7\u00f8\7p\2\2\u00f8\u00f9\7q\2\2\u00f9\u00fa"+ - "\7v\2\2\u00fa.\3\2\2\2\u00fb\u00fc\7k\2\2\u00fc\u00fd\7p\2\2\u00fd\60"+ - "\3\2\2\2\u00fe\u00ff\7d\2\2\u00ff\u0100\7g\2\2\u0100\u0101\7v\2\2\u0101"+ - "\u0102\7y\2\2\u0102\u0103\7g\2\2\u0103\u0104\7g\2\2\u0104\u0105\7p\2\2"+ - "\u0105\62\3\2\2\2\u0106\u0107\7k\2\2\u0107\u0108\7p\2\2\u0108\u0109\7"+ - "t\2\2\u0109\u010a\7c\2\2\u010a\u010b\7p\2\2\u010b\u010c\7i\2\2\u010c\u010d"+ - "\7g\2\2\u010d\64\3\2\2\2\u010e\u010f\7v\2\2\u010f\u0110\7q\2\2\u0110\66"+ - "\3\2\2\2\u0111\u0112\7k\2\2\u0112\u0113\7u\2\2\u01138\3\2\2\2\u0114\u0115"+ - "\7p\2\2\u0115\u0116\7w\2\2\u0116\u0117\7n\2\2\u0117\u0118\7n\2\2\u0118"+ - ":\3\2\2\2\u0119\u011a\7k\2\2\u011a\u011b\7u\2\2\u011b\u011c\7P\2\2\u011c"+ - "\u011d\7w\2\2\u011d\u011e\7n\2\2\u011e\u011f\7n\2\2\u011f<\3\2\2\2\u0120"+ - "\u0121\7k\2\2\u0121\u0122\7u\2\2\u0122\u0123\7P\2\2\u0123\u0124\7q\2\2"+ - "\u0124\u0125\7v\2\2\u0125\u0126\7P\2\2\u0126\u0127\7w\2\2\u0127\u0128"+ - "\7n\2\2\u0128\u0129\7n\2\2\u0129>\3\2\2\2\u012a\u012b\7p\2\2\u012b\u012c"+ - "\7q\2\2\u012c\u012d\7v\2\2\u012d\u012e\7P\2\2\u012e\u012f\7w\2\2\u012f"+ - "\u0130\7n\2\2\u0130\u0131\7n\2\2\u0131@\3\2\2\2\u0132\u0133\7g\2\2\u0133"+ - "\u0134\7o\2\2\u0134\u0135\7r\2\2\u0135\u0136\7v\2\2\u0136\u0137\7{\2\2"+ - "\u0137B\3\2\2\2\u0138\u0139\7k\2\2\u0139\u013a\7u\2\2\u013a\u013b\7G\2"+ - "\2\u013b\u013c\7o\2\2\u013c\u013d\7r\2\2\u013d\u013e\7v\2\2\u013e\u013f"+ - "\7{\2\2\u013fD\3\2\2\2\u0140\u0141\7k\2\2\u0141\u0142\7u\2\2\u0142\u0143"+ - "\7P\2\2\u0143\u0144\7q\2\2\u0144\u0145\7v\2\2\u0145\u0146\7G\2\2\u0146"+ - "\u0147\7o\2\2\u0147\u0148\7r\2\2\u0148\u0149\7v\2\2\u0149\u014a\7{\2\2"+ - "\u014aF\3\2\2\2\u014b\u014c\7p\2\2\u014c\u014d\7q\2\2\u014d\u014e\7v\2"+ - "\2\u014e\u014f\7G\2\2\u014f\u0150\7o\2\2\u0150\u0151\7r\2\2\u0151\u0152"+ - "\7v\2\2\u0152\u0153\7{\2\2\u0153H\3\2\2\2\u0154\u0155\7n\2\2\u0155\u0156"+ - "\7k\2\2\u0156\u0157\7m\2\2\u0157\u0158\7g\2\2\u0158J\3\2\2\2\u0159\u015a"+ - "\7k\2\2\u015a\u015b\7n\2\2\u015b\u015c\7k\2\2\u015c\u015d\7m\2\2\u015d"+ - "\u015e\7g\2\2\u015eL\3\2\2\2\u015f\u0160\7e\2\2\u0160\u0161\7q\2\2\u0161"+ - "\u0162\7p\2\2\u0162\u0163\7v\2\2\u0163\u0164\7c\2\2\u0164\u0165\7k\2\2"+ - "\u0165\u0166\7p\2\2\u0166\u0167\7u\2\2\u0167N\3\2\2\2\u0168\u0169\7k\2"+ - "\2\u0169\u016a\7e\2\2\u016a\u016b\7q\2\2\u016b\u016c\7p\2\2\u016c\u016d"+ - "\7v\2\2\u016d\u016e\7c\2\2\u016e\u016f\7k\2\2\u016f\u0170\7p\2\2\u0170"+ - "\u0171\7u\2\2\u0171P\3\2\2\2\u0172\u0173\7u\2\2\u0173\u0174\7v\2\2\u0174"+ - "\u0175\7c\2\2\u0175\u0176\7t\2\2\u0176\u0177\7v\2\2\u0177\u0178\7u\2\2"+ - "\u0178\u0179\7Y\2\2\u0179\u017a\7k\2\2\u017a\u017b\7v\2\2\u017b\u017c"+ - "\7j\2\2\u017cR\3\2\2\2\u017d\u017e\7k\2\2\u017e\u017f\7u\2\2\u017f\u0180"+ - "\7v\2\2\u0180\u0181\7c\2\2\u0181\u0182\7t\2\2\u0182\u0183\7v\2\2\u0183"+ - "\u0184\7u\2\2\u0184\u0185\7Y\2\2\u0185\u0186\7k\2\2\u0186\u0187\7v\2\2"+ - "\u0187\u0188\7j\2\2\u0188T\3\2\2\2\u0189\u018a\7g\2\2\u018a\u018b\7p\2"+ - "\2\u018b\u018c\7f\2\2\u018c\u018d\7u\2\2\u018d\u018e\7Y\2\2\u018e\u018f"+ - "\7k\2\2\u018f\u0190\7v\2\2\u0190\u0191\7j\2\2\u0191V\3\2\2\2\u0192\u0193"+ - "\7k\2\2\u0193\u0194\7g\2\2\u0194\u0195\7p\2\2\u0195\u0196\7f\2\2\u0196"+ - "\u0197\7u\2\2\u0197\u0198\7Y\2\2\u0198\u0199\7k\2\2\u0199\u019a\7v\2\2"+ - "\u019a\u019b\7j\2\2\u019bX\3\2\2\2\u019c\u019d\7?\2\2\u019dZ\3\2\2\2\u019e"+ - "\u019f\7g\2\2\u019f\u01a0\7s\2\2\u01a0\\\3\2\2\2\u01a1\u01a2\7@\2\2\u01a2"+ - "^\3\2\2\2\u01a3\u01a4\7i\2\2\u01a4\u01a5\7v\2\2\u01a5`\3\2\2\2\u01a6\u01a7"+ - "\7@\2\2\u01a7\u01a8\7?\2\2\u01a8b\3\2\2\2\u01a9\u01aa\7i\2\2\u01aa\u01ab"+ - "\7g\2\2\u01abd\3\2\2\2\u01ac\u01ad\7i\2\2\u01ad\u01ae\7v\2\2\u01ae\u01af"+ - "\7g\2\2\u01aff\3\2\2\2\u01b0\u01b1\7>\2\2\u01b1h\3\2\2\2\u01b2\u01b3\7"+ - "n\2\2\u01b3\u01b4\7v\2\2\u01b4j\3\2\2\2\u01b5\u01b6\7>\2\2\u01b6\u01b7"+ - "\7?\2\2\u01b7l\3\2\2\2\u01b8\u01b9\7n\2\2\u01b9\u01ba\7g\2\2\u01ban\3"+ - "\2\2\2\u01bb\u01bc\7n\2\2\u01bc\u01bd\7v\2\2\u01bd\u01be\7g\2\2\u01be"+ - "p\3\2\2\2\u01bf\u01c0\7>\2\2\u01c0\u01c1\7@\2\2\u01c1r\3\2\2\2\u01c2\u01c3"+ - "\7#\2\2\u01c3\u01c4\7?\2\2\u01c4t\3\2\2\2\u01c5\u01c6\7p\2\2\u01c6\u01c7"+ - "\7g\2\2\u01c7v\3\2\2\2\u01c8\u01c9\7k\2\2\u01c9\u01ca\7g\2\2\u01ca\u01cb"+ - "\7s\2\2\u01cbx\3\2\2\2\u01cc\u01cd\7k\2\2\u01cd\u01ce\7p\2\2\u01ce\u01cf"+ - "\7g\2\2\u01cfz\3\2\2\2\u01d0\u01d1\7<\2\2\u01d1\u01d5\t\2\2\2\u01d2\u01d4"+ - "\t\3\2\2\u01d3\u01d2\3\2\2\2\u01d4\u01d7\3\2\2\2\u01d5\u01d3\3\2\2\2\u01d5"+ - "\u01d6\3\2\2\2\u01d6\u01e0\3\2\2\2\u01d7\u01d5\3\2\2\2\u01d8\u01dc\7A"+ - "\2\2\u01d9\u01db\4\62;\2\u01da\u01d9\3\2\2\2\u01db\u01de\3\2\2\2\u01dc"+ - "\u01da\3\2\2\2\u01dc\u01dd\3\2\2\2\u01dd\u01e0\3\2\2\2\u01de\u01dc\3\2"+ - "\2\2\u01df\u01d0\3\2\2\2\u01df\u01d8\3\2\2\2\u01e0|\3\2\2\2\u01e1\u01e5"+ - "\t\2\2\2\u01e2\u01e4\t\4\2\2\u01e3\u01e2\3\2\2\2\u01e4\u01e7\3\2\2\2\u01e5"+ - "\u01e3\3\2\2\2\u01e5\u01e6\3\2\2\2\u01e6~\3\2\2\2\u01e7\u01e5\3\2\2\2"+ - "\u01e8\u01e9\7b\2\2\u01e9\u01ea\5}?\2\u01ea\u01eb\7b\2\2\u01eb\u0080\3"+ - "\2\2\2\u01ec\u01ed\7u\2\2\u01ed\u01ee\7w\2\2\u01ee\u01ef\7o\2\2\u01ef"+ - "\u01f0\7*\2\2\u01f0\u01f1\3\2\2\2\u01f1\u01f2\5}?\2\u01f2\u01f3\7+\2\2"+ - "\u01f3\u0217\3\2\2\2\u01f4\u01f5\7o\2\2\u01f5\u01f6\7c\2\2\u01f6\u01f7"+ - "\7z\2\2\u01f7\u01f8\7*\2\2\u01f8\u01f9\3\2\2\2\u01f9\u01fa\5}?\2\u01fa"+ - "\u01fb\7+\2\2\u01fb\u0217\3\2\2\2\u01fc\u01fd\7o\2\2\u01fd\u01fe\7k\2"+ - "\2\u01fe\u01ff\7p\2\2\u01ff\u0200\7*\2\2\u0200\u0201\3\2\2\2\u0201\u0202"+ - "\5}?\2\u0202\u0203\7+\2\2\u0203\u0217\3\2\2\2\u0204\u0205\7c\2\2\u0205"+ - "\u0206\7x\2\2\u0206\u0207\7i\2\2\u0207\u0208\7*\2\2\u0208\u0209\3\2\2"+ - "\2\u0209\u020a\5}?\2\u020a\u020b\7+\2\2\u020b\u0217\3\2\2\2\u020c\u020d"+ - "\7e\2\2\u020d\u020e\7q\2\2\u020e\u020f\7w\2\2\u020f\u0210\7p\2\2\u0210"+ - "\u0211\7v\2\2\u0211\u0212\7*\2\2\u0212\u0213\3\2\2\2\u0213\u0214\5}?\2"+ - "\u0214\u0215\7+\2\2\u0215\u0217\3\2\2\2\u0216\u01ec\3\2\2\2\u0216\u01f4"+ - "\3\2\2\2\u0216\u01fc\3\2\2\2\u0216\u0204\3\2\2\2\u0216\u020c\3\2\2\2\u0217"+ - "\u0082\3\2\2\2\u0218\u0219\7v\2\2\u0219\u021a\7t\2\2\u021a\u021b\7w\2"+ - "\2\u021b\u0222\7g\2\2\u021c\u021d\7h\2\2\u021d\u021e\7c\2\2\u021e\u021f"+ - "\7n\2\2\u021f\u0220\7u\2\2\u0220\u0222\7g\2\2\u0221\u0218\3\2\2\2\u0221"+ - "\u021c\3\2\2\2\u0222\u0084\3\2\2\2\u0223\u0225\7/\2\2\u0224\u0223\3\2"+ - "\2\2\u0224\u0225\3\2\2\2\u0225\u0226\3\2\2\2\u0226\u022d\5\u0087D\2\u0227"+ - "\u0229\7/\2\2\u0228\u0227\3\2\2\2\u0228\u0229\3\2\2\2\u0229\u022a\3\2"+ - "\2\2\u022a\u022d\5\u0089E\2\u022b\u022d\5\u008bF\2\u022c\u0224\3\2\2\2"+ - "\u022c\u0228\3\2\2\2\u022c\u022b\3\2\2\2\u022d\u0086\3\2\2\2\u022e\u0230"+ - "\t\5\2\2\u022f\u022e\3\2\2\2\u0230\u0231\3\2\2\2\u0231\u022f\3\2\2\2\u0231"+ - "\u0232\3\2\2\2\u0232\u0233\3\2\2\2\u0233\u0237\7\60\2\2\u0234\u0236\t"+ - "\5\2\2\u0235\u0234\3\2\2\2\u0236\u0239\3\2\2\2\u0237\u0235\3\2\2\2\u0237"+ - "\u0238\3\2\2\2\u0238\u0088\3\2\2\2\u0239\u0237\3\2\2\2\u023a\u023e\t\6"+ - "\2\2\u023b\u023d\t\5\2\2\u023c\u023b\3\2\2\2\u023d\u0240\3\2\2\2\u023e"+ - "\u023c\3\2\2\2\u023e\u023f\3\2\2\2\u023f\u008a\3\2\2\2\u0240\u023e\3\2"+ - "\2\2\u0241\u0242\7\62\2\2\u0242\u008c\3\2\2\2\u0243\u0249\7)\2\2\u0244"+ - "\u0248\n\7\2\2\u0245\u0246\7)\2\2\u0246\u0248\7)\2\2\u0247\u0244\3\2\2"+ - "\2\u0247\u0245\3\2\2\2\u0248\u024b\3\2\2\2\u0249\u0247\3\2\2\2\u0249\u024a"+ - "\3\2\2\2\u024a\u024c\3\2\2\2\u024b\u0249\3\2\2\2\u024c\u024d\7)\2\2\u024d"+ - "\u008e\3\2\2\2\u024e\u024f\t\b\2\2\u024f\u0250\3\2\2\2\u0250\u0251\bH"+ - "\2\2\u0251\u0090\3\2\2\2\21\2\u01d5\u01dc\u01df\u01e5\u0216\u0221\u0224"+ - "\u0228\u022c\u0231\u0237\u023e\u0247\u0249\3\b\2\2"; + "\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4I"+ + "\tI\4J\tJ\4K\tK\4L\tL\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5"+ + "\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3\7\3"+ + "\7\3\7\3\7\3\b\3\b\3\b\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13"+ + "\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16"+ + "\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+ + "\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23"+ + "\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\27\3\27"+ + "\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31"+ + "\3\31\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33"+ + "\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36"+ + "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3!\3"+ + "!\3!\3!\3!\3!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3#\3#\3"+ + "$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3%\3%\3%\3%\3%\3%\3%\3%\3%\3&\3&\3&\3"+ + "&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3"+ + ")\3)\3)\3)\3)\3)\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3+\3+\3"+ + "+\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3-\3"+ + "-\3-\3.\3.\3/\3/\3/\3\60\3\60\3\61\3\61\3\61\3\62\3\62\3\62\3\63\3\63"+ + "\3\63\3\64\3\64\3\64\3\64\3\65\3\65\3\66\3\66\3\66\3\67\3\67\3\67\38\3"+ + "8\38\39\39\39\39\3:\3:\3:\3;\3;\3;\3<\3<\3<\3=\3=\3=\3=\3>\3>\3>\3>\3"+ + "?\3?\3?\3?\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3"+ + "A\3A\3A\3A\3B\3B\3B\7B\u0201\nB\fB\16B\u0204\13B\3B\3B\7B\u0208\nB\fB"+ + "\16B\u020b\13B\5B\u020d\nB\3C\3C\7C\u0211\nC\fC\16C\u0214\13C\3D\3D\3"+ + "D\3D\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3"+ + "E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\3E\5E\u0244"+ + "\nE\3F\3F\3F\3F\3F\3F\3F\3F\3F\5F\u024f\nF\3G\5G\u0252\nG\3G\3G\5G\u0256"+ + "\nG\3G\3G\5G\u025a\nG\3H\6H\u025d\nH\rH\16H\u025e\3H\3H\7H\u0263\nH\f"+ + "H\16H\u0266\13H\3I\3I\7I\u026a\nI\fI\16I\u026d\13I\3J\3J\3K\3K\3K\3K\7"+ + "K\u0275\nK\fK\16K\u0278\13K\3K\3K\3L\3L\3L\3L\2\2M\3\3\5\4\7\5\t\6\13"+ + "\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'"+ + "\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'"+ + "M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177"+ + "A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093"+ + "K\u0095L\u0097M\3\2\t\5\2C\\aac|\6\2\62;C\\aac|\7\2\60\60\62;C\\aac|\3"+ + "\2\62;\3\2\63;\3\2))\5\2\13\f\17\17\"\"\2\u0290\2\3\3\2\2\2\2\5\3\2\2"+ + "\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21"+ + "\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2"+ + "\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3"+ + "\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3"+ + "\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3"+ + "\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2"+ + "\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2"+ + "Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3"+ + "\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2"+ + "\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2"+ + "\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3"+ + "\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2"+ + "\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\3\u0099"+ + "\3\2\2\2\5\u009b\3\2\2\2\7\u009d\3\2\2\2\t\u00a4\3\2\2\2\13\u00ad\3\2"+ + "\2\2\r\u00b3\3\2\2\2\17\u00b9\3\2\2\2\21\u00bc\3\2\2\2\23\u00be\3\2\2"+ + "\2\25\u00c4\3\2\2\2\27\u00ca\3\2\2\2\31\u00cf\3\2\2\2\33\u00d3\3\2\2\2"+ + "\35\u00d8\3\2\2\2\37\u00de\3\2\2\2!\u00e5\3\2\2\2#\u00eb\3\2\2\2%\u00ed"+ + "\3\2\2\2\'\u00f3\3\2\2\2)\u00f8\3\2\2\2+\u00fb\3\2\2\2-\u00ff\3\2\2\2"+ + "/\u0103\3\2\2\2\61\u010d\3\2\2\2\63\u0110\3\2\2\2\65\u0118\3\2\2\2\67"+ + "\u0120\3\2\2\29\u0123\3\2\2\2;\u0126\3\2\2\2=\u012b\3\2\2\2?\u0132\3\2"+ + "\2\2A\u013c\3\2\2\2C\u0144\3\2\2\2E\u014a\3\2\2\2G\u0152\3\2\2\2I\u015d"+ + "\3\2\2\2K\u0166\3\2\2\2M\u016b\3\2\2\2O\u0171\3\2\2\2Q\u017a\3\2\2\2S"+ + "\u0184\3\2\2\2U\u018f\3\2\2\2W\u019b\3\2\2\2Y\u01a4\3\2\2\2[\u01ae\3\2"+ + "\2\2]\u01b0\3\2\2\2_\u01b3\3\2\2\2a\u01b5\3\2\2\2c\u01b8\3\2\2\2e\u01bb"+ + "\3\2\2\2g\u01be\3\2\2\2i\u01c2\3\2\2\2k\u01c4\3\2\2\2m\u01c7\3\2\2\2o"+ + "\u01ca\3\2\2\2q\u01cd\3\2\2\2s\u01d1\3\2\2\2u\u01d4\3\2\2\2w\u01d7\3\2"+ + "\2\2y\u01da\3\2\2\2{\u01de\3\2\2\2}\u01e2\3\2\2\2\177\u01eb\3\2\2\2\u0081"+ + "\u01f4\3\2\2\2\u0083\u020c\3\2\2\2\u0085\u020e\3\2\2\2\u0087\u0215\3\2"+ + "\2\2\u0089\u0243\3\2\2\2\u008b\u024e\3\2\2\2\u008d\u0259\3\2\2\2\u008f"+ + "\u025c\3\2\2\2\u0091\u0267\3\2\2\2\u0093\u026e\3\2\2\2\u0095\u0270\3\2"+ + "\2\2\u0097\u027b\3\2\2\2\u0099\u009a\7*\2\2\u009a\4\3\2\2\2\u009b\u009c"+ + "\7+\2\2\u009c\6\3\2\2\2\u009d\u009e\7u\2\2\u009e\u009f\7g\2\2\u009f\u00a0"+ + "\7n\2\2\u00a0\u00a1\7g\2\2\u00a1\u00a2\7e\2\2\u00a2\u00a3\7v\2\2\u00a3"+ + "\b\3\2\2\2\u00a4\u00a5\7f\2\2\u00a5\u00a6\7k\2\2\u00a6\u00a7\7u\2\2\u00a7"+ + "\u00a8\7v\2\2\u00a8\u00a9\7k\2\2\u00a9\u00aa\7p\2\2\u00aa\u00ab\7e\2\2"+ + "\u00ab\u00ac\7v\2\2\u00ac\n\3\2\2\2\u00ad\u00ae\7y\2\2\u00ae\u00af\7j"+ + "\2\2\u00af\u00b0\7g\2\2\u00b0\u00b1\7t\2\2\u00b1\u00b2\7g\2\2\u00b2\f"+ + "\3\2\2\2\u00b3\u00b4\7q\2\2\u00b4\u00b5\7t\2\2\u00b5\u00b6\7f\2\2\u00b6"+ + "\u00b7\7g\2\2\u00b7\u00b8\7t\2\2\u00b8\16\3\2\2\2\u00b9\u00ba\7d\2\2\u00ba"+ + "\u00bb\7{\2\2\u00bb\20\3\2\2\2\u00bc\u00bd\7.\2\2\u00bd\22\3\2\2\2\u00be"+ + "\u00bf\7p\2\2\u00bf\u00c0\7w\2\2\u00c0\u00c1\7n\2\2\u00c1\u00c2\7n\2\2"+ + "\u00c2\u00c3\7u\2\2\u00c3\24\3\2\2\2\u00c4\u00c5\7h\2\2\u00c5\u00c6\7"+ + "k\2\2\u00c6\u00c7\7t\2\2\u00c7\u00c8\7u\2\2\u00c8\u00c9\7v\2\2\u00c9\26"+ + "\3\2\2\2\u00ca\u00cb\7n\2\2\u00cb\u00cc\7c\2\2\u00cc\u00cd\7u\2\2\u00cd"+ + "\u00ce\7v\2\2\u00ce\30\3\2\2\2\u00cf\u00d0\7c\2\2\u00d0\u00d1\7u\2\2\u00d1"+ + "\u00d2\7e\2\2\u00d2\32\3\2\2\2\u00d3\u00d4\7f\2\2\u00d4\u00d5\7g\2\2\u00d5"+ + "\u00d6\7u\2\2\u00d6\u00d7\7e\2\2\u00d7\34\3\2\2\2\u00d8\u00d9\7n\2\2\u00d9"+ + "\u00da\7k\2\2\u00da\u00db\7o\2\2\u00db\u00dc\7k\2\2\u00dc\u00dd\7v\2\2"+ + "\u00dd\36\3\2\2\2\u00de\u00df\7q\2\2\u00df\u00e0\7h\2\2\u00e0\u00e1\7"+ + "h\2\2\u00e1\u00e2\7u\2\2\u00e2\u00e3\7g\2\2\u00e3\u00e4\7v\2\2\u00e4 "+ + "\3\2\2\2\u00e5\u00e6\7h\2\2\u00e6\u00e7\7g\2\2\u00e7\u00e8\7v\2\2\u00e8"+ + "\u00e9\7e\2\2\u00e9\u00ea\7j\2\2\u00ea\"\3\2\2\2\u00eb\u00ec\7-\2\2\u00ec"+ + "$\3\2\2\2\u00ed\u00ee\7s\2\2\u00ee\u00ef\7w\2\2\u00ef\u00f0\7g\2\2\u00f0"+ + "\u00f1\7t\2\2\u00f1\u00f2\7{\2\2\u00f2&\3\2\2\2\u00f3\u00f4\7n\2\2\u00f4"+ + "\u00f5\7c\2\2\u00f5\u00f6\7|\2\2\u00f6\u00f7\7{\2\2\u00f7(\3\2\2\2\u00f8"+ + "\u00f9\7q\2\2\u00f9\u00fa\7t\2\2\u00fa*\3\2\2\2\u00fb\u00fc\7c\2\2\u00fc"+ + "\u00fd\7p\2\2\u00fd\u00fe\7f\2\2\u00fe,\3\2\2\2\u00ff\u0100\7p\2\2\u0100"+ + "\u0101\7q\2\2\u0101\u0102\7v\2\2\u0102.\3\2\2\2\u0103\u0104\7k\2\2\u0104"+ + "\u0105\7p\2\2\u0105\u0106\7Q\2\2\u0106\u0107\7t\2\2\u0107\u0108\7G\2\2"+ + "\u0108\u0109\7o\2\2\u0109\u010a\7r\2\2\u010a\u010b\7v\2\2\u010b\u010c"+ + "\7{\2\2\u010c\60\3\2\2\2\u010d\u010e\7k\2\2\u010e\u010f\7p\2\2\u010f\62"+ + "\3\2\2\2\u0110\u0111\7d\2\2\u0111\u0112\7g\2\2\u0112\u0113\7v\2\2\u0113"+ + "\u0114\7y\2\2\u0114\u0115\7g\2\2\u0115\u0116\7g\2\2\u0116\u0117\7p\2\2"+ + "\u0117\64\3\2\2\2\u0118\u0119\7k\2\2\u0119\u011a\7p\2\2\u011a\u011b\7"+ + "t\2\2\u011b\u011c\7c\2\2\u011c\u011d\7p\2\2\u011d\u011e\7i\2\2\u011e\u011f"+ + "\7g\2\2\u011f\66\3\2\2\2\u0120\u0121\7v\2\2\u0121\u0122\7q\2\2\u01228"+ + "\3\2\2\2\u0123\u0124\7k\2\2\u0124\u0125\7u\2\2\u0125:\3\2\2\2\u0126\u0127"+ + "\7p\2\2\u0127\u0128\7w\2\2\u0128\u0129\7n\2\2\u0129\u012a\7n\2\2\u012a"+ + "<\3\2\2\2\u012b\u012c\7k\2\2\u012c\u012d\7u\2\2\u012d\u012e\7P\2\2\u012e"+ + "\u012f\7w\2\2\u012f\u0130\7n\2\2\u0130\u0131\7n\2\2\u0131>\3\2\2\2\u0132"+ + "\u0133\7k\2\2\u0133\u0134\7u\2\2\u0134\u0135\7P\2\2\u0135\u0136\7q\2\2"+ + "\u0136\u0137\7v\2\2\u0137\u0138\7P\2\2\u0138\u0139\7w\2\2\u0139\u013a"+ + "\7n\2\2\u013a\u013b\7n\2\2\u013b@\3\2\2\2\u013c\u013d\7p\2\2\u013d\u013e"+ + "\7q\2\2\u013e\u013f\7v\2\2\u013f\u0140\7P\2\2\u0140\u0141\7w\2\2\u0141"+ + "\u0142\7n\2\2\u0142\u0143\7n\2\2\u0143B\3\2\2\2\u0144\u0145\7g\2\2\u0145"+ + "\u0146\7o\2\2\u0146\u0147\7r\2\2\u0147\u0148\7v\2\2\u0148\u0149\7{\2\2"+ + "\u0149D\3\2\2\2\u014a\u014b\7k\2\2\u014b\u014c\7u\2\2\u014c\u014d\7G\2"+ + "\2\u014d\u014e\7o\2\2\u014e\u014f\7r\2\2\u014f\u0150\7v\2\2\u0150\u0151"+ + "\7{\2\2\u0151F\3\2\2\2\u0152\u0153\7k\2\2\u0153\u0154\7u\2\2\u0154\u0155"+ + "\7P\2\2\u0155\u0156\7q\2\2\u0156\u0157\7v\2\2\u0157\u0158\7G\2\2\u0158"+ + "\u0159\7o\2\2\u0159\u015a\7r\2\2\u015a\u015b\7v\2\2\u015b\u015c\7{\2\2"+ + "\u015cH\3\2\2\2\u015d\u015e\7p\2\2\u015e\u015f\7q\2\2\u015f\u0160\7v\2"+ + "\2\u0160\u0161\7G\2\2\u0161\u0162\7o\2\2\u0162\u0163\7r\2\2\u0163\u0164"+ + "\7v\2\2\u0164\u0165\7{\2\2\u0165J\3\2\2\2\u0166\u0167\7n\2\2\u0167\u0168"+ + "\7k\2\2\u0168\u0169\7m\2\2\u0169\u016a\7g\2\2\u016aL\3\2\2\2\u016b\u016c"+ + "\7k\2\2\u016c\u016d\7n\2\2\u016d\u016e\7k\2\2\u016e\u016f\7m\2\2\u016f"+ + "\u0170\7g\2\2\u0170N\3\2\2\2\u0171\u0172\7e\2\2\u0172\u0173\7q\2\2\u0173"+ + "\u0174\7p\2\2\u0174\u0175\7v\2\2\u0175\u0176\7c\2\2\u0176\u0177\7k\2\2"+ + "\u0177\u0178\7p\2\2\u0178\u0179\7u\2\2\u0179P\3\2\2\2\u017a\u017b\7k\2"+ + "\2\u017b\u017c\7e\2\2\u017c\u017d\7q\2\2\u017d\u017e\7p\2\2\u017e\u017f"+ + "\7v\2\2\u017f\u0180\7c\2\2\u0180\u0181\7k\2\2\u0181\u0182\7p\2\2\u0182"+ + "\u0183\7u\2\2\u0183R\3\2\2\2\u0184\u0185\7u\2\2\u0185\u0186\7v\2\2\u0186"+ + "\u0187\7c\2\2\u0187\u0188\7t\2\2\u0188\u0189\7v\2\2\u0189\u018a\7u\2\2"+ + "\u018a\u018b\7Y\2\2\u018b\u018c\7k\2\2\u018c\u018d\7v\2\2\u018d\u018e"+ + "\7j\2\2\u018eT\3\2\2\2\u018f\u0190\7k\2\2\u0190\u0191\7u\2\2\u0191\u0192"+ + "\7v\2\2\u0192\u0193\7c\2\2\u0193\u0194\7t\2\2\u0194\u0195\7v\2\2\u0195"+ + "\u0196\7u\2\2\u0196\u0197\7Y\2\2\u0197\u0198\7k\2\2\u0198\u0199\7v\2\2"+ + "\u0199\u019a\7j\2\2\u019aV\3\2\2\2\u019b\u019c\7g\2\2\u019c\u019d\7p\2"+ + "\2\u019d\u019e\7f\2\2\u019e\u019f\7u\2\2\u019f\u01a0\7Y\2\2\u01a0\u01a1"+ + "\7k\2\2\u01a1\u01a2\7v\2\2\u01a2\u01a3\7j\2\2\u01a3X\3\2\2\2\u01a4\u01a5"+ + "\7k\2\2\u01a5\u01a6\7g\2\2\u01a6\u01a7\7p\2\2\u01a7\u01a8\7f\2\2\u01a8"+ + "\u01a9\7u\2\2\u01a9\u01aa\7Y\2\2\u01aa\u01ab\7k\2\2\u01ab\u01ac\7v\2\2"+ + "\u01ac\u01ad\7j\2\2\u01adZ\3\2\2\2\u01ae\u01af\7?\2\2\u01af\\\3\2\2\2"+ + "\u01b0\u01b1\7g\2\2\u01b1\u01b2\7s\2\2\u01b2^\3\2\2\2\u01b3\u01b4\7@\2"+ + "\2\u01b4`\3\2\2\2\u01b5\u01b6\7i\2\2\u01b6\u01b7\7v\2\2\u01b7b\3\2\2\2"+ + "\u01b8\u01b9\7@\2\2\u01b9\u01ba\7?\2\2\u01bad\3\2\2\2\u01bb\u01bc\7i\2"+ + "\2\u01bc\u01bd\7g\2\2\u01bdf\3\2\2\2\u01be\u01bf\7i\2\2\u01bf\u01c0\7"+ + "v\2\2\u01c0\u01c1\7g\2\2\u01c1h\3\2\2\2\u01c2\u01c3\7>\2\2\u01c3j\3\2"+ + "\2\2\u01c4\u01c5\7n\2\2\u01c5\u01c6\7v\2\2\u01c6l\3\2\2\2\u01c7\u01c8"+ + "\7>\2\2\u01c8\u01c9\7?\2\2\u01c9n\3\2\2\2\u01ca\u01cb\7n\2\2\u01cb\u01cc"+ + "\7g\2\2\u01ccp\3\2\2\2\u01cd\u01ce\7n\2\2\u01ce\u01cf\7v\2\2\u01cf\u01d0"+ + "\7g\2\2\u01d0r\3\2\2\2\u01d1\u01d2\7>\2\2\u01d2\u01d3\7@\2\2\u01d3t\3"+ + "\2\2\2\u01d4\u01d5\7#\2\2\u01d5\u01d6\7?\2\2\u01d6v\3\2\2\2\u01d7\u01d8"+ + "\7p\2\2\u01d8\u01d9\7g\2\2\u01d9x\3\2\2\2\u01da\u01db\7k\2\2\u01db\u01dc"+ + "\7g\2\2\u01dc\u01dd\7s\2\2\u01ddz\3\2\2\2\u01de\u01df\7k\2\2\u01df\u01e0"+ + "\7p\2\2\u01e0\u01e1\7g\2\2\u01e1|\3\2\2\2\u01e2\u01e3\7g\2\2\u01e3\u01e4"+ + "\7s\2\2\u01e4\u01e5\7Q\2\2\u01e5\u01e6\7t\2\2\u01e6\u01e7\7P\2\2\u01e7"+ + "\u01e8\7w\2\2\u01e8\u01e9\7n\2\2\u01e9\u01ea\7n\2\2\u01ea~\3\2\2\2\u01eb"+ + "\u01ec\7i\2\2\u01ec\u01ed\7v\2\2\u01ed\u01ee\7Q\2\2\u01ee\u01ef\7t\2\2"+ + "\u01ef\u01f0\7P\2\2\u01f0\u01f1\7w\2\2\u01f1\u01f2\7n\2\2\u01f2\u01f3"+ + "\7n\2\2\u01f3\u0080\3\2\2\2\u01f4\u01f5\7n\2\2\u01f5\u01f6\7v\2\2\u01f6"+ + "\u01f7\7Q\2\2\u01f7\u01f8\7t\2\2\u01f8\u01f9\7P\2\2\u01f9\u01fa\7w\2\2"+ + "\u01fa\u01fb\7n\2\2\u01fb\u01fc\7n\2\2\u01fc\u0082\3\2\2\2\u01fd\u01fe"+ + "\7<\2\2\u01fe\u0202\t\2\2\2\u01ff\u0201\t\3\2\2\u0200\u01ff\3\2\2\2\u0201"+ + "\u0204\3\2\2\2\u0202\u0200\3\2\2\2\u0202\u0203\3\2\2\2\u0203\u020d\3\2"+ + "\2\2\u0204\u0202\3\2\2\2\u0205\u0209\7A\2\2\u0206\u0208\4\62;\2\u0207"+ + "\u0206\3\2\2\2\u0208\u020b\3\2\2\2\u0209\u0207\3\2\2\2\u0209\u020a\3\2"+ + "\2\2\u020a\u020d\3\2\2\2\u020b\u0209\3\2\2\2\u020c\u01fd\3\2\2\2\u020c"+ + "\u0205\3\2\2\2\u020d\u0084\3\2\2\2\u020e\u0212\t\2\2\2\u020f\u0211\t\4"+ + "\2\2\u0210\u020f\3\2\2\2\u0211\u0214\3\2\2\2\u0212\u0210\3\2\2\2\u0212"+ + "\u0213\3\2\2\2\u0213\u0086\3\2\2\2\u0214\u0212\3\2\2\2\u0215\u0216\7b"+ + "\2\2\u0216\u0217\5\u0085C\2\u0217\u0218\7b\2\2\u0218\u0088\3\2\2\2\u0219"+ + "\u021a\7u\2\2\u021a\u021b\7w\2\2\u021b\u021c\7o\2\2\u021c\u021d\7*\2\2"+ + "\u021d\u021e\3\2\2\2\u021e\u021f\5\u0085C\2\u021f\u0220\7+\2\2\u0220\u0244"+ + "\3\2\2\2\u0221\u0222\7o\2\2\u0222\u0223\7c\2\2\u0223\u0224\7z\2\2\u0224"+ + "\u0225\7*\2\2\u0225\u0226\3\2\2\2\u0226\u0227\5\u0085C\2\u0227\u0228\7"+ + "+\2\2\u0228\u0244\3\2\2\2\u0229\u022a\7o\2\2\u022a\u022b\7k\2\2\u022b"+ + "\u022c\7p\2\2\u022c\u022d\7*\2\2\u022d\u022e\3\2\2\2\u022e\u022f\5\u0085"+ + "C\2\u022f\u0230\7+\2\2\u0230\u0244\3\2\2\2\u0231\u0232\7c\2\2\u0232\u0233"+ + "\7x\2\2\u0233\u0234\7i\2\2\u0234\u0235\7*\2\2\u0235\u0236\3\2\2\2\u0236"+ + "\u0237\5\u0085C\2\u0237\u0238\7+\2\2\u0238\u0244\3\2\2\2\u0239\u023a\7"+ + "e\2\2\u023a\u023b\7q\2\2\u023b\u023c\7w\2\2\u023c\u023d\7p\2\2\u023d\u023e"+ + "\7v\2\2\u023e\u023f\7*\2\2\u023f\u0240\3\2\2\2\u0240\u0241\5\u0085C\2"+ + "\u0241\u0242\7+\2\2\u0242\u0244\3\2\2\2\u0243\u0219\3\2\2\2\u0243\u0221"+ + "\3\2\2\2\u0243\u0229\3\2\2\2\u0243\u0231\3\2\2\2\u0243\u0239\3\2\2\2\u0244"+ + "\u008a\3\2\2\2\u0245\u0246\7v\2\2\u0246\u0247\7t\2\2\u0247\u0248\7w\2"+ + "\2\u0248\u024f\7g\2\2\u0249\u024a\7h\2\2\u024a\u024b\7c\2\2\u024b\u024c"+ + "\7n\2\2\u024c\u024d\7u\2\2\u024d\u024f\7g\2\2\u024e\u0245\3\2\2\2\u024e"+ + "\u0249\3\2\2\2\u024f\u008c\3\2\2\2\u0250\u0252\7/\2\2\u0251\u0250\3\2"+ + "\2\2\u0251\u0252\3\2\2\2\u0252\u0253\3\2\2\2\u0253\u025a\5\u008fH\2\u0254"+ + "\u0256\7/\2\2\u0255\u0254\3\2\2\2\u0255\u0256\3\2\2\2\u0256\u0257\3\2"+ + "\2\2\u0257\u025a\5\u0091I\2\u0258\u025a\5\u0093J\2\u0259\u0251\3\2\2\2"+ + "\u0259\u0255\3\2\2\2\u0259\u0258\3\2\2\2\u025a\u008e\3\2\2\2\u025b\u025d"+ + "\t\5\2\2\u025c\u025b\3\2\2\2\u025d\u025e\3\2\2\2\u025e\u025c\3\2\2\2\u025e"+ + "\u025f\3\2\2\2\u025f\u0260\3\2\2\2\u0260\u0264\7\60\2\2\u0261\u0263\t"+ + "\5\2\2\u0262\u0261\3\2\2\2\u0263\u0266\3\2\2\2\u0264\u0262\3\2\2\2\u0264"+ + "\u0265\3\2\2\2\u0265\u0090\3\2\2\2\u0266\u0264\3\2\2\2\u0267\u026b\t\6"+ + "\2\2\u0268\u026a\t\5\2\2\u0269\u0268\3\2\2\2\u026a\u026d\3\2\2\2\u026b"+ + "\u0269\3\2\2\2\u026b\u026c\3\2\2\2\u026c\u0092\3\2\2\2\u026d\u026b\3\2"+ + "\2\2\u026e\u026f\7\62\2\2\u026f\u0094\3\2\2\2\u0270\u0276\7)\2\2\u0271"+ + "\u0275\n\7\2\2\u0272\u0273\7)\2\2\u0273\u0275\7)\2\2\u0274\u0271\3\2\2"+ + "\2\u0274\u0272\3\2\2\2\u0275\u0278\3\2\2\2\u0276\u0274\3\2\2\2\u0276\u0277"+ + "\3\2\2\2\u0277\u0279\3\2\2\2\u0278\u0276\3\2\2\2\u0279\u027a\7)\2\2\u027a"+ + "\u0096\3\2\2\2\u027b\u027c\t\b\2\2\u027c\u027d\3\2\2\2\u027d\u027e\bL"+ + "\2\2\u027e\u0098\3\2\2\2\21\2\u0202\u0209\u020c\u0212\u0243\u024e\u0251"+ + "\u0255\u0259\u025e\u0264\u026b\u0274\u0276\3\b\2\2"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.tokens b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.tokens index d6d4462ab..8a595f026 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.tokens +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLLexer.tokens @@ -58,17 +58,21 @@ T__56=57 T__57=58 T__58=59 T__59=60 -INPUT_VARIABLE=61 -PATH_VARIABLE=62 -QUOTED_PATH_VARIABLE=63 -PROP_FORMULA=64 -BOOLEAN_LITERAL=65 -NUMBER_LITERAL=66 -DOUBLE=67 -INT=68 -ZERO=69 -STRING_LITERAL=70 -WS=71 +T__60=61 +T__61=62 +T__62=63 +T__63=64 +INPUT_VARIABLE=65 +PATH_VARIABLE=66 +QUOTED_PATH_VARIABLE=67 +PROP_FORMULA=68 +BOOLEAN_LITERAL=69 +NUMBER_LITERAL=70 +DOUBLE=71 +INT=72 +ZERO=73 +STRING_LITERAL=74 +WS=75 '('=1 ')'=2 'select'=3 @@ -91,42 +95,46 @@ WS=71 'or'=20 'and'=21 'not'=22 -'in'=23 -'between'=24 -'inrange'=25 -'to'=26 -'is'=27 -'null'=28 -'isNull'=29 -'isNotNull'=30 -'notNull'=31 -'empty'=32 -'isEmpty'=33 -'isNotEmpty'=34 -'notEmpty'=35 -'like'=36 -'ilike'=37 -'contains'=38 -'icontains'=39 -'startsWith'=40 -'istartsWith'=41 -'endsWith'=42 -'iendsWith'=43 -'='=44 -'eq'=45 -'>'=46 -'gt'=47 -'>='=48 -'ge'=49 -'gte'=50 -'<'=51 -'lt'=52 -'<='=53 -'le'=54 -'lte'=55 -'<>'=56 -'!='=57 -'ne'=58 -'ieq'=59 -'ine'=60 -'0'=69 +'inOrEmpty'=23 +'in'=24 +'between'=25 +'inrange'=26 +'to'=27 +'is'=28 +'null'=29 +'isNull'=30 +'isNotNull'=31 +'notNull'=32 +'empty'=33 +'isEmpty'=34 +'isNotEmpty'=35 +'notEmpty'=36 +'like'=37 +'ilike'=38 +'contains'=39 +'icontains'=40 +'startsWith'=41 +'istartsWith'=42 +'endsWith'=43 +'iendsWith'=44 +'='=45 +'eq'=46 +'>'=47 +'gt'=48 +'>='=49 +'ge'=50 +'gte'=51 +'<'=52 +'lt'=53 +'<='=54 +'le'=55 +'lte'=56 +'<>'=57 +'!='=58 +'ne'=59 +'ieq'=60 +'ine'=61 +'eqOrNull'=62 +'gtOrNull'=63 +'ltOrNull'=64 +'0'=73 diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLListener.java b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLListener.java index e8e252998..5f9f0121e 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLListener.java +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLListener.java @@ -287,6 +287,16 @@ public interface EQLListener extends ParseTreeListener { * @param ctx the parse tree */ void exitAny_expression(EQLParser.Any_expressionContext ctx); + /** + * Enter a parse tree produced by {@link EQLParser#inOrEmpty_expression}. + * @param ctx the parse tree + */ + void enterInOrEmpty_expression(EQLParser.InOrEmpty_expressionContext ctx); + /** + * Exit a parse tree produced by {@link EQLParser#inOrEmpty_expression}. + * @param ctx the parse tree + */ + void exitInOrEmpty_expression(EQLParser.InOrEmpty_expressionContext ctx); /** * Enter a parse tree produced by {@link EQLParser#in_expression}. * @param ctx the parse tree diff --git a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLParser.java b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLParser.java index 9649ffd87..4b1e1cef5 100644 --- a/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLParser.java +++ b/src/main/java/io/ebeaninternal/server/grammer/antlr/EQLParser.java @@ -36,9 +36,9 @@ public class EQLParser extends Parser { T__38=39, T__39=40, T__40=41, T__41=42, T__42=43, T__43=44, T__44=45, T__45=46, T__46=47, T__47=48, T__48=49, T__49=50, T__50=51, T__51=52, T__52=53, T__53=54, T__54=55, T__55=56, T__56=57, T__57=58, T__58=59, - T__59=60, INPUT_VARIABLE=61, PATH_VARIABLE=62, QUOTED_PATH_VARIABLE=63, - PROP_FORMULA=64, BOOLEAN_LITERAL=65, NUMBER_LITERAL=66, DOUBLE=67, INT=68, - ZERO=69, STRING_LITERAL=70, WS=71; + T__59=60, T__60=61, T__61=62, T__62=63, T__63=64, INPUT_VARIABLE=65, PATH_VARIABLE=66, + QUOTED_PATH_VARIABLE=67, PROP_FORMULA=68, BOOLEAN_LITERAL=69, NUMBER_LITERAL=70, + DOUBLE=71, INT=72, ZERO=73, STRING_LITERAL=74, WS=75; public static final int RULE_select_statement = 0, RULE_select_properties = 1, RULE_select_clause = 2, RULE_distinct = 3, RULE_fetch_clause = 4, RULE_where_clause = 5, RULE_orderby_clause = 6, @@ -49,11 +49,12 @@ public class EQLParser extends Parser { RULE_fetch_option = 19, RULE_fetch_query_option = 20, RULE_fetch_lazy_option = 21, RULE_fetch_batch_size = 22, RULE_conditional_expression = 23, RULE_conditional_term = 24, RULE_conditional_factor = 25, RULE_conditional_primary = 26, RULE_any_expression = 27, - RULE_in_expression = 28, RULE_in_value = 29, RULE_between_expression = 30, - RULE_inrange_expression = 31, RULE_propertyBetween_expression = 32, RULE_isNull_expression = 33, - RULE_isNotNull_expression = 34, RULE_isEmpty_expression = 35, RULE_isNotEmpty_expression = 36, - RULE_like_expression = 37, RULE_like_op = 38, RULE_comparison_expression = 39, - RULE_comparison_operator = 40, RULE_value_expression = 41, RULE_literal = 42; + RULE_inOrEmpty_expression = 28, RULE_in_expression = 29, RULE_in_value = 30, + RULE_between_expression = 31, RULE_inrange_expression = 32, RULE_propertyBetween_expression = 33, + RULE_isNull_expression = 34, RULE_isNotNull_expression = 35, RULE_isEmpty_expression = 36, + RULE_isNotEmpty_expression = 37, RULE_like_expression = 38, RULE_like_op = 39, + RULE_comparison_expression = 40, RULE_comparison_operator = 41, RULE_value_expression = 42, + RULE_literal = 43; private static String[] makeRuleNames() { return new String[] { "select_statement", "select_properties", "select_clause", "distinct", @@ -62,11 +63,11 @@ public class EQLParser extends Parser { "fetch_property_set", "fetch_property_group", "fetch_path_path", "fetch_property", "fetch_query_hint", "fetch_lazy_hint", "fetch_option", "fetch_query_option", "fetch_lazy_option", "fetch_batch_size", "conditional_expression", "conditional_term", - "conditional_factor", "conditional_primary", "any_expression", "in_expression", - "in_value", "between_expression", "inrange_expression", "propertyBetween_expression", - "isNull_expression", "isNotNull_expression", "isEmpty_expression", "isNotEmpty_expression", - "like_expression", "like_op", "comparison_expression", "comparison_operator", - "value_expression", "literal" + "conditional_factor", "conditional_primary", "any_expression", "inOrEmpty_expression", + "in_expression", "in_value", "between_expression", "inrange_expression", + "propertyBetween_expression", "isNull_expression", "isNotNull_expression", + "isEmpty_expression", "isNotEmpty_expression", "like_expression", "like_op", + "comparison_expression", "comparison_operator", "value_expression", "literal" }; } public static final String[] ruleNames = makeRuleNames(); @@ -76,12 +77,13 @@ public class EQLParser extends Parser { null, "'('", "')'", "'select'", "'distinct'", "'where'", "'order'", "'by'", "','", "'nulls'", "'first'", "'last'", "'asc'", "'desc'", "'limit'", "'offset'", "'fetch'", "'+'", "'query'", "'lazy'", "'or'", "'and'", "'not'", - "'in'", "'between'", "'inrange'", "'to'", "'is'", "'null'", "'isNull'", - "'isNotNull'", "'notNull'", "'empty'", "'isEmpty'", "'isNotEmpty'", "'notEmpty'", - "'like'", "'ilike'", "'contains'", "'icontains'", "'startsWith'", "'istartsWith'", - "'endsWith'", "'iendsWith'", "'='", "'eq'", "'>'", "'gt'", "'>='", "'ge'", - "'gte'", "'<'", "'lt'", "'<='", "'le'", "'lte'", "'<>'", "'!='", "'ne'", - "'ieq'", "'ine'", null, null, null, null, null, null, null, null, "'0'" + "'inOrEmpty'", "'in'", "'between'", "'inrange'", "'to'", "'is'", "'null'", + "'isNull'", "'isNotNull'", "'notNull'", "'empty'", "'isEmpty'", "'isNotEmpty'", + "'notEmpty'", "'like'", "'ilike'", "'contains'", "'icontains'", "'startsWith'", + "'istartsWith'", "'endsWith'", "'iendsWith'", "'='", "'eq'", "'>'", "'gt'", + "'>='", "'ge'", "'gte'", "'<'", "'lt'", "'<='", "'le'", "'lte'", "'<>'", + "'!='", "'ne'", "'ieq'", "'ine'", "'eqOrNull'", "'gtOrNull'", "'ltOrNull'", + null, null, null, null, null, null, null, null, "'0'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -92,9 +94,9 @@ public class EQLParser extends Parser { null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, "INPUT_VARIABLE", "PATH_VARIABLE", "QUOTED_PATH_VARIABLE", "PROP_FORMULA", - "BOOLEAN_LITERAL", "NUMBER_LITERAL", "DOUBLE", "INT", "ZERO", "STRING_LITERAL", - "WS" + null, null, null, null, null, "INPUT_VARIABLE", "PATH_VARIABLE", "QUOTED_PATH_VARIABLE", + "PROP_FORMULA", "BOOLEAN_LITERAL", "NUMBER_LITERAL", "DOUBLE", "INT", + "ZERO", "STRING_LITERAL", "WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -189,61 +191,61 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(87); + setState(89); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__2) { { - setState(86); + setState(88); select_clause(); } } - setState(92); + setState(94); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__15) { { { - setState(89); + setState(91); fetch_clause(); } } - setState(94); + setState(96); _errHandler.sync(this); _la = _input.LA(1); } - setState(96); + setState(98); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__4) { { - setState(95); + setState(97); where_clause(); } } - setState(99); + setState(101); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__5) { { - setState(98); + setState(100); orderby_clause(); } } - setState(102); + setState(104); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__13) { { - setState(101); + setState(103); limit_clause(); } } - setState(104); + setState(106); match(EOF); } } @@ -280,17 +282,17 @@ public class EQLParser extends Parser { Select_propertiesContext _localctx = new Select_propertiesContext(_ctx, getState()); enterRule(_localctx, 2, RULE_select_properties); try { - setState(111); + setState(113); _errHandler.sync(this); switch (_input.LA(1)) { case T__0: enterOuterAlt(_localctx, 1); { - setState(106); - match(T__0); - setState(107); - fetch_property_group(); setState(108); + match(T__0); + setState(109); + fetch_property_group(); + setState(110); match(T__1); } break; @@ -299,7 +301,7 @@ public class EQLParser extends Parser { case PROP_FORMULA: enterOuterAlt(_localctx, 2); { - setState(110); + setState(112); fetch_property_group(); } break; @@ -346,19 +348,19 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(113); - match(T__2); setState(115); + match(T__2); + setState(117); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__3) { { - setState(114); + setState(116); distinct(); } } - setState(117); + setState(119); select_properties(); } } @@ -394,7 +396,7 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(119); + setState(121); match(T__3); } } @@ -433,7 +435,7 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(121); + setState(123); fetch_path(); } } @@ -472,9 +474,9 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(123); + setState(125); match(T__4); - setState(124); + setState(126); conditional_expression(); } } @@ -517,25 +519,25 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(126); - match(T__5); - setState(127); - match(T__6); setState(128); + match(T__5); + setState(129); + match(T__6); + setState(130); orderby_property(); - setState(133); + setState(135); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__7) { { { - setState(129); + setState(131); match(T__7); - setState(130); + setState(132); orderby_property(); } } - setState(135); + setState(137); _errHandler.sync(this); _la = _input.LA(1); } @@ -581,24 +583,24 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(136); - match(PATH_VARIABLE); setState(138); + match(PATH_VARIABLE); + setState(140); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__11 || _la==T__12) { { - setState(137); + setState(139); asc_desc(); } } - setState(141); + setState(143); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__8) { { - setState(140); + setState(142); nulls_firstlast(); } } @@ -635,24 +637,24 @@ public class EQLParser extends Parser { Nulls_firstlastContext _localctx = new Nulls_firstlastContext(_ctx, getState()); enterRule(_localctx, 16, RULE_nulls_firstlast); try { - setState(147); + setState(149); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(143); + setState(145); match(T__8); - setState(144); + setState(146); match(T__9); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(145); + setState(147); match(T__8); - setState(146); + setState(148); match(T__10); } break; @@ -691,7 +693,7 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(149); + setState(151); _la = _input.LA(1); if ( !(_la==T__11 || _la==T__12) ) { _errHandler.recoverInline(this); @@ -740,16 +742,16 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(151); + setState(153); match(T__13); - setState(152); - match(NUMBER_LITERAL); setState(154); + match(NUMBER_LITERAL); + setState(156); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__14) { { - setState(153); + setState(155); offset_clause(); } } @@ -789,9 +791,9 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(156); + setState(158); match(T__14); - setState(157); + setState(159); match(NUMBER_LITERAL); } } @@ -837,26 +839,26 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(159); - match(T__15); setState(161); + match(T__15); + setState(163); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__17 || _la==T__18) { { - setState(160); + setState(162); fetch_option(); } } - setState(163); - fetch_path_path(); setState(165); + fetch_path_path(); + setState(167); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__0) { { - setState(164); + setState(166); fetch_property_set(); } } @@ -898,11 +900,11 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(167); - match(T__0); - setState(168); - fetch_property_group(); setState(169); + match(T__0); + setState(170); + fetch_property_group(); + setState(171); match(T__1); } } @@ -945,21 +947,21 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(171); + setState(173); fetch_property(); - setState(176); + setState(178); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__7) { { { - setState(172); + setState(174); match(T__7); - setState(173); + setState(175); fetch_property(); } } - setState(178); + setState(180); _errHandler.sync(this); _la = _input.LA(1); } @@ -1000,7 +1002,7 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(179); + setState(181); _la = _input.LA(1); if ( !(_la==PATH_VARIABLE || _la==QUOTED_PATH_VARIABLE) ) { _errHandler.recoverInline(this); @@ -1050,34 +1052,34 @@ public class EQLParser extends Parser { Fetch_propertyContext _localctx = new Fetch_propertyContext(_ctx, getState()); enterRule(_localctx, 32, RULE_fetch_property); try { - setState(185); + setState(187); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(181); + setState(183); match(PATH_VARIABLE); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(182); + setState(184); fetch_query_hint(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(183); + setState(185); fetch_lazy_hint(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(184); + setState(186); match(PROP_FORMULA); } break; @@ -1118,9 +1120,9 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(187); + setState(189); match(T__16); - setState(188); + setState(190); fetch_query_option(); } } @@ -1159,9 +1161,9 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(190); + setState(192); match(T__16); - setState(191); + setState(193); fetch_lazy_option(); } } @@ -1201,20 +1203,20 @@ public class EQLParser extends Parser { Fetch_optionContext _localctx = new Fetch_optionContext(_ctx, getState()); enterRule(_localctx, 38, RULE_fetch_option); try { - setState(195); + setState(197); _errHandler.sync(this); switch (_input.LA(1)) { case T__17: enterOuterAlt(_localctx, 1); { - setState(193); + setState(195); fetch_query_option(); } break; case T__18: enterOuterAlt(_localctx, 2); { - setState(194); + setState(196); fetch_lazy_option(); } break; @@ -1258,14 +1260,14 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(197); - match(T__17); setState(199); + match(T__17); + setState(201); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__0) { { - setState(198); + setState(200); fetch_batch_size(); } } @@ -1308,14 +1310,14 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(201); - match(T__18); setState(203); + match(T__18); + setState(205); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__0) { { - setState(202); + setState(204); fetch_batch_size(); } } @@ -1355,11 +1357,11 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(205); - match(T__0); - setState(206); - match(NUMBER_LITERAL); setState(207); + match(T__0); + setState(208); + match(NUMBER_LITERAL); + setState(209); match(T__1); } } @@ -1402,21 +1404,21 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(209); + setState(211); conditional_term(); - setState(214); + setState(216); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__19) { { { - setState(210); + setState(212); match(T__19); - setState(211); + setState(213); conditional_term(); } } - setState(216); + setState(218); _errHandler.sync(this); _la = _input.LA(1); } @@ -1461,21 +1463,21 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(217); + setState(219); conditional_factor(); - setState(222); + setState(224); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__20) { { { - setState(218); + setState(220); match(T__20); - setState(219); + setState(221); conditional_factor(); } } - setState(224); + setState(226); _errHandler.sync(this); _la = _input.LA(1); } @@ -1517,17 +1519,17 @@ public class EQLParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(226); + setState(228); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__21) { { - setState(225); + setState(227); match(T__21); } } - setState(228); + setState(230); conditional_primary(); } } @@ -1567,24 +1569,24 @@ public class EQLParser extends Parser { Conditional_primaryContext _localctx = new Conditional_primaryContext(_ctx, getState()); enterRule(_localctx, 52, RULE_conditional_primary); try { - setState(235); + setState(237); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(230); + setState(232); any_expression(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(231); - match(T__0); - setState(232); - conditional_expression(); setState(233); + match(T__0); + setState(234); + conditional_expression(); + setState(235); match(T__1); } break; @@ -1617,6 +1619,9 @@ public class EQLParser extends Parser { public PropertyBetween_expressionContext propertyBetween_expression() { return getRuleContext(PropertyBetween_expressionContext.class,0); } + public InOrEmpty_expressionContext inOrEmpty_expression() { + return getRuleContext(InOrEmpty_expressionContext.class,0); + } public In_expressionContext in_expression() { return getRuleContext(In_expressionContext.class,0); } @@ -1653,87 +1658,94 @@ public class EQLParser extends Parser { Any_expressionContext _localctx = new Any_expressionContext(_ctx, getState()); enterRule(_localctx, 54, RULE_any_expression); try { - setState(251); + setState(254); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(237); + setState(239); comparison_expression(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(238); + setState(240); like_expression(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(239); + setState(241); inrange_expression(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(240); + setState(242); between_expression(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(241); + setState(243); propertyBetween_expression(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(242); - in_expression(); + setState(244); + inOrEmpty_expression(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(243); - isNull_expression(); + setState(245); + in_expression(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(244); - isNotNull_expression(); + setState(246); + isNull_expression(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(245); - isEmpty_expression(); + setState(247); + isNotNull_expression(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(246); - isNotEmpty_expression(); + setState(248); + isEmpty_expression(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(247); - match(T__0); - setState(248); - any_expression(); setState(249); + isNotEmpty_expression(); + } + break; + case 12: + enterOuterAlt(_localctx, 12); + { + setState(250); + match(T__0); + setState(251); + any_expression(); + setState(252); match(T__1); } break; @@ -1750,6 +1762,50 @@ public class EQLParser extends Parser { return _localctx; } + public static class InOrEmpty_expressionContext extends ParserRuleContext { + public TerminalNode PATH_VARIABLE() { return getToken(EQLParser.PATH_VARIABLE, 0); } + public In_valueContext in_value() { + return getRuleContext(In_valueContext.class,0); + } + public InOrEmpty_expressionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_inOrEmpty_expression; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EQLListener ) ((EQLListener)listener).enterInOrEmpty_expression(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EQLListener ) ((EQLListener)listener).exitInOrEmpty_expression(this); + } + } + + public final InOrEmpty_expressionContext inOrEmpty_expression() throws RecognitionException { + InOrEmpty_expressionContext _localctx = new InOrEmpty_expressionContext(_ctx, getState()); + enterRule(_localctx, 56, RULE_inOrEmpty_expression); + try { + enterOuterAlt(_localctx, 1); + { + setState(256); + match(PATH_VARIABLE); + setState(257); + match(T__22); + setState(258); + in_value(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + public static class In_expressionContext extends ParserRuleContext { public TerminalNode PATH_VARIABLE() { return getToken(EQLParser.PATH_VARIABLE, 0); } public In_valueContext in_value() { @@ -1771,15 +1827,15 @@ public class EQLParser extends Parser { public final In_expressionContext in_expression() throws RecognitionException { In_expressionContext _localctx = new In_expressionContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_in_expression); + enterRule(_localctx, 58, RULE_in_expression); try { enterOuterAlt(_localctx, 1); { - setState(253); + setState(260); match(PATH_VARIABLE); - setState(254); - match(T__22); - setState(255); + setState(261); + match(T__23); + setState(262); in_value(); } } @@ -1818,43 +1874,43 @@ public class EQLParser extends Parser { public final In_valueContext in_value() throws RecognitionException { In_valueContext _localctx = new In_valueContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_in_value); + enterRule(_localctx, 60, RULE_in_value); int _la; try { - setState(269); + setState(276); _errHandler.sync(this); switch (_input.LA(1)) { case INPUT_VARIABLE: enterOuterAlt(_localctx, 1); { - setState(257); + setState(264); match(INPUT_VARIABLE); } break; case T__0: enterOuterAlt(_localctx, 2); { - setState(258); + setState(265); match(T__0); - setState(259); + setState(266); value_expression(); - setState(264); + setState(271); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__7) { { { - setState(260); + setState(267); match(T__7); - setState(261); + setState(268); value_expression(); } } - setState(266); + setState(273); _errHandler.sync(this); _la = _input.LA(1); } - setState(267); + setState(274); match(T__1); } break; @@ -1897,19 +1953,19 @@ public class EQLParser extends Parser { public final Between_expressionContext between_expression() throws RecognitionException { Between_expressionContext _localctx = new Between_expressionContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_between_expression); + enterRule(_localctx, 62, RULE_between_expression); try { enterOuterAlt(_localctx, 1); { - setState(271); + setState(278); match(PATH_VARIABLE); - setState(272); - match(T__23); - setState(273); + setState(279); + match(T__24); + setState(280); value_expression(); - setState(274); + setState(281); match(T__20); - setState(275); + setState(282); value_expression(); } } @@ -1948,19 +2004,19 @@ public class EQLParser extends Parser { public final Inrange_expressionContext inrange_expression() throws RecognitionException { Inrange_expressionContext _localctx = new Inrange_expressionContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_inrange_expression); + enterRule(_localctx, 64, RULE_inrange_expression); try { enterOuterAlt(_localctx, 1); { - setState(277); + setState(284); match(PATH_VARIABLE); - setState(278); - match(T__24); - setState(279); - value_expression(); - setState(280); + setState(285); match(T__25); - setState(281); + setState(286); + value_expression(); + setState(287); + match(T__26); + setState(288); value_expression(); } } @@ -1999,19 +2055,19 @@ public class EQLParser extends Parser { public final PropertyBetween_expressionContext propertyBetween_expression() throws RecognitionException { PropertyBetween_expressionContext _localctx = new PropertyBetween_expressionContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_propertyBetween_expression); + enterRule(_localctx, 66, RULE_propertyBetween_expression); try { enterOuterAlt(_localctx, 1); { - setState(283); + setState(290); value_expression(); - setState(284); - match(T__23); - setState(285); + setState(291); + match(T__24); + setState(292); match(PATH_VARIABLE); - setState(286); + setState(293); match(T__20); - setState(287); + setState(294); match(PATH_VARIABLE); } } @@ -2044,29 +2100,29 @@ public class EQLParser extends Parser { public final IsNull_expressionContext isNull_expression() throws RecognitionException { IsNull_expressionContext _localctx = new IsNull_expressionContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_isNull_expression); + enterRule(_localctx, 68, RULE_isNull_expression); try { - setState(294); + setState(301); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(289); + setState(296); match(PATH_VARIABLE); - setState(290); - match(T__26); - setState(291); + setState(297); match(T__27); + setState(298); + match(T__28); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(292); + setState(299); match(PATH_VARIABLE); - setState(293); - match(T__28); + setState(300); + match(T__29); } break; } @@ -2100,40 +2156,40 @@ public class EQLParser extends Parser { public final IsNotNull_expressionContext isNotNull_expression() throws RecognitionException { IsNotNull_expressionContext _localctx = new IsNotNull_expressionContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_isNotNull_expression); + enterRule(_localctx, 70, RULE_isNotNull_expression); try { - setState(304); + setState(311); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(296); + setState(303); match(PATH_VARIABLE); - setState(297); - match(T__26); - setState(298); - match(T__21); - setState(299); + setState(304); match(T__27); + setState(305); + match(T__21); + setState(306); + match(T__28); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(300); + setState(307); match(PATH_VARIABLE); - setState(301); - match(T__29); + setState(308); + match(T__30); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(302); + setState(309); match(PATH_VARIABLE); - setState(303); - match(T__30); + setState(310); + match(T__31); } break; } @@ -2167,29 +2223,29 @@ public class EQLParser extends Parser { public final IsEmpty_expressionContext isEmpty_expression() throws RecognitionException { IsEmpty_expressionContext _localctx = new IsEmpty_expressionContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_isEmpty_expression); + enterRule(_localctx, 72, RULE_isEmpty_expression); try { - setState(311); + setState(318); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(306); + setState(313); match(PATH_VARIABLE); - setState(307); - match(T__26); - setState(308); - match(T__31); + setState(314); + match(T__27); + setState(315); + match(T__32); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(309); + setState(316); match(PATH_VARIABLE); - setState(310); - match(T__32); + setState(317); + match(T__33); } break; } @@ -2223,40 +2279,40 @@ public class EQLParser extends Parser { public final IsNotEmpty_expressionContext isNotEmpty_expression() throws RecognitionException { IsNotEmpty_expressionContext _localctx = new IsNotEmpty_expressionContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_isNotEmpty_expression); + enterRule(_localctx, 74, RULE_isNotEmpty_expression); try { - setState(321); + setState(328); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(313); + setState(320); match(PATH_VARIABLE); - setState(314); - match(T__26); - setState(315); + setState(321); + match(T__27); + setState(322); match(T__21); - setState(316); - match(T__31); + setState(323); + match(T__32); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(317); + setState(324); match(PATH_VARIABLE); - setState(318); - match(T__33); + setState(325); + match(T__34); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(319); + setState(326); match(PATH_VARIABLE); - setState(320); - match(T__34); + setState(327); + match(T__35); } break; } @@ -2296,15 +2352,15 @@ public class EQLParser extends Parser { public final Like_expressionContext like_expression() throws RecognitionException { Like_expressionContext _localctx = new Like_expressionContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_like_expression); + enterRule(_localctx, 76, RULE_like_expression); try { enterOuterAlt(_localctx, 1); { - setState(323); + setState(330); match(PATH_VARIABLE); - setState(324); + setState(331); like_op(); - setState(325); + setState(332); value_expression(); } } @@ -2336,14 +2392,14 @@ public class EQLParser extends Parser { public final Like_opContext like_op() throws RecognitionException { Like_opContext _localctx = new Like_opContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_like_op); + enterRule(_localctx, 78, RULE_like_op); int _la; try { enterOuterAlt(_localctx, 1); { - setState(327); + setState(334); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42))) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__39) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2388,19 +2444,19 @@ public class EQLParser extends Parser { public final Comparison_expressionContext comparison_expression() throws RecognitionException { Comparison_expressionContext _localctx = new Comparison_expressionContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_comparison_expression); + enterRule(_localctx, 80, RULE_comparison_expression); try { - setState(337); + setState(344); _errHandler.sync(this); switch (_input.LA(1)) { case PATH_VARIABLE: enterOuterAlt(_localctx, 1); { - setState(329); + setState(336); match(PATH_VARIABLE); - setState(330); + setState(337); comparison_operator(); - setState(331); + setState(338); value_expression(); } break; @@ -2410,11 +2466,11 @@ public class EQLParser extends Parser { case STRING_LITERAL: enterOuterAlt(_localctx, 2); { - setState(333); + setState(340); value_expression(); - setState(334); + setState(341); comparison_operator(); - setState(335); + setState(342); match(PATH_VARIABLE); } break; @@ -2450,14 +2506,14 @@ public class EQLParser extends Parser { public final Comparison_operatorContext comparison_operator() throws RecognitionException { Comparison_operatorContext _localctx = new Comparison_operatorContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_comparison_operator); + enterRule(_localctx, 82, RULE_comparison_operator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(339); + setState(346); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59))) != 0)) ) { + if ( !(((((_la - 45)) & ~0x3f) == 0 && ((1L << (_la - 45)) & ((1L << (T__44 - 45)) | (1L << (T__45 - 45)) | (1L << (T__46 - 45)) | (1L << (T__47 - 45)) | (1L << (T__48 - 45)) | (1L << (T__49 - 45)) | (1L << (T__50 - 45)) | (1L << (T__51 - 45)) | (1L << (T__52 - 45)) | (1L << (T__53 - 45)) | (1L << (T__54 - 45)) | (1L << (T__55 - 45)) | (1L << (T__56 - 45)) | (1L << (T__57 - 45)) | (1L << (T__58 - 45)) | (1L << (T__59 - 45)) | (1L << (T__60 - 45)) | (1L << (T__61 - 45)) | (1L << (T__62 - 45)) | (1L << (T__63 - 45)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2499,9 +2555,9 @@ public class EQLParser extends Parser { public final Value_expressionContext value_expression() throws RecognitionException { Value_expressionContext _localctx = new Value_expressionContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_value_expression); + enterRule(_localctx, 84, RULE_value_expression); try { - setState(343); + setState(350); _errHandler.sync(this); switch (_input.LA(1)) { case BOOLEAN_LITERAL: @@ -2509,14 +2565,14 @@ public class EQLParser extends Parser { case STRING_LITERAL: enterOuterAlt(_localctx, 1); { - setState(341); + setState(348); literal(); } break; case INPUT_VARIABLE: enterOuterAlt(_localctx, 2); { - setState(342); + setState(349); match(INPUT_VARIABLE); } break; @@ -2555,14 +2611,14 @@ public class EQLParser extends Parser { public final LiteralContext literal() throws RecognitionException { LiteralContext _localctx = new LiteralContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_literal); + enterRule(_localctx, 86, RULE_literal); int _la; try { enterOuterAlt(_localctx, 1); { - setState(345); + setState(352); _la = _input.LA(1); - if ( !(((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (BOOLEAN_LITERAL - 65)) | (1L << (NUMBER_LITERAL - 65)) | (1L << (STRING_LITERAL - 65)))) != 0)) ) { + if ( !(((((_la - 69)) & ~0x3f) == 0 && ((1L << (_la - 69)) & ((1L << (BOOLEAN_LITERAL - 69)) | (1L << (NUMBER_LITERAL - 69)) | (1L << (STRING_LITERAL - 69)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -2584,122 +2640,124 @@ public class EQLParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3I\u015e\4\2\t\2\4"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3M\u0165\4\2\t\2\4"+ "\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+ "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ "\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+ "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+ - ",\t,\3\2\5\2Z\n\2\3\2\7\2]\n\2\f\2\16\2`\13\2\3\2\5\2c\n\2\3\2\5\2f\n"+ - "\2\3\2\5\2i\n\2\3\2\3\2\3\3\3\3\3\3\3\3\3\3\5\3r\n\3\3\4\3\4\5\4v\n\4"+ - "\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\7\b\u0086\n\b"+ - "\f\b\16\b\u0089\13\b\3\t\3\t\5\t\u008d\n\t\3\t\5\t\u0090\n\t\3\n\3\n\3"+ - "\n\3\n\5\n\u0096\n\n\3\13\3\13\3\f\3\f\3\f\5\f\u009d\n\f\3\r\3\r\3\r\3"+ - "\16\3\16\5\16\u00a4\n\16\3\16\3\16\5\16\u00a8\n\16\3\17\3\17\3\17\3\17"+ - "\3\20\3\20\3\20\7\20\u00b1\n\20\f\20\16\20\u00b4\13\20\3\21\3\21\3\22"+ - "\3\22\3\22\3\22\5\22\u00bc\n\22\3\23\3\23\3\23\3\24\3\24\3\24\3\25\3\25"+ - "\5\25\u00c6\n\25\3\26\3\26\5\26\u00ca\n\26\3\27\3\27\5\27\u00ce\n\27\3"+ - "\30\3\30\3\30\3\30\3\31\3\31\3\31\7\31\u00d7\n\31\f\31\16\31\u00da\13"+ - "\31\3\32\3\32\3\32\7\32\u00df\n\32\f\32\16\32\u00e2\13\32\3\33\5\33\u00e5"+ - "\n\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\5\34\u00ee\n\34\3\35\3\35\3\35"+ - "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u00fe\n\35"+ - "\3\36\3\36\3\36\3\36\3\37\3\37\3\37\3\37\3\37\7\37\u0109\n\37\f\37\16"+ - "\37\u010c\13\37\3\37\3\37\5\37\u0110\n\37\3 \3 \3 \3 \3 \3 \3!\3!\3!\3"+ - "!\3!\3!\3\"\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\5#\u0129\n#\3$\3$\3$\3"+ - "$\3$\3$\3$\3$\5$\u0133\n$\3%\3%\3%\3%\3%\5%\u013a\n%\3&\3&\3&\3&\3&\3"+ - "&\3&\3&\5&\u0144\n&\3\'\3\'\3\'\3\'\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\5)\u0154"+ - "\n)\3*\3*\3+\3+\5+\u015a\n+\3,\3,\3,\2\2-\2\4\6\b\n\f\16\20\22\24\26\30"+ - "\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTV\2\7\3\2\16\17\3\2@A\3\2"+ - "&-\3\2.>\4\2CDHH\2\u015f\2Y\3\2\2\2\4q\3\2\2\2\6s\3\2\2\2\by\3\2\2\2\n"+ - "{\3\2\2\2\f}\3\2\2\2\16\u0080\3\2\2\2\20\u008a\3\2\2\2\22\u0095\3\2\2"+ - "\2\24\u0097\3\2\2\2\26\u0099\3\2\2\2\30\u009e\3\2\2\2\32\u00a1\3\2\2\2"+ - "\34\u00a9\3\2\2\2\36\u00ad\3\2\2\2 \u00b5\3\2\2\2\"\u00bb\3\2\2\2$\u00bd"+ - "\3\2\2\2&\u00c0\3\2\2\2(\u00c5\3\2\2\2*\u00c7\3\2\2\2,\u00cb\3\2\2\2."+ - "\u00cf\3\2\2\2\60\u00d3\3\2\2\2\62\u00db\3\2\2\2\64\u00e4\3\2\2\2\66\u00ed"+ - "\3\2\2\28\u00fd\3\2\2\2:\u00ff\3\2\2\2<\u010f\3\2\2\2>\u0111\3\2\2\2@"+ - "\u0117\3\2\2\2B\u011d\3\2\2\2D\u0128\3\2\2\2F\u0132\3\2\2\2H\u0139\3\2"+ - "\2\2J\u0143\3\2\2\2L\u0145\3\2\2\2N\u0149\3\2\2\2P\u0153\3\2\2\2R\u0155"+ - "\3\2\2\2T\u0159\3\2\2\2V\u015b\3\2\2\2XZ\5\6\4\2YX\3\2\2\2YZ\3\2\2\2Z"+ - "^\3\2\2\2[]\5\n\6\2\\[\3\2\2\2]`\3\2\2\2^\\\3\2\2\2^_\3\2\2\2_b\3\2\2"+ - "\2`^\3\2\2\2ac\5\f\7\2ba\3\2\2\2bc\3\2\2\2ce\3\2\2\2df\5\16\b\2ed\3\2"+ - "\2\2ef\3\2\2\2fh\3\2\2\2gi\5\26\f\2hg\3\2\2\2hi\3\2\2\2ij\3\2\2\2jk\7"+ - "\2\2\3k\3\3\2\2\2lm\7\3\2\2mn\5\36\20\2no\7\4\2\2or\3\2\2\2pr\5\36\20"+ - "\2ql\3\2\2\2qp\3\2\2\2r\5\3\2\2\2su\7\5\2\2tv\5\b\5\2ut\3\2\2\2uv\3\2"+ - "\2\2vw\3\2\2\2wx\5\4\3\2x\7\3\2\2\2yz\7\6\2\2z\t\3\2\2\2{|\5\32\16\2|"+ - "\13\3\2\2\2}~\7\7\2\2~\177\5\60\31\2\177\r\3\2\2\2\u0080\u0081\7\b\2\2"+ - "\u0081\u0082\7\t\2\2\u0082\u0087\5\20\t\2\u0083\u0084\7\n\2\2\u0084\u0086"+ - "\5\20\t\2\u0085\u0083\3\2\2\2\u0086\u0089\3\2\2\2\u0087\u0085\3\2\2\2"+ - "\u0087\u0088\3\2\2\2\u0088\17\3\2\2\2\u0089\u0087\3\2\2\2\u008a\u008c"+ - "\7@\2\2\u008b\u008d\5\24\13\2\u008c\u008b\3\2\2\2\u008c\u008d\3\2\2\2"+ - "\u008d\u008f\3\2\2\2\u008e\u0090\5\22\n\2\u008f\u008e\3\2\2\2\u008f\u0090"+ - "\3\2\2\2\u0090\21\3\2\2\2\u0091\u0092\7\13\2\2\u0092\u0096\7\f\2\2\u0093"+ - "\u0094\7\13\2\2\u0094\u0096\7\r\2\2\u0095\u0091\3\2\2\2\u0095\u0093\3"+ - "\2\2\2\u0096\23\3\2\2\2\u0097\u0098\t\2\2\2\u0098\25\3\2\2\2\u0099\u009a"+ - "\7\20\2\2\u009a\u009c\7D\2\2\u009b\u009d\5\30\r\2\u009c\u009b\3\2\2\2"+ - "\u009c\u009d\3\2\2\2\u009d\27\3\2\2\2\u009e\u009f\7\21\2\2\u009f\u00a0"+ - "\7D\2\2\u00a0\31\3\2\2\2\u00a1\u00a3\7\22\2\2\u00a2\u00a4\5(\25\2\u00a3"+ - "\u00a2\3\2\2\2\u00a3\u00a4\3\2\2\2\u00a4\u00a5\3\2\2\2\u00a5\u00a7\5 "+ - "\21\2\u00a6\u00a8\5\34\17\2\u00a7\u00a6\3\2\2\2\u00a7\u00a8\3\2\2\2\u00a8"+ - "\33\3\2\2\2\u00a9\u00aa\7\3\2\2\u00aa\u00ab\5\36\20\2\u00ab\u00ac\7\4"+ - "\2\2\u00ac\35\3\2\2\2\u00ad\u00b2\5\"\22\2\u00ae\u00af\7\n\2\2\u00af\u00b1"+ - "\5\"\22\2\u00b0\u00ae\3\2\2\2\u00b1\u00b4\3\2\2\2\u00b2\u00b0\3\2\2\2"+ - "\u00b2\u00b3\3\2\2\2\u00b3\37\3\2\2\2\u00b4\u00b2\3\2\2\2\u00b5\u00b6"+ - "\t\3\2\2\u00b6!\3\2\2\2\u00b7\u00bc\7@\2\2\u00b8\u00bc\5$\23\2\u00b9\u00bc"+ - "\5&\24\2\u00ba\u00bc\7B\2\2\u00bb\u00b7\3\2\2\2\u00bb\u00b8\3\2\2\2\u00bb"+ - "\u00b9\3\2\2\2\u00bb\u00ba\3\2\2\2\u00bc#\3\2\2\2\u00bd\u00be\7\23\2\2"+ - "\u00be\u00bf\5*\26\2\u00bf%\3\2\2\2\u00c0\u00c1\7\23\2\2\u00c1\u00c2\5"+ - ",\27\2\u00c2\'\3\2\2\2\u00c3\u00c6\5*\26\2\u00c4\u00c6\5,\27\2\u00c5\u00c3"+ - "\3\2\2\2\u00c5\u00c4\3\2\2\2\u00c6)\3\2\2\2\u00c7\u00c9\7\24\2\2\u00c8"+ - "\u00ca\5.\30\2\u00c9\u00c8\3\2\2\2\u00c9\u00ca\3\2\2\2\u00ca+\3\2\2\2"+ - "\u00cb\u00cd\7\25\2\2\u00cc\u00ce\5.\30\2\u00cd\u00cc\3\2\2\2\u00cd\u00ce"+ - "\3\2\2\2\u00ce-\3\2\2\2\u00cf\u00d0\7\3\2\2\u00d0\u00d1\7D\2\2\u00d1\u00d2"+ - "\7\4\2\2\u00d2/\3\2\2\2\u00d3\u00d8\5\62\32\2\u00d4\u00d5\7\26\2\2\u00d5"+ - "\u00d7\5\62\32\2\u00d6\u00d4\3\2\2\2\u00d7\u00da\3\2\2\2\u00d8\u00d6\3"+ - "\2\2\2\u00d8\u00d9\3\2\2\2\u00d9\61\3\2\2\2\u00da\u00d8\3\2\2\2\u00db"+ - "\u00e0\5\64\33\2\u00dc\u00dd\7\27\2\2\u00dd\u00df\5\64\33\2\u00de\u00dc"+ - "\3\2\2\2\u00df\u00e2\3\2\2\2\u00e0\u00de\3\2\2\2\u00e0\u00e1\3\2\2\2\u00e1"+ - "\63\3\2\2\2\u00e2\u00e0\3\2\2\2\u00e3\u00e5\7\30\2\2\u00e4\u00e3\3\2\2"+ - "\2\u00e4\u00e5\3\2\2\2\u00e5\u00e6\3\2\2\2\u00e6\u00e7\5\66\34\2\u00e7"+ - "\65\3\2\2\2\u00e8\u00ee\58\35\2\u00e9\u00ea\7\3\2\2\u00ea\u00eb\5\60\31"+ - "\2\u00eb\u00ec\7\4\2\2\u00ec\u00ee\3\2\2\2\u00ed\u00e8\3\2\2\2\u00ed\u00e9"+ - "\3\2\2\2\u00ee\67\3\2\2\2\u00ef\u00fe\5P)\2\u00f0\u00fe\5L\'\2\u00f1\u00fe"+ - "\5@!\2\u00f2\u00fe\5> \2\u00f3\u00fe\5B\"\2\u00f4\u00fe\5:\36\2\u00f5"+ - "\u00fe\5D#\2\u00f6\u00fe\5F$\2\u00f7\u00fe\5H%\2\u00f8\u00fe\5J&\2\u00f9"+ - "\u00fa\7\3\2\2\u00fa\u00fb\58\35\2\u00fb\u00fc\7\4\2\2\u00fc\u00fe\3\2"+ - "\2\2\u00fd\u00ef\3\2\2\2\u00fd\u00f0\3\2\2\2\u00fd\u00f1\3\2\2\2\u00fd"+ - "\u00f2\3\2\2\2\u00fd\u00f3\3\2\2\2\u00fd\u00f4\3\2\2\2\u00fd\u00f5\3\2"+ - "\2\2\u00fd\u00f6\3\2\2\2\u00fd\u00f7\3\2\2\2\u00fd\u00f8\3\2\2\2\u00fd"+ - "\u00f9\3\2\2\2\u00fe9\3\2\2\2\u00ff\u0100\7@\2\2\u0100\u0101\7\31\2\2"+ - "\u0101\u0102\5<\37\2\u0102;\3\2\2\2\u0103\u0110\7?\2\2\u0104\u0105\7\3"+ - "\2\2\u0105\u010a\5T+\2\u0106\u0107\7\n\2\2\u0107\u0109\5T+\2\u0108\u0106"+ - "\3\2\2\2\u0109\u010c\3\2\2\2\u010a\u0108\3\2\2\2\u010a\u010b\3\2\2\2\u010b"+ - "\u010d\3\2\2\2\u010c\u010a\3\2\2\2\u010d\u010e\7\4\2\2\u010e\u0110\3\2"+ - "\2\2\u010f\u0103\3\2\2\2\u010f\u0104\3\2\2\2\u0110=\3\2\2\2\u0111\u0112"+ - "\7@\2\2\u0112\u0113\7\32\2\2\u0113\u0114\5T+\2\u0114\u0115\7\27\2\2\u0115"+ - "\u0116\5T+\2\u0116?\3\2\2\2\u0117\u0118\7@\2\2\u0118\u0119\7\33\2\2\u0119"+ - "\u011a\5T+\2\u011a\u011b\7\34\2\2\u011b\u011c\5T+\2\u011cA\3\2\2\2\u011d"+ - "\u011e\5T+\2\u011e\u011f\7\32\2\2\u011f\u0120\7@\2\2\u0120\u0121\7\27"+ - "\2\2\u0121\u0122\7@\2\2\u0122C\3\2\2\2\u0123\u0124\7@\2\2\u0124\u0125"+ - "\7\35\2\2\u0125\u0129\7\36\2\2\u0126\u0127\7@\2\2\u0127\u0129\7\37\2\2"+ - "\u0128\u0123\3\2\2\2\u0128\u0126\3\2\2\2\u0129E\3\2\2\2\u012a\u012b\7"+ - "@\2\2\u012b\u012c\7\35\2\2\u012c\u012d\7\30\2\2\u012d\u0133\7\36\2\2\u012e"+ - "\u012f\7@\2\2\u012f\u0133\7 \2\2\u0130\u0131\7@\2\2\u0131\u0133\7!\2\2"+ - "\u0132\u012a\3\2\2\2\u0132\u012e\3\2\2\2\u0132\u0130\3\2\2\2\u0133G\3"+ - "\2\2\2\u0134\u0135\7@\2\2\u0135\u0136\7\35\2\2\u0136\u013a\7\"\2\2\u0137"+ - "\u0138\7@\2\2\u0138\u013a\7#\2\2\u0139\u0134\3\2\2\2\u0139\u0137\3\2\2"+ - "\2\u013aI\3\2\2\2\u013b\u013c\7@\2\2\u013c\u013d\7\35\2\2\u013d\u013e"+ - "\7\30\2\2\u013e\u0144\7\"\2\2\u013f\u0140\7@\2\2\u0140\u0144\7$\2\2\u0141"+ - "\u0142\7@\2\2\u0142\u0144\7%\2\2\u0143\u013b\3\2\2\2\u0143\u013f\3\2\2"+ - "\2\u0143\u0141\3\2\2\2\u0144K\3\2\2\2\u0145\u0146\7@\2\2\u0146\u0147\5"+ - "N(\2\u0147\u0148\5T+\2\u0148M\3\2\2\2\u0149\u014a\t\4\2\2\u014aO\3\2\2"+ - "\2\u014b\u014c\7@\2\2\u014c\u014d\5R*\2\u014d\u014e\5T+\2\u014e\u0154"+ - "\3\2\2\2\u014f\u0150\5T+\2\u0150\u0151\5R*\2\u0151\u0152\7@\2\2\u0152"+ - "\u0154\3\2\2\2\u0153\u014b\3\2\2\2\u0153\u014f\3\2\2\2\u0154Q\3\2\2\2"+ - "\u0155\u0156\t\5\2\2\u0156S\3\2\2\2\u0157\u015a\5V,\2\u0158\u015a\7?\2"+ - "\2\u0159\u0157\3\2\2\2\u0159\u0158\3\2\2\2\u015aU\3\2\2\2\u015b\u015c"+ - "\t\6\2\2\u015cW\3\2\2\2\"Y^behqu\u0087\u008c\u008f\u0095\u009c\u00a3\u00a7"+ - "\u00b2\u00bb\u00c5\u00c9\u00cd\u00d8\u00e0\u00e4\u00ed\u00fd\u010a\u010f"+ - "\u0128\u0132\u0139\u0143\u0153\u0159"; + ",\t,\4-\t-\3\2\5\2\\\n\2\3\2\7\2_\n\2\f\2\16\2b\13\2\3\2\5\2e\n\2\3\2"+ + "\5\2h\n\2\3\2\5\2k\n\2\3\2\3\2\3\3\3\3\3\3\3\3\3\3\5\3t\n\3\3\4\3\4\5"+ + "\4x\n\4\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3\b\7\b\u0088"+ + "\n\b\f\b\16\b\u008b\13\b\3\t\3\t\5\t\u008f\n\t\3\t\5\t\u0092\n\t\3\n\3"+ + "\n\3\n\3\n\5\n\u0098\n\n\3\13\3\13\3\f\3\f\3\f\5\f\u009f\n\f\3\r\3\r\3"+ + "\r\3\16\3\16\5\16\u00a6\n\16\3\16\3\16\5\16\u00aa\n\16\3\17\3\17\3\17"+ + "\3\17\3\20\3\20\3\20\7\20\u00b3\n\20\f\20\16\20\u00b6\13\20\3\21\3\21"+ + "\3\22\3\22\3\22\3\22\5\22\u00be\n\22\3\23\3\23\3\23\3\24\3\24\3\24\3\25"+ + "\3\25\5\25\u00c8\n\25\3\26\3\26\5\26\u00cc\n\26\3\27\3\27\5\27\u00d0\n"+ + "\27\3\30\3\30\3\30\3\30\3\31\3\31\3\31\7\31\u00d9\n\31\f\31\16\31\u00dc"+ + "\13\31\3\32\3\32\3\32\7\32\u00e1\n\32\f\32\16\32\u00e4\13\32\3\33\5\33"+ + "\u00e7\n\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\5\34\u00f0\n\34\3\35\3"+ + "\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5"+ + "\35\u0101\n\35\3\36\3\36\3\36\3\36\3\37\3\37\3\37\3\37\3 \3 \3 \3 \3 "+ + "\7 \u0110\n \f \16 \u0113\13 \3 \3 \5 \u0117\n \3!\3!\3!\3!\3!\3!\3\""+ + "\3\"\3\"\3\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3$\3$\3$\3$\3$\5$\u0130\n$\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\5%\u013a\n%\3&\3&\3&\3&\3&\5&\u0141\n&\3\'\3\'\3\'"+ + "\3\'\3\'\3\'\3\'\3\'\5\'\u014b\n\'\3(\3(\3(\3(\3)\3)\3*\3*\3*\3*\3*\3"+ + "*\3*\3*\5*\u015b\n*\3+\3+\3,\3,\5,\u0161\n,\3-\3-\3-\2\2.\2\4\6\b\n\f"+ + "\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRTVX\2\7"+ + "\3\2\16\17\3\2DE\3\2\'.\3\2/B\4\2GHLL\2\u0166\2[\3\2\2\2\4s\3\2\2\2\6"+ + "u\3\2\2\2\b{\3\2\2\2\n}\3\2\2\2\f\177\3\2\2\2\16\u0082\3\2\2\2\20\u008c"+ + "\3\2\2\2\22\u0097\3\2\2\2\24\u0099\3\2\2\2\26\u009b\3\2\2\2\30\u00a0\3"+ + "\2\2\2\32\u00a3\3\2\2\2\34\u00ab\3\2\2\2\36\u00af\3\2\2\2 \u00b7\3\2\2"+ + "\2\"\u00bd\3\2\2\2$\u00bf\3\2\2\2&\u00c2\3\2\2\2(\u00c7\3\2\2\2*\u00c9"+ + "\3\2\2\2,\u00cd\3\2\2\2.\u00d1\3\2\2\2\60\u00d5\3\2\2\2\62\u00dd\3\2\2"+ + "\2\64\u00e6\3\2\2\2\66\u00ef\3\2\2\28\u0100\3\2\2\2:\u0102\3\2\2\2<\u0106"+ + "\3\2\2\2>\u0116\3\2\2\2@\u0118\3\2\2\2B\u011e\3\2\2\2D\u0124\3\2\2\2F"+ + "\u012f\3\2\2\2H\u0139\3\2\2\2J\u0140\3\2\2\2L\u014a\3\2\2\2N\u014c\3\2"+ + "\2\2P\u0150\3\2\2\2R\u015a\3\2\2\2T\u015c\3\2\2\2V\u0160\3\2\2\2X\u0162"+ + "\3\2\2\2Z\\\5\6\4\2[Z\3\2\2\2[\\\3\2\2\2\\`\3\2\2\2]_\5\n\6\2^]\3\2\2"+ + "\2_b\3\2\2\2`^\3\2\2\2`a\3\2\2\2ad\3\2\2\2b`\3\2\2\2ce\5\f\7\2dc\3\2\2"+ + "\2de\3\2\2\2eg\3\2\2\2fh\5\16\b\2gf\3\2\2\2gh\3\2\2\2hj\3\2\2\2ik\5\26"+ + "\f\2ji\3\2\2\2jk\3\2\2\2kl\3\2\2\2lm\7\2\2\3m\3\3\2\2\2no\7\3\2\2op\5"+ + "\36\20\2pq\7\4\2\2qt\3\2\2\2rt\5\36\20\2sn\3\2\2\2sr\3\2\2\2t\5\3\2\2"+ + "\2uw\7\5\2\2vx\5\b\5\2wv\3\2\2\2wx\3\2\2\2xy\3\2\2\2yz\5\4\3\2z\7\3\2"+ + "\2\2{|\7\6\2\2|\t\3\2\2\2}~\5\32\16\2~\13\3\2\2\2\177\u0080\7\7\2\2\u0080"+ + "\u0081\5\60\31\2\u0081\r\3\2\2\2\u0082\u0083\7\b\2\2\u0083\u0084\7\t\2"+ + "\2\u0084\u0089\5\20\t\2\u0085\u0086\7\n\2\2\u0086\u0088\5\20\t\2\u0087"+ + "\u0085\3\2\2\2\u0088\u008b\3\2\2\2\u0089\u0087\3\2\2\2\u0089\u008a\3\2"+ + "\2\2\u008a\17\3\2\2\2\u008b\u0089\3\2\2\2\u008c\u008e\7D\2\2\u008d\u008f"+ + "\5\24\13\2\u008e\u008d\3\2\2\2\u008e\u008f\3\2\2\2\u008f\u0091\3\2\2\2"+ + "\u0090\u0092\5\22\n\2\u0091\u0090\3\2\2\2\u0091\u0092\3\2\2\2\u0092\21"+ + "\3\2\2\2\u0093\u0094\7\13\2\2\u0094\u0098\7\f\2\2\u0095\u0096\7\13\2\2"+ + "\u0096\u0098\7\r\2\2\u0097\u0093\3\2\2\2\u0097\u0095\3\2\2\2\u0098\23"+ + "\3\2\2\2\u0099\u009a\t\2\2\2\u009a\25\3\2\2\2\u009b\u009c\7\20\2\2\u009c"+ + "\u009e\7H\2\2\u009d\u009f\5\30\r\2\u009e\u009d\3\2\2\2\u009e\u009f\3\2"+ + "\2\2\u009f\27\3\2\2\2\u00a0\u00a1\7\21\2\2\u00a1\u00a2\7H\2\2\u00a2\31"+ + "\3\2\2\2\u00a3\u00a5\7\22\2\2\u00a4\u00a6\5(\25\2\u00a5\u00a4\3\2\2\2"+ + "\u00a5\u00a6\3\2\2\2\u00a6\u00a7\3\2\2\2\u00a7\u00a9\5 \21\2\u00a8\u00aa"+ + "\5\34\17\2\u00a9\u00a8\3\2\2\2\u00a9\u00aa\3\2\2\2\u00aa\33\3\2\2\2\u00ab"+ + "\u00ac\7\3\2\2\u00ac\u00ad\5\36\20\2\u00ad\u00ae\7\4\2\2\u00ae\35\3\2"+ + "\2\2\u00af\u00b4\5\"\22\2\u00b0\u00b1\7\n\2\2\u00b1\u00b3\5\"\22\2\u00b2"+ + "\u00b0\3\2\2\2\u00b3\u00b6\3\2\2\2\u00b4\u00b2\3\2\2\2\u00b4\u00b5\3\2"+ + "\2\2\u00b5\37\3\2\2\2\u00b6\u00b4\3\2\2\2\u00b7\u00b8\t\3\2\2\u00b8!\3"+ + "\2\2\2\u00b9\u00be\7D\2\2\u00ba\u00be\5$\23\2\u00bb\u00be\5&\24\2\u00bc"+ + "\u00be\7F\2\2\u00bd\u00b9\3\2\2\2\u00bd\u00ba\3\2\2\2\u00bd\u00bb\3\2"+ + "\2\2\u00bd\u00bc\3\2\2\2\u00be#\3\2\2\2\u00bf\u00c0\7\23\2\2\u00c0\u00c1"+ + "\5*\26\2\u00c1%\3\2\2\2\u00c2\u00c3\7\23\2\2\u00c3\u00c4\5,\27\2\u00c4"+ + "\'\3\2\2\2\u00c5\u00c8\5*\26\2\u00c6\u00c8\5,\27\2\u00c7\u00c5\3\2\2\2"+ + "\u00c7\u00c6\3\2\2\2\u00c8)\3\2\2\2\u00c9\u00cb\7\24\2\2\u00ca\u00cc\5"+ + ".\30\2\u00cb\u00ca\3\2\2\2\u00cb\u00cc\3\2\2\2\u00cc+\3\2\2\2\u00cd\u00cf"+ + "\7\25\2\2\u00ce\u00d0\5.\30\2\u00cf\u00ce\3\2\2\2\u00cf\u00d0\3\2\2\2"+ + "\u00d0-\3\2\2\2\u00d1\u00d2\7\3\2\2\u00d2\u00d3\7H\2\2\u00d3\u00d4\7\4"+ + "\2\2\u00d4/\3\2\2\2\u00d5\u00da\5\62\32\2\u00d6\u00d7\7\26\2\2\u00d7\u00d9"+ + "\5\62\32\2\u00d8\u00d6\3\2\2\2\u00d9\u00dc\3\2\2\2\u00da\u00d8\3\2\2\2"+ + "\u00da\u00db\3\2\2\2\u00db\61\3\2\2\2\u00dc\u00da\3\2\2\2\u00dd\u00e2"+ + "\5\64\33\2\u00de\u00df\7\27\2\2\u00df\u00e1\5\64\33\2\u00e0\u00de\3\2"+ + "\2\2\u00e1\u00e4\3\2\2\2\u00e2\u00e0\3\2\2\2\u00e2\u00e3\3\2\2\2\u00e3"+ + "\63\3\2\2\2\u00e4\u00e2\3\2\2\2\u00e5\u00e7\7\30\2\2\u00e6\u00e5\3\2\2"+ + "\2\u00e6\u00e7\3\2\2\2\u00e7\u00e8\3\2\2\2\u00e8\u00e9\5\66\34\2\u00e9"+ + "\65\3\2\2\2\u00ea\u00f0\58\35\2\u00eb\u00ec\7\3\2\2\u00ec\u00ed\5\60\31"+ + "\2\u00ed\u00ee\7\4\2\2\u00ee\u00f0\3\2\2\2\u00ef\u00ea\3\2\2\2\u00ef\u00eb"+ + "\3\2\2\2\u00f0\67\3\2\2\2\u00f1\u0101\5R*\2\u00f2\u0101\5N(\2\u00f3\u0101"+ + "\5B\"\2\u00f4\u0101\5@!\2\u00f5\u0101\5D#\2\u00f6\u0101\5:\36\2\u00f7"+ + "\u0101\5<\37\2\u00f8\u0101\5F$\2\u00f9\u0101\5H%\2\u00fa\u0101\5J&\2\u00fb"+ + "\u0101\5L\'\2\u00fc\u00fd\7\3\2\2\u00fd\u00fe\58\35\2\u00fe\u00ff\7\4"+ + "\2\2\u00ff\u0101\3\2\2\2\u0100\u00f1\3\2\2\2\u0100\u00f2\3\2\2\2\u0100"+ + "\u00f3\3\2\2\2\u0100\u00f4\3\2\2\2\u0100\u00f5\3\2\2\2\u0100\u00f6\3\2"+ + "\2\2\u0100\u00f7\3\2\2\2\u0100\u00f8\3\2\2\2\u0100\u00f9\3\2\2\2\u0100"+ + "\u00fa\3\2\2\2\u0100\u00fb\3\2\2\2\u0100\u00fc\3\2\2\2\u01019\3\2\2\2"+ + "\u0102\u0103\7D\2\2\u0103\u0104\7\31\2\2\u0104\u0105\5> \2\u0105;\3\2"+ + "\2\2\u0106\u0107\7D\2\2\u0107\u0108\7\32\2\2\u0108\u0109\5> \2\u0109="+ + "\3\2\2\2\u010a\u0117\7C\2\2\u010b\u010c\7\3\2\2\u010c\u0111\5V,\2\u010d"+ + "\u010e\7\n\2\2\u010e\u0110\5V,\2\u010f\u010d\3\2\2\2\u0110\u0113\3\2\2"+ + "\2\u0111\u010f\3\2\2\2\u0111\u0112\3\2\2\2\u0112\u0114\3\2\2\2\u0113\u0111"+ + "\3\2\2\2\u0114\u0115\7\4\2\2\u0115\u0117\3\2\2\2\u0116\u010a\3\2\2\2\u0116"+ + "\u010b\3\2\2\2\u0117?\3\2\2\2\u0118\u0119\7D\2\2\u0119\u011a\7\33\2\2"+ + "\u011a\u011b\5V,\2\u011b\u011c\7\27\2\2\u011c\u011d\5V,\2\u011dA\3\2\2"+ + "\2\u011e\u011f\7D\2\2\u011f\u0120\7\34\2\2\u0120\u0121\5V,\2\u0121\u0122"+ + "\7\35\2\2\u0122\u0123\5V,\2\u0123C\3\2\2\2\u0124\u0125\5V,\2\u0125\u0126"+ + "\7\33\2\2\u0126\u0127\7D\2\2\u0127\u0128\7\27\2\2\u0128\u0129\7D\2\2\u0129"+ + "E\3\2\2\2\u012a\u012b\7D\2\2\u012b\u012c\7\36\2\2\u012c\u0130\7\37\2\2"+ + "\u012d\u012e\7D\2\2\u012e\u0130\7 \2\2\u012f\u012a\3\2\2\2\u012f\u012d"+ + "\3\2\2\2\u0130G\3\2\2\2\u0131\u0132\7D\2\2\u0132\u0133\7\36\2\2\u0133"+ + "\u0134\7\30\2\2\u0134\u013a\7\37\2\2\u0135\u0136\7D\2\2\u0136\u013a\7"+ + "!\2\2\u0137\u0138\7D\2\2\u0138\u013a\7\"\2\2\u0139\u0131\3\2\2\2\u0139"+ + "\u0135\3\2\2\2\u0139\u0137\3\2\2\2\u013aI\3\2\2\2\u013b\u013c\7D\2\2\u013c"+ + "\u013d\7\36\2\2\u013d\u0141\7#\2\2\u013e\u013f\7D\2\2\u013f\u0141\7$\2"+ + "\2\u0140\u013b\3\2\2\2\u0140\u013e\3\2\2\2\u0141K\3\2\2\2\u0142\u0143"+ + "\7D\2\2\u0143\u0144\7\36\2\2\u0144\u0145\7\30\2\2\u0145\u014b\7#\2\2\u0146"+ + "\u0147\7D\2\2\u0147\u014b\7%\2\2\u0148\u0149\7D\2\2\u0149\u014b\7&\2\2"+ + "\u014a\u0142\3\2\2\2\u014a\u0146\3\2\2\2\u014a\u0148\3\2\2\2\u014bM\3"+ + "\2\2\2\u014c\u014d\7D\2\2\u014d\u014e\5P)\2\u014e\u014f\5V,\2\u014fO\3"+ + "\2\2\2\u0150\u0151\t\4\2\2\u0151Q\3\2\2\2\u0152\u0153\7D\2\2\u0153\u0154"+ + "\5T+\2\u0154\u0155\5V,\2\u0155\u015b\3\2\2\2\u0156\u0157\5V,\2\u0157\u0158"+ + "\5T+\2\u0158\u0159\7D\2\2\u0159\u015b\3\2\2\2\u015a\u0152\3\2\2\2\u015a"+ + "\u0156\3\2\2\2\u015bS\3\2\2\2\u015c\u015d\t\5\2\2\u015dU\3\2\2\2\u015e"+ + "\u0161\5X-\2\u015f\u0161\7C\2\2\u0160\u015e\3\2\2\2\u0160\u015f\3\2\2"+ + "\2\u0161W\3\2\2\2\u0162\u0163\t\6\2\2\u0163Y\3\2\2\2\"[`dgjsw\u0089\u008e"+ + "\u0091\u0097\u009e\u00a5\u00a9\u00b4\u00bd\u00c7\u00cb\u00cf\u00da\u00e2"+ + "\u00e6\u00ef\u0100\u0111\u0116\u012f\u0139\u0140\u014a\u015a\u0160"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/test/java/io/ebeaninternal/server/grammer/EqlParserTest.java b/src/test/java/io/ebeaninternal/server/grammer/EqlParserTest.java index eac2aefdf..6feacaa30 100644 --- a/src/test/java/io/ebeaninternal/server/grammer/EqlParserTest.java +++ b/src/test/java/io/ebeaninternal/server/grammer/EqlParserTest.java @@ -14,7 +14,9 @@ import org.tests.model.basic.Customer; import org.tests.model.basic.OrderDetail; import org.tests.model.basic.ResetBasicData; +import java.util.ArrayList; import java.util.Arrays; +import java.util.HashSet; import java.util.List; import static org.assertj.core.api.Assertions.assertThat; @@ -36,6 +38,63 @@ public class EqlParserTest extends BaseTestCase { assertThat(query.getGeneratedSql()).contains("where t0.name = ?"); } + @Test + public void where_eqOrNull_bindVal() { + Query query = parse("where name eqOrNull 'Rob'"); + query.findList(); + + assertThat(query.getGeneratedSql()).contains("where (t0.name = ? or t0.name is null)"); + } + + @Test + public void where_eqOrNull_bindNamed() { + Query query = parse("where name eqOrNull :name"); + query.setParameter("name", "Rob"); + query.findList(); + + assertThat(query.getGeneratedSql()).contains("where (t0.name = ? or t0.name is null)"); + } + + @Test + public void where_eqOrNull_bindPositioned() { + + final Query query = where("name eqOrNull ?", "Rob"); + query.findList(); + if (isH2()) { + assertThat(query.getGeneratedSql()).contains("where (t0.name = ? or t0.name is null)"); + } + } + + @Test + public void where_eqOrNull_bindPositioned_asNull() { + + final Query query = where("name eqOrNull ?", (String)null); + query.findList(); + if (isH2()) { + assertThat(query.getGeneratedSql()).contains("(t0.name is null or t0.name is null)"); + } + } + + @Test + public void where_gtOrNull_bindPositioned() { + + final Query query = where("name gtOrNull ?", "Rob"); + query.findList(); + if (isH2()) { + assertThat(query.getGeneratedSql()).contains("where (t0.name > ? or t0.name is null)"); + } + } + + @Test + public void where_ltOrNull_bindPositioned() { + + final Query query = where("name ltOrNull ?", "Rob"); + query.findList(); + if (isH2()) { + assertThat(query.getGeneratedSql()).contains("where (t0.name < ? or t0.name is null)"); + } + } + @Test public void where_eq_reverse() { @@ -276,6 +335,62 @@ public class EqlParserTest extends BaseTestCase { platformAssertIn(query.getGeneratedSql(), "where t0.name"); } + @Test + public void where_inOrEmpty_withVals() { + + final Query query = where("name inOrEmpty ?", Arrays.asList("Baz", "Maz", "Jim")); + query.findList(); + platformAssertIn(query.getGeneratedSql(), "where t0.name"); + } + + @Test + public void where_inOrEmpty_withValsAsSet() { + + final Query query = where("name inOrEmpty ?", new HashSet<>(Arrays.asList("Baz", "Maz", "Jim"))); + query.findList(); + platformAssertIn(query.getGeneratedSql(), "where t0.name"); + } + + @Test + public void where_inOrEmpty_withEmpty() { + + final Query query = where("name inOrEmpty ?", new ArrayList()); + query.findList(); + assertThat(query.getGeneratedSql()).doesNotContain("where"); + } + + @Test + public void where_inOrEmpty_withNull() { + + List names = null; + final Query query = where("name inOrEmpty ?", names); + query.findList(); + assertThat(query.getGeneratedSql()).doesNotContain("where"); + } + + @Test(expected = IllegalArgumentException.class) + public void query_inOrEmpty_withVals() { + + Query query = parse("where name inOrEmpty (:names)"); + query.setParameter("names", Arrays.asList("Baz", "Maz", "Jim")); + query.findList(); + + platformAssertIn(query.getGeneratedSql(), "where t0.name"); + } + + /** + * This test fails in that we can't use inOrEmpty with named parameters. + */ + @Test(expected = IllegalArgumentException.class) + public void query_inOrEmpty_withNamedParams_expect_IllegalArgument() { + + Query query = parse("where name inOrEmpty (:names)"); + query.setParameter("names", new ArrayList<>()); + query.findList(); + + assertThat(query.getGeneratedSql()).doesNotContain("where"); + } + @Test public void where_inrange() { diff --git a/src/test/resources/EQL.g4 b/src/test/resources/EQL.g4 index 121425b92..1a8904045 100644 --- a/src/test/resources/EQL.g4 +++ b/src/test/resources/EQL.g4 @@ -123,6 +123,7 @@ any_expression | inrange_expression | between_expression | propertyBetween_expression + | inOrEmpty_expression | in_expression | isNull_expression | isNotNull_expression @@ -131,6 +132,10 @@ any_expression | '(' any_expression ')' ; +inOrEmpty_expression + : PATH_VARIABLE 'inOrEmpty' in_value + ; + in_expression : PATH_VARIABLE 'in' in_value ; @@ -199,6 +204,7 @@ comparison_operator | '<>' | '!=' | 'ne' | 'ieq' | 'ine' + | 'eqOrNull' | 'gtOrNull' | 'ltOrNull' ; value_expression